Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 511257) +++ head/Mk/Uses/kde.mk (revision 511258) @@ -1,851 +1,851 @@ # $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.16.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.61.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.08.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.12.0 +KDE_APPLICATIONS_VERSION?= 19.08.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.12.1 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 kdewebkit khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 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 mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_LIB= libkdeinit5_kded5.so kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kcalcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 511257) +++ head/accessibility/kmag/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555588 -SHA256 (KDE/applications/19.08.0/kmag-19.08.0.tar.xz) = 7d42c254e62750899e429482c2b6ed3b4b1e8c5a66fbc371eec656421817d0a4 -SIZE (KDE/applications/19.08.0/kmag-19.08.0.tar.xz) = 673656 +TIMESTAMP = 1567537090 +SHA256 (KDE/applications/19.08.1/kmag-19.08.1.tar.xz) = 28504935665df18246cc6db4288dc2b33f24ed7114007df008f4310ce8792ceb +SIZE (KDE/applications/19.08.1/kmag-19.08.1.tar.xz) = 673888 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 511257) +++ head/accessibility/kmousetool/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555588 -SHA256 (KDE/applications/19.08.0/kmousetool-19.08.0.tar.xz) = 3b2f5a4fcc3231c249923431059285e3f8371f7c8d53fcaea76dec3945a13b09 -SIZE (KDE/applications/19.08.0/kmousetool-19.08.0.tar.xz) = 113248 +TIMESTAMP = 1567537101 +SHA256 (KDE/applications/19.08.1/kmousetool-19.08.1.tar.xz) = d9a3164a0709fa0d2fc3e30ade2bd42c86fb73c7cf4adc341dd7e11e686f7956 +SIZE (KDE/applications/19.08.1/kmousetool-19.08.1.tar.xz) = 113592 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 511257) +++ head/accessibility/kmouth/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555589 -SHA256 (KDE/applications/19.08.0/kmouth-19.08.0.tar.xz) = 608479db4b2a98ecd17bdc1b1ef20203f492647b43311e903fb10338a59e0098 -SIZE (KDE/applications/19.08.0/kmouth-19.08.0.tar.xz) = 1966328 +TIMESTAMP = 1567537101 +SHA256 (KDE/applications/19.08.1/kmouth-19.08.1.tar.xz) = 531b7b3716fea8c679c5c39c7c04214cb561430182747ce08a9854a76105821e +SIZE (KDE/applications/19.08.1/kmouth-19.08.1.tar.xz) = 1964544 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 511257) +++ head/archivers/ark/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555589 -SHA256 (KDE/applications/19.08.0/ark-19.08.0.tar.xz) = 0685285486ca933e3467f35c3d5d4e8633ae80f1e5529f8a4d8257d0b53d9512 -SIZE (KDE/applications/19.08.0/ark-19.08.0.tar.xz) = 2584376 +TIMESTAMP = 1567537101 +SHA256 (KDE/applications/19.08.1/ark-19.08.1.tar.xz) = b5638bc4559d775d0a0c2aee022cadc021543bf92e8be6b9b803c50e7e7f1835 +SIZE (KDE/applications/19.08.1/ark-19.08.1.tar.xz) = 2585216 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 511257) +++ head/archivers/ark/pkg-plist (revision 511258) @@ -1,95 +1,95 @@ bin/ark share/qlogging-categories5/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.19.8.0 +lib/libkerfuffle.so.19.8.1 %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop share/kxmlgui5/ark/ark_viewer.rc share/locale/ar/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml share/mime/packages/kerfuffle.xml Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 511257) +++ head/astro/libkgeomap/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555589 -SHA256 (KDE/applications/19.08.0/libkgeomap-19.08.0.tar.xz) = 267c3bb6d033dcbcfabb6822eebc69410de2d13b792ce62af47034bbcf3a5e54 -SIZE (KDE/applications/19.08.0/libkgeomap-19.08.0.tar.xz) = 150704 +TIMESTAMP = 1567537102 +SHA256 (KDE/applications/19.08.1/libkgeomap-19.08.1.tar.xz) = aed369217007698beaa3230bf5b5360602d44ca6d333026158b15666f3670555 +SIZE (KDE/applications/19.08.1/libkgeomap-19.08.1.tar.xz) = 150876 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 511257) +++ head/astro/marble/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555590 -SHA256 (KDE/applications/19.08.0/marble-19.08.0.tar.xz) = c1c951a1357c94a61b38f0ae8a1235d194150cd351dbf25d2db3508b22b44cc1 -SIZE (KDE/applications/19.08.0/marble-19.08.0.tar.xz) = 52299796 +TIMESTAMP = 1567537102 +SHA256 (KDE/applications/19.08.1/marble-19.08.1.tar.xz) = 7e09e3037287be117e47de402d1f5ea7dd49f625ccf4a46d1d016a527d487e9e +SIZE (KDE/applications/19.08.1/marble-19.08.1.tar.xz) = 52300764 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 511257) +++ head/audio/audiocd-kio/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555591 -SHA256 (KDE/applications/19.08.0/audiocd-kio-19.08.0.tar.xz) = 46013e95fa358004083c185d43afe48b96bd18acba1a33e5706f75b128a3e954 -SIZE (KDE/applications/19.08.0/audiocd-kio-19.08.0.tar.xz) = 355444 +TIMESTAMP = 1567537103 +SHA256 (KDE/applications/19.08.1/audiocd-kio-19.08.1.tar.xz) = e072ed20f07fe246267b3e7c459812fe63d94125a1d2fbcda1c0403e9fe0a520 +SIZE (KDE/applications/19.08.1/audiocd-kio-19.08.1.tar.xz) = 356276 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 511257) +++ head/audio/juk/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555591 -SHA256 (KDE/applications/19.08.0/juk-19.08.0.tar.xz) = d2549c709f8934a5306a16e3a1e2b9e057ead54dc85efe17009e7aacd395edd0 -SIZE (KDE/applications/19.08.0/juk-19.08.0.tar.xz) = 1860204 +TIMESTAMP = 1567537103 +SHA256 (KDE/applications/19.08.1/juk-19.08.1.tar.xz) = f91de1fa697fba3fe73a086b0f3c254959fbceb769d3752353ee2078b86611f9 +SIZE (KDE/applications/19.08.1/juk-19.08.1.tar.xz) = 1864900 Index: head/audio/juk/pkg-plist =================================================================== --- head/audio/juk/pkg-plist (revision 511257) +++ head/audio/juk/pkg-plist (revision 511258) @@ -1,69 +1,70 @@ bin/juk share/applications/org.kde.juk.desktop share/dbus-1/interfaces/org.kde.juk.collection.xml share/dbus-1/interfaces/org.kde.juk.player.xml share/dbus-1/interfaces/org.kde.juk.search.xml share/icons/hicolor/128x128/apps/juk.png share/icons/hicolor/16x16/apps/juk.png share/icons/hicolor/32x32/apps/juk.png share/icons/hicolor/48x48/apps/juk.png share/icons/hicolor/64x64/apps/juk.png %%DATADIR%%/pics/playing.png %%DATADIR%%/pics/theme.svg share/kservices5/ServiceMenus/jukservicemenu.desktop share/kxmlgui5/juk/juk.notifyrc share/kxmlgui5/juk/jukui-rtl.rc share/kxmlgui5/juk/jukui.rc share/locale/ar/LC_MESSAGES/juk.mo share/locale/bg/LC_MESSAGES/juk.mo share/locale/bs/LC_MESSAGES/juk.mo share/locale/ca/LC_MESSAGES/juk.mo share/locale/ca@valencia/LC_MESSAGES/juk.mo share/locale/cs/LC_MESSAGES/juk.mo share/locale/da/LC_MESSAGES/juk.mo share/locale/de/LC_MESSAGES/juk.mo share/locale/el/LC_MESSAGES/juk.mo share/locale/en_GB/LC_MESSAGES/juk.mo share/locale/eo/LC_MESSAGES/juk.mo share/locale/es/LC_MESSAGES/juk.mo share/locale/et/LC_MESSAGES/juk.mo share/locale/eu/LC_MESSAGES/juk.mo share/locale/fa/LC_MESSAGES/juk.mo share/locale/fi/LC_MESSAGES/juk.mo share/locale/fr/LC_MESSAGES/juk.mo share/locale/ga/LC_MESSAGES/juk.mo share/locale/gl/LC_MESSAGES/juk.mo share/locale/he/LC_MESSAGES/juk.mo share/locale/hi/LC_MESSAGES/juk.mo share/locale/hr/LC_MESSAGES/juk.mo share/locale/hu/LC_MESSAGES/juk.mo share/locale/ia/LC_MESSAGES/juk.mo +share/locale/id/LC_MESSAGES/juk.mo share/locale/is/LC_MESSAGES/juk.mo share/locale/it/LC_MESSAGES/juk.mo share/locale/ja/LC_MESSAGES/juk.mo share/locale/kk/LC_MESSAGES/juk.mo share/locale/km/LC_MESSAGES/juk.mo share/locale/ko/LC_MESSAGES/juk.mo share/locale/lt/LC_MESSAGES/juk.mo share/locale/lv/LC_MESSAGES/juk.mo share/locale/mr/LC_MESSAGES/juk.mo share/locale/nb/LC_MESSAGES/juk.mo share/locale/nds/LC_MESSAGES/juk.mo share/locale/nl/LC_MESSAGES/juk.mo share/locale/nn/LC_MESSAGES/juk.mo share/locale/pa/LC_MESSAGES/juk.mo share/locale/pl/LC_MESSAGES/juk.mo share/locale/pt/LC_MESSAGES/juk.mo share/locale/pt_BR/LC_MESSAGES/juk.mo share/locale/ro/LC_MESSAGES/juk.mo share/locale/ru/LC_MESSAGES/juk.mo share/locale/sk/LC_MESSAGES/juk.mo share/locale/sl/LC_MESSAGES/juk.mo share/locale/sr/LC_MESSAGES/juk.mo share/locale/sv/LC_MESSAGES/juk.mo share/locale/tr/LC_MESSAGES/juk.mo share/locale/ug/LC_MESSAGES/juk.mo share/locale/uk/LC_MESSAGES/juk.mo share/locale/zh_CN/LC_MESSAGES/juk.mo share/locale/zh_TW/LC_MESSAGES/juk.mo share/metainfo/org.kde.juk.appdata.xml Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 511257) +++ head/audio/kmix/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555601 -SHA256 (KDE/applications/19.08.0/kmix-19.08.0.tar.xz) = 3d9cf6dcb35ded0091d16f5e9f4cb384ae21ea4065547b52d5f13f199d3d7b08 -SIZE (KDE/applications/19.08.0/kmix-19.08.0.tar.xz) = 1004452 +TIMESTAMP = 1567537113 +SHA256 (KDE/applications/19.08.1/kmix-19.08.1.tar.xz) = a6006ab35bdfc2896188aa99ba50f1b28e8d5172ec8a1068efb15a50c43f87a7 +SIZE (KDE/applications/19.08.1/kmix-19.08.1.tar.xz) = 1005284 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 511257) +++ head/audio/kwave/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555602 -SHA256 (KDE/applications/19.08.0/kwave-19.08.0.tar.xz) = 60f5408e9a67e934c67332b9a9643513f35946796d1ccf70369e411f804b1043 -SIZE (KDE/applications/19.08.0/kwave-19.08.0.tar.xz) = 6189588 +TIMESTAMP = 1567537114 +SHA256 (KDE/applications/19.08.1/kwave-19.08.1.tar.xz) = 6febc3d01c15f94fa0f75a731a375b76642c2cdce9afc373a5c1e92fb3753891 +SIZE (KDE/applications/19.08.1/kwave-19.08.1.tar.xz) = 6196012 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 511257) +++ head/audio/libkcddb/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555602 -SHA256 (KDE/applications/19.08.0/libkcddb-19.08.0.tar.xz) = f97b90660bfd403aa64be8e6221a89087f74ab443431a9f692fe14cc90d82151 -SIZE (KDE/applications/19.08.0/libkcddb-19.08.0.tar.xz) = 424124 +TIMESTAMP = 1567537114 +SHA256 (KDE/applications/19.08.1/libkcddb-19.08.1.tar.xz) = f73d3f802e1ffec6b75246505cbec5a7baa328b808c23b42608e05fd8c7b30a5 +SIZE (KDE/applications/19.08.1/libkcddb-19.08.1.tar.xz) = 423668 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 511257) +++ head/audio/libkcompactdisc/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555602 -SHA256 (KDE/applications/19.08.0/libkcompactdisc-19.08.0.tar.xz) = cc940df2a1e499965fe05b466c60014082d205f0ae606562980e6088d714eac5 -SIZE (KDE/applications/19.08.0/libkcompactdisc-19.08.0.tar.xz) = 89020 +TIMESTAMP = 1567537114 +SHA256 (KDE/applications/19.08.1/libkcompactdisc-19.08.1.tar.xz) = 53d206967d98e9ee8254aca58d1ba34458761106c323deb449fa94bed1e24037 +SIZE (KDE/applications/19.08.1/libkcompactdisc-19.08.1.tar.xz) = 88948 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 511257) +++ head/databases/akonadi/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555613 -SHA256 (KDE/applications/19.08.0/akonadi-19.08.0.tar.xz) = ff53f078b024f2674a8b2990515f5cbafe2bc965390d74a464b2a044aee32831 -SIZE (KDE/applications/19.08.0/akonadi-19.08.0.tar.xz) = 1576124 +TIMESTAMP = 1567537125 +SHA256 (KDE/applications/19.08.1/akonadi-19.08.1.tar.xz) = 32233b59c696a5053f2ee4b7368804635a04e2a5f6d3605848eadafa0306c44d +SIZE (KDE/applications/19.08.1/akonadi-19.08.1.tar.xz) = 1577172 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 511257) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555613 -SHA256 (KDE/applications/19.08.0/akonadi-calendar-tools-19.08.0.tar.xz) = 9620a4418245a74334c6f57db4ba5558825879440aee5903f5614db08f61e976 -SIZE (KDE/applications/19.08.0/akonadi-calendar-tools-19.08.0.tar.xz) = 223680 +TIMESTAMP = 1567537125 +SHA256 (KDE/applications/19.08.1/akonadi-calendar-tools-19.08.1.tar.xz) = 033fae40bcbdcfa52981026f783b7cc8fecde384d6683747cd3f307bd43b2570 +SIZE (KDE/applications/19.08.1/akonadi-calendar-tools-19.08.1.tar.xz) = 223888 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 511257) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555614 -SHA256 (KDE/applications/19.08.0/akonadi-import-wizard-19.08.0.tar.xz) = e21454b8ac346c4b8d35e5979dc11346b96e3520df22f44270dc668d5abcd915 -SIZE (KDE/applications/19.08.0/akonadi-import-wizard-19.08.0.tar.xz) = 438812 +TIMESTAMP = 1567537126 +SHA256 (KDE/applications/19.08.1/akonadi-import-wizard-19.08.1.tar.xz) = d66088ded8917f6034de8981ce71d5d0e1808f6d58f7fdb7e0a806ff0834e27b +SIZE (KDE/applications/19.08.1/akonadi-import-wizard-19.08.1.tar.xz) = 439288 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 511257) +++ head/deskutils/akonadiconsole/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555614 -SHA256 (KDE/applications/19.08.0/akonadiconsole-19.08.0.tar.xz) = a683b184109cddbc4d66c55ee3efa2c69092a72e2cd9e78903c4dcf7f442c055 -SIZE (KDE/applications/19.08.0/akonadiconsole-19.08.0.tar.xz) = 193708 +TIMESTAMP = 1567537126 +SHA256 (KDE/applications/19.08.1/akonadiconsole-19.08.1.tar.xz) = 9a0f88903757eaf0d3271d4438b3a170640b7cb01a7b2f0fbf10a75fa0093184 +SIZE (KDE/applications/19.08.1/akonadiconsole-19.08.1.tar.xz) = 193760 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 511257) +++ head/deskutils/akregator/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555614 -SHA256 (KDE/applications/19.08.0/akregator-19.08.0.tar.xz) = d3cb8b97a3d2c9eeb805e1b7fc26cb637ad21589675d837b545580e6be764820 -SIZE (KDE/applications/19.08.0/akregator-19.08.0.tar.xz) = 2193648 +TIMESTAMP = 1567537126 +SHA256 (KDE/applications/19.08.1/akregator-19.08.1.tar.xz) = b73fcf1c509398ff496864f0105491792b5b15f37c52f9a8ca74ca254a75494a +SIZE (KDE/applications/19.08.1/akregator-19.08.1.tar.xz) = 2194020 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 511257) +++ head/deskutils/grantlee-editor/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555615 -SHA256 (KDE/applications/19.08.0/grantlee-editor-19.08.0.tar.xz) = 00a7d07aeffc35ac6e3dd39434194ba35c855a603cdc6eca0ece5b00ae1e0e30 -SIZE (KDE/applications/19.08.0/grantlee-editor-19.08.0.tar.xz) = 111452 +TIMESTAMP = 1567537127 +SHA256 (KDE/applications/19.08.1/grantlee-editor-19.08.1.tar.xz) = 77661ac1d125349cd3439d130164ad172f0022376d6c6038c860c0440939e52c +SIZE (KDE/applications/19.08.1/grantlee-editor-19.08.1.tar.xz) = 111360 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 511257) +++ head/deskutils/grantleetheme/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555615 -SHA256 (KDE/applications/19.08.0/grantleetheme-19.08.0.tar.xz) = c966ad7ef55a784c8cf97a69d4885b9b9d7956c84a4e323404e5cf88154cc543 -SIZE (KDE/applications/19.08.0/grantleetheme-19.08.0.tar.xz) = 52172 +TIMESTAMP = 1567537127 +SHA256 (KDE/applications/19.08.1/grantleetheme-19.08.1.tar.xz) = 61ec8f4902573727d5a292ba55c3663b267d3b1b8017c003ac3445164c2627cb +SIZE (KDE/applications/19.08.1/grantleetheme-19.08.1.tar.xz) = 52192 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 511257) +++ head/deskutils/kaddressbook/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555615 -SHA256 (KDE/applications/19.08.0/kaddressbook-19.08.0.tar.xz) = 9639047be5c5ea245844831e315fa0f0baca40d243f611a98bbab3503af127cf -SIZE (KDE/applications/19.08.0/kaddressbook-19.08.0.tar.xz) = 474152 +TIMESTAMP = 1567537127 +SHA256 (KDE/applications/19.08.1/kaddressbook-19.08.1.tar.xz) = 8091a3bd77ec17757386d71a98a0ef2b6d68e35ca2f9f9b71e4e36c2a3cce5c9 +SIZE (KDE/applications/19.08.1/kaddressbook-19.08.1.tar.xz) = 474952 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 511257) +++ head/deskutils/kalarm/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555616 -SHA256 (KDE/applications/19.08.0/kalarm-19.08.0.tar.xz) = e0ddabb2abfc2d593ec88864179c30eda219f7db4c25b7fc9951ac3b388eee84 -SIZE (KDE/applications/19.08.0/kalarm-19.08.0.tar.xz) = 1818920 +TIMESTAMP = 1567537138 +SHA256 (KDE/applications/19.08.1/kalarm-19.08.1.tar.xz) = 9eb7c6b160e82ae8d5d294ebd781ef2ac5579e556a564c70598c08925e2021fa +SIZE (KDE/applications/19.08.1/kalarm-19.08.1.tar.xz) = 1823400 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 511257) +++ head/deskutils/kcharselect/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555616 -SHA256 (KDE/applications/19.08.0/kcharselect-19.08.0.tar.xz) = 31caf29e82327d7e31badff141dd7d5f179b87e9547c322b074f58bc07063020 -SIZE (KDE/applications/19.08.0/kcharselect-19.08.0.tar.xz) = 334680 +TIMESTAMP = 1567537138 +SHA256 (KDE/applications/19.08.1/kcharselect-19.08.1.tar.xz) = 8b5c418e9b35a12eeaa1ebf7834f2a13613926e824699e13214fe35276c42457 +SIZE (KDE/applications/19.08.1/kcharselect-19.08.1.tar.xz) = 334548 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 511257) +++ head/deskutils/kdepim-addons/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555617 -SHA256 (KDE/applications/19.08.0/kdepim-addons-19.08.0.tar.xz) = 8eb692f9dcb86fec2ec207f719c774492df222fceab2ccc2bdf530cb57aa1c3e -SIZE (KDE/applications/19.08.0/kdepim-addons-19.08.0.tar.xz) = 2092108 +TIMESTAMP = 1567537139 +SHA256 (KDE/applications/19.08.1/kdepim-addons-19.08.1.tar.xz) = eff8e21ae66bf99a33c946886e7d84f5d717b123b06f86e891c9528858b9ec32 +SIZE (KDE/applications/19.08.1/kdepim-addons-19.08.1.tar.xz) = 2092564 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 511257) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555617 -SHA256 (KDE/applications/19.08.0/kdepim-apps-libs-19.08.0.tar.xz) = 2a19e9b0c3b6b2fecaeb4054bf101170056b8c9e831e45fb796b59666f103f2e -SIZE (KDE/applications/19.08.0/kdepim-apps-libs-19.08.0.tar.xz) = 82608 +TIMESTAMP = 1567537139 +SHA256 (KDE/applications/19.08.1/kdepim-apps-libs-19.08.1.tar.xz) = 40a265cde8770a3fd6181b656da49d460dc67ed06d175067da0092116cd9862e +SIZE (KDE/applications/19.08.1/kdepim-apps-libs-19.08.1.tar.xz) = 82656 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 511257) +++ head/deskutils/kdepim-runtime/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565875563 -SHA256 (KDE/applications/19.08.0/kdepim-runtime-19.08.0.tar.xz) = 634419978329902a1877810d87d4ddae8cb07adbabbfa4540b521689d8bc85ef -SIZE (KDE/applications/19.08.0/kdepim-runtime-19.08.0.tar.xz) = 1730452 +TIMESTAMP = 1567537139 +SHA256 (KDE/applications/19.08.1/kdepim-runtime-19.08.1.tar.xz) = d7dd6c0108f6c7a37dc1ac0d7b9449664c76ecd3ca4f303f3a1b214862a4b20e +SIZE (KDE/applications/19.08.1/kdepim-runtime-19.08.1.tar.xz) = 1732760 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 511257) +++ head/deskutils/keditbookmarks/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555618 -SHA256 (KDE/applications/19.08.0/keditbookmarks-19.08.0.tar.xz) = 98c539e63a0e2bb62680003022d9ea5aececc4aa1c2d19a7b4c4aa3d8999e7ac -SIZE (KDE/applications/19.08.0/keditbookmarks-19.08.0.tar.xz) = 187368 +TIMESTAMP = 1567537140 +SHA256 (KDE/applications/19.08.1/keditbookmarks-19.08.1.tar.xz) = f023c7b3d362c19373e3f886300420488ef53835f753c318f9fd9c0bb7e53a8a +SIZE (KDE/applications/19.08.1/keditbookmarks-19.08.1.tar.xz) = 187744 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 511257) +++ head/deskutils/kfind/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555618 -SHA256 (KDE/applications/19.08.0/kfind-19.08.0.tar.xz) = 25b7b442600c4e109b0a6f7f09962a4d95d419673f6b64eebf226dcdae8cc6ff -SIZE (KDE/applications/19.08.0/kfind-19.08.0.tar.xz) = 269772 +TIMESTAMP = 1567537140 +SHA256 (KDE/applications/19.08.1/kfind-19.08.1.tar.xz) = a4910d5a3f2b918090084c776ca16bf1e9ae47ced0c2e4eb2a3d0071204527de +SIZE (KDE/applications/19.08.1/kfind-19.08.1.tar.xz) = 270616 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 511257) +++ head/deskutils/kmail/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555618 -SHA256 (KDE/applications/19.08.0/kmail-19.08.0.tar.xz) = 052d5b0da402024646673f5e57785b509c328bd5f5ac064f742f9c63e75f3b28 -SIZE (KDE/applications/19.08.0/kmail-19.08.0.tar.xz) = 4732772 +TIMESTAMP = 1567537140 +SHA256 (KDE/applications/19.08.1/kmail-19.08.1.tar.xz) = 4deb5d7c5304c0856fbbafeb7bf09436e28782b96dc5ec342a09b2c26ea386c0 +SIZE (KDE/applications/19.08.1/kmail-19.08.1.tar.xz) = 4729780 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 511257) +++ head/deskutils/kmail/pkg-plist (revision 511258) @@ -1,383 +1,387 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories share/qlogging-categories5/ktnefapps.categories share/qlogging-categories5/ktnefapps.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop share/applications/org.kde.kmail-refresh-settings.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo -share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo +share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo -share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo +share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo -share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo +share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 511257) +++ head/deskutils/kmail-account-wizard/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555619 -SHA256 (KDE/applications/19.08.0/kmail-account-wizard-19.08.0.tar.xz) = 5eddd4029047b3c37146c49e043d17c1f9086bc738726d5da2756cbe9ad28622 -SIZE (KDE/applications/19.08.0/kmail-account-wizard-19.08.0.tar.xz) = 157900 +TIMESTAMP = 1567537141 +SHA256 (KDE/applications/19.08.1/kmail-account-wizard-19.08.1.tar.xz) = b4f2f769b44845dd02632ce282fc740a35f7f784e9fb54091153365ee88fb864 +SIZE (KDE/applications/19.08.1/kmail-account-wizard-19.08.1.tar.xz) = 157896 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 511257) +++ head/deskutils/knotes/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555619 -SHA256 (KDE/applications/19.08.0/knotes-19.08.0.tar.xz) = 578afb9d879023db9fef4e58e326927d0e2e24edd1e1ac0d46eee968a0ab7030 -SIZE (KDE/applications/19.08.0/knotes-19.08.0.tar.xz) = 320100 +TIMESTAMP = 1567537151 +SHA256 (KDE/applications/19.08.1/knotes-19.08.1.tar.xz) = 30b835c063e03d3d9047cbaacf389ee1e261368d2cf73fdfab71b4f9138b8bf7 +SIZE (KDE/applications/19.08.1/knotes-19.08.1.tar.xz) = 319784 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 511257) +++ head/deskutils/kontact/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555619 -SHA256 (KDE/applications/19.08.0/kontact-19.08.0.tar.xz) = e47d3b4133e24b1c90a3a15f99a77cef442eefa0f2570dd34d5a9e302e845d9b -SIZE (KDE/applications/19.08.0/kontact-19.08.0.tar.xz) = 794672 +TIMESTAMP = 1567537151 +SHA256 (KDE/applications/19.08.1/kontact-19.08.1.tar.xz) = 7b57b44ee72211b30fc743fae6580867100ede718909617b90cb926732ecbabb +SIZE (KDE/applications/19.08.1/kontact-19.08.1.tar.xz) = 795000 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 511257) +++ head/deskutils/korganizer/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555620 -SHA256 (KDE/applications/19.08.0/korganizer-19.08.0.tar.xz) = fbb6db9e517f7065ed978c6356989a38cea0c9520693d5e67fa04d8cfa625722 -SIZE (KDE/applications/19.08.0/korganizer-19.08.0.tar.xz) = 2222724 +TIMESTAMP = 1567537152 +SHA256 (KDE/applications/19.08.1/korganizer-19.08.1.tar.xz) = d7e347df36986926d0e0d1af38130a089b581e400a90cc8bf199cecb29b78023 +SIZE (KDE/applications/19.08.1/korganizer-19.08.1.tar.xz) = 2223984 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 511257) +++ head/deskutils/kruler/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555620 -SHA256 (KDE/applications/19.08.0/kruler-19.08.0.tar.xz) = a78d054359b559b612dd1dac8f0974f554fb7a52bd8de7152de88866719f9226 -SIZE (KDE/applications/19.08.0/kruler-19.08.0.tar.xz) = 249516 +TIMESTAMP = 1567537162 +SHA256 (KDE/applications/19.08.1/kruler-19.08.1.tar.xz) = 040eef3746a660798e1701af6d9d17f4d091c30db9321dd5d37b172f5b91d59c +SIZE (KDE/applications/19.08.1/kruler-19.08.1.tar.xz) = 249384 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 511257) +++ head/deskutils/libkdepim/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555620 -SHA256 (KDE/applications/19.08.0/libkdepim-19.08.0.tar.xz) = 4ff394bda799ebe700d12d60ab8171c64e054c6acb105870cd955b5ddce42eab -SIZE (KDE/applications/19.08.0/libkdepim-19.08.0.tar.xz) = 333024 +TIMESTAMP = 1567537162 +SHA256 (KDE/applications/19.08.1/libkdepim-19.08.1.tar.xz) = 46966eaae2bc71a5bab0c22bcfff858e299d7f1cec2203c1d12cebbc084ee9ce +SIZE (KDE/applications/19.08.1/libkdepim-19.08.1.tar.xz) = 333748 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 511257) +++ head/deskutils/mbox-importer/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555621 -SHA256 (KDE/applications/19.08.0/mbox-importer-19.08.0.tar.xz) = e03fd814c70b15fca3b5dd2cde1dcece436b831ceb04323d7ffcca66daf3ce1c -SIZE (KDE/applications/19.08.0/mbox-importer-19.08.0.tar.xz) = 33284 +TIMESTAMP = 1567537163 +SHA256 (KDE/applications/19.08.1/mbox-importer-19.08.1.tar.xz) = 3f4c96ee65ffa0488df09522e1bda2ea38c0adf420ae66fff11f670566c5536c +SIZE (KDE/applications/19.08.1/mbox-importer-19.08.1.tar.xz) = 33424 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 511257) +++ head/deskutils/pim-data-exporter/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555621 -SHA256 (KDE/applications/19.08.0/pim-data-exporter-19.08.0.tar.xz) = f5ff68dcbad1df7ea132b409b70b9b4269badb26e28b4b7cd50239172507f7d8 -SIZE (KDE/applications/19.08.0/pim-data-exporter-19.08.0.tar.xz) = 203168 +TIMESTAMP = 1567537163 +SHA256 (KDE/applications/19.08.1/pim-data-exporter-19.08.1.tar.xz) = 766e8b15f7853d84629bc49ad33aa59291d6d95cfd9db279e9e0ad70b0fab1fe +SIZE (KDE/applications/19.08.1/pim-data-exporter-19.08.1.tar.xz) = 203216 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 511257) +++ head/deskutils/pim-sieve-editor/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555621 -SHA256 (KDE/applications/19.08.0/pim-sieve-editor-19.08.0.tar.xz) = 1ea0cc219d6776968d81ff1a606a9a11e1714f864fda9f00a13a5d7c84b45b46 -SIZE (KDE/applications/19.08.0/pim-sieve-editor-19.08.0.tar.xz) = 451088 +TIMESTAMP = 1567537163 +SHA256 (KDE/applications/19.08.1/pim-sieve-editor-19.08.1.tar.xz) = b49045d7326cf0ca7fabbf58d8508d61986701887871c4df53fad1f960a64438 +SIZE (KDE/applications/19.08.1/pim-sieve-editor-19.08.1.tar.xz) = 450480 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 511257) +++ head/devel/cervisia/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555622 -SHA256 (KDE/applications/19.08.0/cervisia-19.08.0.tar.xz) = a72c3a7bad3b30a466d6793318248329d7ddb1a0e00c832744b628a9eb8b8257 -SIZE (KDE/applications/19.08.0/cervisia-19.08.0.tar.xz) = 1894972 +TIMESTAMP = 1567537164 +SHA256 (KDE/applications/19.08.1/cervisia-19.08.1.tar.xz) = 726c8d4bd942280e08891e15e47d0a0a88ee951addb3c10e1e9955fad2794b7f +SIZE (KDE/applications/19.08.1/cervisia-19.08.1.tar.xz) = 1894944 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 511257) +++ head/devel/dolphin-plugins/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555622 -SHA256 (KDE/applications/19.08.0/dolphin-plugins-19.08.0.tar.xz) = f074aa7151f4b4d9202d90257952638652a1bf09d02699762f346d85b61c5f54 -SIZE (KDE/applications/19.08.0/dolphin-plugins-19.08.0.tar.xz) = 192076 +TIMESTAMP = 1567537164 +SHA256 (KDE/applications/19.08.1/dolphin-plugins-19.08.1.tar.xz) = ce2452d9f878dfcff45739ff9eb4a3bde69c449c36182dee6b768f362e75ae2e +SIZE (KDE/applications/19.08.1/dolphin-plugins-19.08.1.tar.xz) = 191800 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 511257) +++ head/devel/kapptemplate/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555622 -SHA256 (KDE/applications/19.08.0/kapptemplate-19.08.0.tar.xz) = a25170f3527e85bea9509fe5cb991544c0a1dab8f7025c71fd5b0d4c82d9e169 -SIZE (KDE/applications/19.08.0/kapptemplate-19.08.0.tar.xz) = 316564 +TIMESTAMP = 1567537164 +SHA256 (KDE/applications/19.08.1/kapptemplate-19.08.1.tar.xz) = c1e5d239ce3749e72bcce30dfc8c0a12c3d347b72a2566caa0d23dcc930499a2 +SIZE (KDE/applications/19.08.1/kapptemplate-19.08.1.tar.xz) = 316292 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 511257) +++ head/devel/kcachegrind/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555623 -SHA256 (KDE/applications/19.08.0/kcachegrind-19.08.0.tar.xz) = 676dd522eb9976789da17eea1dc103c9c67b6df7bfa70d998e29c0e7dde0608b -SIZE (KDE/applications/19.08.0/kcachegrind-19.08.0.tar.xz) = 808920 +TIMESTAMP = 1567537165 +SHA256 (KDE/applications/19.08.1/kcachegrind-19.08.1.tar.xz) = e677f82e5527caecb0cdacad3f001665c40ba9e6a542a6a4d91fb898b45026c1 +SIZE (KDE/applications/19.08.1/kcachegrind-19.08.1.tar.xz) = 813348 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 511257) +++ head/devel/kde-dev-scripts/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555623 -SHA256 (KDE/applications/19.08.0/kde-dev-scripts-19.08.0.tar.xz) = 8028d1f5390f608974235123a7c14342fb0c247456e6088d4f16797875efdf18 -SIZE (KDE/applications/19.08.0/kde-dev-scripts-19.08.0.tar.xz) = 377896 +TIMESTAMP = 1567537165 +SHA256 (KDE/applications/19.08.1/kde-dev-scripts-19.08.1.tar.xz) = 36af795eaa175f142556949fa4cc678a6d3fdad3607d169877d94bea785850d1 +SIZE (KDE/applications/19.08.1/kde-dev-scripts-19.08.1.tar.xz) = 378328 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 511257) +++ head/devel/kde-dev-utils/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555623 -SHA256 (KDE/applications/19.08.0/kde-dev-utils-19.08.0.tar.xz) = fc95211b92fa76e53558111d5cd64227f194df15fb13f2d81c809facd796f2c5 -SIZE (KDE/applications/19.08.0/kde-dev-utils-19.08.0.tar.xz) = 61888 +TIMESTAMP = 1567537165 +SHA256 (KDE/applications/19.08.1/kde-dev-utils-19.08.1.tar.xz) = c529bb33dbd3b80e5c4737c3be0d17e88901ece48d3b19e61c8c14adab60177c +SIZE (KDE/applications/19.08.1/kde-dev-utils-19.08.1.tar.xz) = 61628 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 511257) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555624 -SHA256 (KDE/applications/19.08.0/kdesdk-thumbnailers-19.08.0.tar.xz) = e640f1a484482f6dd4ba4ebda92832a027a20e64e1e12d2306bd7dd618b36356 -SIZE (KDE/applications/19.08.0/kdesdk-thumbnailers-19.08.0.tar.xz) = 17420 +TIMESTAMP = 1567537166 +SHA256 (KDE/applications/19.08.1/kdesdk-thumbnailers-19.08.1.tar.xz) = 3da4aa540435fbc848bfc4f1b39f37145072e0856da31b4f5ac3d89719308f03 +SIZE (KDE/applications/19.08.1/kdesdk-thumbnailers-19.08.1.tar.xz) = 17332 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 511257) +++ head/devel/kio-extras/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555624 -SHA256 (KDE/applications/19.08.0/kio-extras-19.08.0.tar.xz) = 792a6a6d1ea2457dda10aedc6cefd3518064c8f47c62f9c3c4a508442b83d3cd -SIZE (KDE/applications/19.08.0/kio-extras-19.08.0.tar.xz) = 578108 +TIMESTAMP = 1567537166 +SHA256 (KDE/applications/19.08.1/kio-extras-19.08.1.tar.xz) = de0ba7f3ce73db34b878cb88e36711d6b31aad57a5a735744330f92920666c52 +SIZE (KDE/applications/19.08.1/kio-extras-19.08.1.tar.xz) = 577524 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 511257) +++ head/devel/lokalize/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555625 -SHA256 (KDE/applications/19.08.0/lokalize-19.08.0.tar.xz) = bb51159c803890af82a38e5a4bd4df0895cc34ed68fa8ed3a4c66adafc9ea6b6 -SIZE (KDE/applications/19.08.0/lokalize-19.08.0.tar.xz) = 1690248 +TIMESTAMP = 1567537166 +SHA256 (KDE/applications/19.08.1/lokalize-19.08.1.tar.xz) = fe1e1f8fb2f2ad3cde1830b2ddbcce0e41ffe5696c6e32b0639c8931967b3943 +SIZE (KDE/applications/19.08.1/lokalize-19.08.1.tar.xz) = 1691072 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 511257) +++ head/devel/poxml/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555625 -SHA256 (KDE/applications/19.08.0/poxml-19.08.0.tar.xz) = 82393645a5f97890bba866554c0e05d7b216f0ed7eafea00fe1c2708ac12e0b2 -SIZE (KDE/applications/19.08.0/poxml-19.08.0.tar.xz) = 43236 +TIMESTAMP = 1567537167 +SHA256 (KDE/applications/19.08.1/poxml-19.08.1.tar.xz) = d38dce3114b01bc72163329dac629c4e5d36db15e09d52dd0ffbcaa645408d98 +SIZE (KDE/applications/19.08.1/poxml-19.08.1.tar.xz) = 43360 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 511257) +++ head/devel/umbrello/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555625 -SHA256 (KDE/applications/19.08.0/umbrello-19.08.0.tar.xz) = 8df6e0394670ee3f91f449a3110312a37876d3aa047442ed8439d8b876a6b0e2 -SIZE (KDE/applications/19.08.0/umbrello-19.08.0.tar.xz) = 3705704 +TIMESTAMP = 1567537167 +SHA256 (KDE/applications/19.08.1/umbrello-19.08.1.tar.xz) = ce56fa6d96bbc78cf69246d6f45e9b098f8fcc75d7771875a8e638b01bbf6efa +SIZE (KDE/applications/19.08.1/umbrello-19.08.1.tar.xz) = 3704860 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 511257) +++ head/editors/kate/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565874851 -SHA256 (KDE/applications/19.08.0/kate-19.08.0.tar.xz) = 6acc3172429191ab47722d788f324292ea5ee2f1e419d48c72200579b9b30878 -SIZE (KDE/applications/19.08.0/kate-19.08.0.tar.xz) = 5834816 +TIMESTAMP = 1567537168 +SHA256 (KDE/applications/19.08.1/kate-19.08.1.tar.xz) = 5389e1620a7eb8d7bab7396ee0db1a886fbdd44c8415291db6a917e89dcc77b7 +SIZE (KDE/applications/19.08.1/kate-19.08.1.tar.xz) = 5845160 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 511257) +++ head/editors/kate/pkg-plist (revision 511258) @@ -1,1243 +1,1252 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/kterustcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditor_lumen.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svgz share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kterustcompletion.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/kterustcompletion.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/kterustcompletion.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/kterustcompletion.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/kterustcompletion.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo +share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/kterustcompletion.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/kterustcompletion.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/kterustcompletion.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/kterustcompletion.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/kterustcompletion.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/kterustcompletion.mo share/locale/et/LC_MESSAGES/kwrite.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/kterustcompletion.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/kterustcompletion.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/kterustcompletion.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/kterustcompletion.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo +share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kterustcompletion.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kterustcompletion.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/kterustcompletion.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo +share/locale/id/LC_MESSAGES/katexmlcheck.mo +share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/kterustcompletion.mo +share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo +share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/kterustcompletion.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo +share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/kterustcompletion.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo +share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/kterustcompletion.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/kterustcompletion.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kterustcompletion.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/kterustcompletion.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/kterustcompletion.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/kterustcompletion.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/kterustcompletion.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/kterustcompletion.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/kterustcompletion.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/kterustcompletion.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/kterustcompletion.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kterustcompletion.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/kterustcompletion.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kterustcompletion.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/kterustcompletion.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/kterustcompletion.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/kterustcompletion.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 511257) +++ head/games/blinken/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555626 -SHA256 (KDE/applications/19.08.0/blinken-19.08.0.tar.xz) = 9b993586d8ddab3821b1b4f805cd8b6603822faca93402d42775bea2eb346971 -SIZE (KDE/applications/19.08.0/blinken-19.08.0.tar.xz) = 2821076 +TIMESTAMP = 1567537168 +SHA256 (KDE/applications/19.08.1/blinken-19.08.1.tar.xz) = dbe7b13bc6cad69f049f9eefa56f99012bc0906233193bf951477b3f5c8eb87e +SIZE (KDE/applications/19.08.1/blinken-19.08.1.tar.xz) = 2820916 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 511257) +++ head/games/bomber/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555626 -SHA256 (KDE/applications/19.08.0/bomber-19.08.0.tar.xz) = 5274f8ef6cd94fcbd887220d6c7b08c1f71050c601d14cf53d847f41f254e043 -SIZE (KDE/applications/19.08.0/bomber-19.08.0.tar.xz) = 820816 +TIMESTAMP = 1567537168 +SHA256 (KDE/applications/19.08.1/bomber-19.08.1.tar.xz) = 750110da07a1e316e2a55d043a0e988c91e6e57866b941a5cce1b6f569096f4f +SIZE (KDE/applications/19.08.1/bomber-19.08.1.tar.xz) = 820608 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 511257) +++ head/games/bovo/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555627 -SHA256 (KDE/applications/19.08.0/bovo-19.08.0.tar.xz) = 829ecfe3a46bc1c009fea14c5860aa17ea18f36ed33fdc9296c499992aeed466 -SIZE (KDE/applications/19.08.0/bovo-19.08.0.tar.xz) = 199464 +TIMESTAMP = 1567537169 +SHA256 (KDE/applications/19.08.1/bovo-19.08.1.tar.xz) = 0d923b6b0eaf2ffd7a1eca833d1f110cc6fdaade3b11d07e8fa53a244a778658 +SIZE (KDE/applications/19.08.1/bovo-19.08.1.tar.xz) = 199564 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 511257) +++ head/games/granatier/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555627 -SHA256 (KDE/applications/19.08.0/granatier-19.08.0.tar.xz) = b61bf45df63dc3fb324e1a74ec84ae4f2d58371af88ccd28593b0716673dc00a -SIZE (KDE/applications/19.08.0/granatier-19.08.0.tar.xz) = 1941520 +TIMESTAMP = 1567537169 +SHA256 (KDE/applications/19.08.1/granatier-19.08.1.tar.xz) = 3015a25f961ae3d746db2814a322bfb204e4e39cd95145fbf2aa819f1dc0417e +SIZE (KDE/applications/19.08.1/granatier-19.08.1.tar.xz) = 1941612 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 511257) +++ head/games/kanagram/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555627 -SHA256 (KDE/applications/19.08.0/kanagram-19.08.0.tar.xz) = 4f4ccf9cf48711d8fe9a5966294ba16b43092b8df3fdb03b5c236d22157d275c -SIZE (KDE/applications/19.08.0/kanagram-19.08.0.tar.xz) = 8031660 +TIMESTAMP = 1567537169 +SHA256 (KDE/applications/19.08.1/kanagram-19.08.1.tar.xz) = 85ba60dc1485f61054847262832edd112224a618effe8759a2dcc8ee73b130a6 +SIZE (KDE/applications/19.08.1/kanagram-19.08.1.tar.xz) = 8032936 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 511257) +++ head/games/kapman/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555628 -SHA256 (KDE/applications/19.08.0/kapman-19.08.0.tar.xz) = e0e53e60e7af1f0002343969b2ce0ce47e0cd3d7318b44d2827478291c2a9cd4 -SIZE (KDE/applications/19.08.0/kapman-19.08.0.tar.xz) = 2527408 +TIMESTAMP = 1567537170 +SHA256 (KDE/applications/19.08.1/kapman-19.08.1.tar.xz) = e80057b4fa9b8af86ecae30871005d4c7508bbc99618cf36dcf1c9c7fa905321 +SIZE (KDE/applications/19.08.1/kapman-19.08.1.tar.xz) = 2527628 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 511257) +++ head/games/katomic/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555628 -SHA256 (KDE/applications/19.08.0/katomic-19.08.0.tar.xz) = 12b2a0e703312159a8a217ddb5e19c9a9bea1825d668dd4377fe8e52101f3c90 -SIZE (KDE/applications/19.08.0/katomic-19.08.0.tar.xz) = 1421688 +TIMESTAMP = 1567537170 +SHA256 (KDE/applications/19.08.1/katomic-19.08.1.tar.xz) = 05453f2a1cba1a9bb7c558e9628361685d9b9b44fc4d65599eb05fec6ca3bd5d +SIZE (KDE/applications/19.08.1/katomic-19.08.1.tar.xz) = 1422624 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 511257) +++ head/games/kblackbox/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555628 -SHA256 (KDE/applications/19.08.0/kblackbox-19.08.0.tar.xz) = 44907aed2a2a24f57cb5ae0046a857645788d8d7aeb9383187b516c9f519a72c -SIZE (KDE/applications/19.08.0/kblackbox-19.08.0.tar.xz) = 443568 +TIMESTAMP = 1567537170 +SHA256 (KDE/applications/19.08.1/kblackbox-19.08.1.tar.xz) = 478b235e9498e9c5bf1c3626db651c85cf41bdd824dec484bccd38f6e73ffcc7 +SIZE (KDE/applications/19.08.1/kblackbox-19.08.1.tar.xz) = 443160 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 511257) +++ head/games/kblocks/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555629 -SHA256 (KDE/applications/19.08.0/kblocks-19.08.0.tar.xz) = 3337c6fb57fdb8439e6e6edc0186fec76641196714daa955465e009923573b84 -SIZE (KDE/applications/19.08.0/kblocks-19.08.0.tar.xz) = 1906940 +TIMESTAMP = 1567537171 +SHA256 (KDE/applications/19.08.1/kblocks-19.08.1.tar.xz) = 15afc3b7083fc1ea08d6caa196d883a6ec7f9603302b5774c7ad97eea833f449 +SIZE (KDE/applications/19.08.1/kblocks-19.08.1.tar.xz) = 1907352 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 511257) +++ head/games/kbounce/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555629 -SHA256 (KDE/applications/19.08.0/kbounce-19.08.0.tar.xz) = 3df779542c1d74d63e66a4db86210d75e37939f8f29947851b9c76c347856025 -SIZE (KDE/applications/19.08.0/kbounce-19.08.0.tar.xz) = 3467140 +TIMESTAMP = 1567537171 +SHA256 (KDE/applications/19.08.1/kbounce-19.08.1.tar.xz) = e3d67ab3fac471b07a45abbcd78d02912392ad3f25e9d48b70a050bfda4a5fb0 +SIZE (KDE/applications/19.08.1/kbounce-19.08.1.tar.xz) = 3468284 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 511257) +++ head/games/kbreakout/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555630 -SHA256 (KDE/applications/19.08.0/kbreakout-19.08.0.tar.xz) = 87748c5bda9b7563531e0b0701ec4a745cd95121b9bd426448e5ed476292fdd4 -SIZE (KDE/applications/19.08.0/kbreakout-19.08.0.tar.xz) = 2277924 +TIMESTAMP = 1567537171 +SHA256 (KDE/applications/19.08.1/kbreakout-19.08.1.tar.xz) = 1f086f6794b40c6054f0c00d7fbebecea845f2ee7e7e3253efe33942f4ebe19e +SIZE (KDE/applications/19.08.1/kbreakout-19.08.1.tar.xz) = 2276392 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 511257) +++ head/games/kdiamond/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555640 -SHA256 (KDE/applications/19.08.0/kdiamond-19.08.0.tar.xz) = f37d526610fa0579d5be9de19325ed82e14763c997d9ea026dfcf1068bf2428a -SIZE (KDE/applications/19.08.0/kdiamond-19.08.0.tar.xz) = 4694020 +TIMESTAMP = 1567537182 +SHA256 (KDE/applications/19.08.1/kdiamond-19.08.1.tar.xz) = 20280e44742d57508b0a0c4a70f7545bdbacf913300ca35f427801b46c808f8e +SIZE (KDE/applications/19.08.1/kdiamond-19.08.1.tar.xz) = 4692792 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 511257) +++ head/games/kfourinline/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555641 -SHA256 (KDE/applications/19.08.0/kfourinline-19.08.0.tar.xz) = f84ad6a3e0b2ecbb8c8ab7f451e9534f47627d9d90ff21f188df23dfd23ce22e -SIZE (KDE/applications/19.08.0/kfourinline-19.08.0.tar.xz) = 636760 +TIMESTAMP = 1567537182 +SHA256 (KDE/applications/19.08.1/kfourinline-19.08.1.tar.xz) = a138908ccb21ab16399edf6a0aa6f95d6197a77dfef9e4ed87c8914ceb8d5b84 +SIZE (KDE/applications/19.08.1/kfourinline-19.08.1.tar.xz) = 637900 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 511257) +++ head/games/kgoldrunner/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555641 -SHA256 (KDE/applications/19.08.0/kgoldrunner-19.08.0.tar.xz) = db203add309e10902a0e2b770929bf002b22ab78668ea432ecbf4497dfdc06b6 -SIZE (KDE/applications/19.08.0/kgoldrunner-19.08.0.tar.xz) = 4414176 +TIMESTAMP = 1567537183 +SHA256 (KDE/applications/19.08.1/kgoldrunner-19.08.1.tar.xz) = 78c284edc000ec3f3f64bcf0d6c92a50f79632804696de676ed149055de7a6f8 +SIZE (KDE/applications/19.08.1/kgoldrunner-19.08.1.tar.xz) = 4413724 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 511257) +++ head/games/khangman/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555641 -SHA256 (KDE/applications/19.08.0/khangman-19.08.0.tar.xz) = ff14cefbd78f047b6250ec3cf4d11e13484f30cc5610616c0a9270008b36f1a1 -SIZE (KDE/applications/19.08.0/khangman-19.08.0.tar.xz) = 7125364 +TIMESTAMP = 1567537183 +SHA256 (KDE/applications/19.08.1/khangman-19.08.1.tar.xz) = eb95c48baa57475319f456ee1df11b715e7ceb5b1912e2657a2b1f4617bf2b26 +SIZE (KDE/applications/19.08.1/khangman-19.08.1.tar.xz) = 7107308 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 511257) +++ head/games/kigo/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555642 -SHA256 (KDE/applications/19.08.0/kigo-19.08.0.tar.xz) = 0100195b3289b88b9813e453fc7ec6229a648718a6525bb3e6d0e0c0ead97595 -SIZE (KDE/applications/19.08.0/kigo-19.08.0.tar.xz) = 5225724 +TIMESTAMP = 1567537184 +SHA256 (KDE/applications/19.08.1/kigo-19.08.1.tar.xz) = 7afc2e08192d7e7bf17d67e00aebc498e37b40b47ce78cb7cf2d943a5563817b +SIZE (KDE/applications/19.08.1/kigo-19.08.1.tar.xz) = 5224956 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 511257) +++ head/games/killbots/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555642 -SHA256 (KDE/applications/19.08.0/killbots-19.08.0.tar.xz) = 909ce7808251a5d0537e2d35fae944b932973c36035f1c08f3143227e2d5cf4f -SIZE (KDE/applications/19.08.0/killbots-19.08.0.tar.xz) = 1171348 +TIMESTAMP = 1567537184 +SHA256 (KDE/applications/19.08.1/killbots-19.08.1.tar.xz) = 16fb2338125d342166e630cf589a346a69874ea1da32c0a3c591d6e17241e05e +SIZE (KDE/applications/19.08.1/killbots-19.08.1.tar.xz) = 1171136 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 511257) +++ head/games/kiriki/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555642 -SHA256 (KDE/applications/19.08.0/kiriki-19.08.0.tar.xz) = 42f69734c0268f4c3c4ed0b915318d9570d599c6a0fd8a2a02597f1e31cd50d7 -SIZE (KDE/applications/19.08.0/kiriki-19.08.0.tar.xz) = 372448 +TIMESTAMP = 1567537184 +SHA256 (KDE/applications/19.08.1/kiriki-19.08.1.tar.xz) = ca22215394b7ea172cd1c5eef301871df2526a321b4f3c6b1aa042d4f15abf7c +SIZE (KDE/applications/19.08.1/kiriki-19.08.1.tar.xz) = 373036 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 511257) +++ head/games/kjumpingcube/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555643 -SHA256 (KDE/applications/19.08.0/kjumpingcube-19.08.0.tar.xz) = d72c1164777f27b7711a0b74575ba38a9e34fca45c22915e10e7e792f7c00b33 -SIZE (KDE/applications/19.08.0/kjumpingcube-19.08.0.tar.xz) = 288152 +TIMESTAMP = 1567537185 +SHA256 (KDE/applications/19.08.1/kjumpingcube-19.08.1.tar.xz) = 18c7bc9ab96308a4b874226f92f15da38cbb293372fdae8deec45029d6d31f20 +SIZE (KDE/applications/19.08.1/kjumpingcube-19.08.1.tar.xz) = 288072 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 511257) +++ head/games/klickety/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555643 -SHA256 (KDE/applications/19.08.0/klickety-19.08.0.tar.xz) = aad8c7b9e4c07ca8bd64beae71330e51d45dcaa9929a9ce56b7c675fc9e583f0 -SIZE (KDE/applications/19.08.0/klickety-19.08.0.tar.xz) = 1388852 +TIMESTAMP = 1567537185 +SHA256 (KDE/applications/19.08.1/klickety-19.08.1.tar.xz) = cb12f79123e96920b323e752b057f21942aba0844d79e310ad343bda0108b273 +SIZE (KDE/applications/19.08.1/klickety-19.08.1.tar.xz) = 1389320 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 511257) +++ head/games/klines/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555643 -SHA256 (KDE/applications/19.08.0/klines-19.08.0.tar.xz) = c49ff3c4bb1612d5699c4a3b0613c6599cf23c0baa79806b8616dbea757d48f8 -SIZE (KDE/applications/19.08.0/klines-19.08.0.tar.xz) = 1780164 +TIMESTAMP = 1567537185 +SHA256 (KDE/applications/19.08.1/klines-19.08.1.tar.xz) = e8ac5d344c6b9e6d8a9fa9a0fe7da5ebdceec049fbdc8ff476604a0760877aab +SIZE (KDE/applications/19.08.1/klines-19.08.1.tar.xz) = 1781548 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 511257) +++ head/games/kmahjongg/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555644 -SHA256 (KDE/applications/19.08.0/kmahjongg-19.08.0.tar.xz) = f601963d0670639a11c4100ed1f53a0e308f79ddf98e1b4fc6a0a4674e117f22 -SIZE (KDE/applications/19.08.0/kmahjongg-19.08.0.tar.xz) = 3378164 +TIMESTAMP = 1567537186 +SHA256 (KDE/applications/19.08.1/kmahjongg-19.08.1.tar.xz) = 621e30ce5d76ab9f8736cfe13a076501c8822d7d1402d195bfe12c21ffa507c3 +SIZE (KDE/applications/19.08.1/kmahjongg-19.08.1.tar.xz) = 3379304 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 511257) +++ head/games/kmines/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555644 -SHA256 (KDE/applications/19.08.0/kmines-19.08.0.tar.xz) = 290efbc208d2fa6ad5552fe8c0679fd0669f4abf6dc31fafd267bd9444add981 -SIZE (KDE/applications/19.08.0/kmines-19.08.0.tar.xz) = 898244 +TIMESTAMP = 1567537186 +SHA256 (KDE/applications/19.08.1/kmines-19.08.1.tar.xz) = 8aedc9eeb3426a394a6e048508f700d466c18b262a9b98e01eff379a8d6003fb +SIZE (KDE/applications/19.08.1/kmines-19.08.1.tar.xz) = 898844 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 511257) +++ head/games/knavalbattle/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555645 -SHA256 (KDE/applications/19.08.0/knavalbattle-19.08.0.tar.xz) = 7fbf132662e12f785390dbef7086dad5372ebaea8f8c3f55c24fe37bf17df35e -SIZE (KDE/applications/19.08.0/knavalbattle-19.08.0.tar.xz) = 1280112 +TIMESTAMP = 1567537186 +SHA256 (KDE/applications/19.08.1/knavalbattle-19.08.1.tar.xz) = 6fa3cc1b7de95d22a6c356f411367399626a334ce648abc50ac724a860468915 +SIZE (KDE/applications/19.08.1/knavalbattle-19.08.1.tar.xz) = 1280000 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 511257) +++ head/games/knetwalk/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555645 -SHA256 (KDE/applications/19.08.0/knetwalk-19.08.0.tar.xz) = 135e8c3b0d46eda0eda2429c6fa89226cba184fb7357b86a3d3101797a7a8c96 -SIZE (KDE/applications/19.08.0/knetwalk-19.08.0.tar.xz) = 1038204 +TIMESTAMP = 1567537187 +SHA256 (KDE/applications/19.08.1/knetwalk-19.08.1.tar.xz) = 0c62b756d3375f0c51046e92904f380544ba77bcc0109607bb38055907579ccf +SIZE (KDE/applications/19.08.1/knetwalk-19.08.1.tar.xz) = 1038328 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 511257) +++ head/games/knights/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555645 -SHA256 (KDE/applications/19.08.0/knights-19.08.0.tar.xz) = 1e22413a23b8afeab8b5d46a4d6d81a5e00a891636676b99c5bd08806f97795c -SIZE (KDE/applications/19.08.0/knights-19.08.0.tar.xz) = 3513360 +TIMESTAMP = 1567537187 +SHA256 (KDE/applications/19.08.1/knights-19.08.1.tar.xz) = bdd99e6ba75e03f19eac5fe6e50c84496eb614725da021208db9119539cea132 +SIZE (KDE/applications/19.08.1/knights-19.08.1.tar.xz) = 3511440 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 511257) +++ head/games/kolf/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555646 -SHA256 (KDE/applications/19.08.0/kolf-19.08.0.tar.xz) = 1a2a7e9809fd6551518d1393dcfd365976b06ddf17aaa1056a36e8f167e7db5a -SIZE (KDE/applications/19.08.0/kolf-19.08.0.tar.xz) = 1024528 +TIMESTAMP = 1567537187 +SHA256 (KDE/applications/19.08.1/kolf-19.08.1.tar.xz) = 5199274d7ec557d396e74485debe4c7572050de6d31f128cca9ab737062f83bc +SIZE (KDE/applications/19.08.1/kolf-19.08.1.tar.xz) = 1031268 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 511257) +++ head/games/kollision/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555646 -SHA256 (KDE/applications/19.08.0/kollision-19.08.0.tar.xz) = 24a8ae084443359d59c16cbbafc450bbc467bd8b2a2516572e70ef24823750fd -SIZE (KDE/applications/19.08.0/kollision-19.08.0.tar.xz) = 280616 +TIMESTAMP = 1567537188 +SHA256 (KDE/applications/19.08.1/kollision-19.08.1.tar.xz) = 0f2bac3898ceb26bd17bdcc3481d76709b793a83ace75ba8f6f45fbf54428697 +SIZE (KDE/applications/19.08.1/kollision-19.08.1.tar.xz) = 281064 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 511257) +++ head/games/konquest/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555646 -SHA256 (KDE/applications/19.08.0/konquest-19.08.0.tar.xz) = 94919dce58182859f7e720ece73be81b5bafc359afdc1c29f4f45a3b24155e60 -SIZE (KDE/applications/19.08.0/konquest-19.08.0.tar.xz) = 658848 +TIMESTAMP = 1567537188 +SHA256 (KDE/applications/19.08.1/konquest-19.08.1.tar.xz) = 114e76a10a992efb3fbd094bd1b66c3d6266c540c41289a0627ec04a8db52ec0 +SIZE (KDE/applications/19.08.1/konquest-19.08.1.tar.xz) = 658328 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 511257) +++ head/games/kpat/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555647 -SHA256 (KDE/applications/19.08.0/kpat-19.08.0.tar.xz) = 1d68ac9094ad8f9bf0487daced786508f96ce2a63fd8d9884c2d03960fda9328 -SIZE (KDE/applications/19.08.0/kpat-19.08.0.tar.xz) = 3575840 +TIMESTAMP = 1567537188 +SHA256 (KDE/applications/19.08.1/kpat-19.08.1.tar.xz) = 65bf7299c59d3d7512ab39174fd0e5d044f307784c02895130399534e044831c +SIZE (KDE/applications/19.08.1/kpat-19.08.1.tar.xz) = 3577040 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 511257) +++ head/games/kreversi/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555647 -SHA256 (KDE/applications/19.08.0/kreversi-19.08.0.tar.xz) = 1dbfcce80813c238d5a9084ffcde828b0abeb7b370cfb1e82b55de75a5f02ba9 -SIZE (KDE/applications/19.08.0/kreversi-19.08.0.tar.xz) = 943120 +TIMESTAMP = 1567537189 +SHA256 (KDE/applications/19.08.1/kreversi-19.08.1.tar.xz) = f4c691dcc5c7864c8201f7e06470e2856996c35c5317020e56822c48af0b810e +SIZE (KDE/applications/19.08.1/kreversi-19.08.1.tar.xz) = 943128 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 511257) +++ head/games/kshisen/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555647 -SHA256 (KDE/applications/19.08.0/kshisen-19.08.0.tar.xz) = f591834b26ff622c995be81acdb07b6d25cf2e25745688a7c162d0b92532066d -SIZE (KDE/applications/19.08.0/kshisen-19.08.0.tar.xz) = 822780 +TIMESTAMP = 1567537189 +SHA256 (KDE/applications/19.08.1/kshisen-19.08.1.tar.xz) = 1631baaff368ca40a386c60998a9a491a2054a951f5b7311bea74f708d61d65f +SIZE (KDE/applications/19.08.1/kshisen-19.08.1.tar.xz) = 822564 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 511257) +++ head/games/ksirk/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555648 -SHA256 (KDE/applications/19.08.0/ksirk-19.08.0.tar.xz) = a929c6b10a01d765c8702afc1fa8e77ada7357cf8064c45cff34623d23a2c94c -SIZE (KDE/applications/19.08.0/ksirk-19.08.0.tar.xz) = 6994832 +TIMESTAMP = 1567537189 +SHA256 (KDE/applications/19.08.1/ksirk-19.08.1.tar.xz) = 42e00d3591fbfbe1db6de4caad963606a0ca5ee9a224b757157594bebb8c733c +SIZE (KDE/applications/19.08.1/ksirk-19.08.1.tar.xz) = 6993232 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 511257) +++ head/games/ksnakeduel/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555648 -SHA256 (KDE/applications/19.08.0/ksnakeduel-19.08.0.tar.xz) = 51799e15ce35237cf410bfd69cca40eeea6ec75ac3b3b98686b44028e8fd2b0b -SIZE (KDE/applications/19.08.0/ksnakeduel-19.08.0.tar.xz) = 605264 +TIMESTAMP = 1567537190 +SHA256 (KDE/applications/19.08.1/ksnakeduel-19.08.1.tar.xz) = 130e6545102a4e39f284a409213e9d45066ed27c077ff881839f33db78f62dd5 +SIZE (KDE/applications/19.08.1/ksnakeduel-19.08.1.tar.xz) = 605808 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 511257) +++ head/games/kspaceduel/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555648 -SHA256 (KDE/applications/19.08.0/kspaceduel-19.08.0.tar.xz) = fcd3b90e5a61cb27753cbacf4699c156317cfe30d50732f1f89ac4973dfb39f2 -SIZE (KDE/applications/19.08.0/kspaceduel-19.08.0.tar.xz) = 610992 +TIMESTAMP = 1567537190 +SHA256 (KDE/applications/19.08.1/kspaceduel-19.08.1.tar.xz) = 47a6d9c78b1d24e80803b7e1765bb6de37157e9f1e733ef5ce50a54612c16bf9 +SIZE (KDE/applications/19.08.1/kspaceduel-19.08.1.tar.xz) = 610980 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 511257) +++ head/games/ksquares/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555649 -SHA256 (KDE/applications/19.08.0/ksquares-19.08.0.tar.xz) = 649a89da0a928c8977218a76023044205b20f07af9b3abda042e46bc450bd00f -SIZE (KDE/applications/19.08.0/ksquares-19.08.0.tar.xz) = 261004 +TIMESTAMP = 1567537190 +SHA256 (KDE/applications/19.08.1/ksquares-19.08.1.tar.xz) = 39fd1b73c3c13c3322a5658b8deed31261b0e68edc5cb9666ade374d5d9d8283 +SIZE (KDE/applications/19.08.1/ksquares-19.08.1.tar.xz) = 260732 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 511257) +++ head/games/ksudoku/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555659 -SHA256 (KDE/applications/19.08.0/ksudoku-19.08.0.tar.xz) = 0f773ce70fbc05f30285b7123c5e28fe241ff56677c5b80c1201238bdbc375f8 -SIZE (KDE/applications/19.08.0/ksudoku-19.08.0.tar.xz) = 1647620 +TIMESTAMP = 1567537201 +SHA256 (KDE/applications/19.08.1/ksudoku-19.08.1.tar.xz) = cae801e0c595009e35aa11df370de421164f10d9840ae4dede2cd57f19cd6866 +SIZE (KDE/applications/19.08.1/ksudoku-19.08.1.tar.xz) = 1649352 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 511257) +++ head/games/ktuberling/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555660 -SHA256 (KDE/applications/19.08.0/ktuberling-19.08.0.tar.xz) = ca751ad3cc06475955fa9cb037a1a60539f59b7e3d22aa7d47e9fd4f2771cd5f -SIZE (KDE/applications/19.08.0/ktuberling-19.08.0.tar.xz) = 32643328 +TIMESTAMP = 1567537202 +SHA256 (KDE/applications/19.08.1/ktuberling-19.08.1.tar.xz) = b373c7552ff695e7d3428b7f2551315de00786177a5dc4bb96f777bdb84887cc +SIZE (KDE/applications/19.08.1/ktuberling-19.08.1.tar.xz) = 32635352 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 511257) +++ head/games/kubrick/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555670 -SHA256 (KDE/applications/19.08.0/kubrick-19.08.0.tar.xz) = 3a69a6d9a519db9fd25793d532da561a77e7033d71cd3dc67d0ee48c332b71c3 -SIZE (KDE/applications/19.08.0/kubrick-19.08.0.tar.xz) = 313536 +TIMESTAMP = 1567537212 +SHA256 (KDE/applications/19.08.1/kubrick-19.08.1.tar.xz) = 51ff60a682c69f829af7f7e4748128d48e691aacd584379e099c437473a45c03 +SIZE (KDE/applications/19.08.1/kubrick-19.08.1.tar.xz) = 313584 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 511257) +++ head/games/libkdegames/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555671 -SHA256 (KDE/applications/19.08.0/libkdegames-19.08.0.tar.xz) = cb1135a86b373543410f3eb0677aed033bad2b8ef60130753c699338e0c22d1b -SIZE (KDE/applications/19.08.0/libkdegames-19.08.0.tar.xz) = 6381040 +TIMESTAMP = 1567537212 +SHA256 (KDE/applications/19.08.1/libkdegames-19.08.1.tar.xz) = 1b365627bd0a3a42a32a0a8d401b53d2ac09f0f9cf040b4b0483c5574991b774 +SIZE (KDE/applications/19.08.1/libkdegames-19.08.1.tar.xz) = 6374404 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 511257) +++ head/games/libkmahjongg/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555671 -SHA256 (KDE/applications/19.08.0/libkmahjongg-19.08.0.tar.xz) = b51aea6773b609cc1c3a297e72e15b7b504c2877938030e1afac86319e855694 -SIZE (KDE/applications/19.08.0/libkmahjongg-19.08.0.tar.xz) = 1683080 +TIMESTAMP = 1567537213 +SHA256 (KDE/applications/19.08.1/libkmahjongg-19.08.1.tar.xz) = c4e3a29bb923ead76f1fb528fa62c677423ebb4ac07dd149a6fc3f6ae055eb39 +SIZE (KDE/applications/19.08.1/libkmahjongg-19.08.1.tar.xz) = 1683708 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 511257) +++ head/games/lskat/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555671 -SHA256 (KDE/applications/19.08.0/lskat-19.08.0.tar.xz) = b321f58772eab7f569c76ff4afb56b1e3324dc5febf45bf5ed90993cf38696b5 -SIZE (KDE/applications/19.08.0/lskat-19.08.0.tar.xz) = 1217272 +TIMESTAMP = 1567537213 +SHA256 (KDE/applications/19.08.1/lskat-19.08.1.tar.xz) = e4b073cc65be0f1e7e01b4b2aa28bed30480aef097f5185eb608b4e45b9352e9 +SIZE (KDE/applications/19.08.1/lskat-19.08.1.tar.xz) = 1218280 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 511257) +++ head/games/palapeli/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555672 -SHA256 (KDE/applications/19.08.0/palapeli-19.08.0.tar.xz) = fcdefb41685728cd9e01cc3249d2676a589f61a611e32c2e1a2e3d4d30721dde -SIZE (KDE/applications/19.08.0/palapeli-19.08.0.tar.xz) = 2068852 +TIMESTAMP = 1567537213 +SHA256 (KDE/applications/19.08.1/palapeli-19.08.1.tar.xz) = c9eeafe854529ea5a09e9ef6fd37b8be3d0d370322938c009c826bd936953adc +SIZE (KDE/applications/19.08.1/palapeli-19.08.1.tar.xz) = 2069656 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 511257) +++ head/games/picmi/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555672 -SHA256 (KDE/applications/19.08.0/picmi-19.08.0.tar.xz) = 1d7a6152b05ad22f98762a5a6cd96edbc03ae63bdbc0154f387dc5cce31243eb -SIZE (KDE/applications/19.08.0/picmi-19.08.0.tar.xz) = 1357444 +TIMESTAMP = 1567537214 +SHA256 (KDE/applications/19.08.1/picmi-19.08.1.tar.xz) = 47e0dd79ee4ae86d8be6822f9328fac2f00ce68cf862202e889c0f77a88d0d91 +SIZE (KDE/applications/19.08.1/picmi-19.08.1.tar.xz) = 1358072 Index: head/games/picmi/pkg-plist =================================================================== --- head/games/picmi/pkg-plist (revision 511257) +++ head/games/picmi/pkg-plist (revision 511258) @@ -1,84 +1,85 @@ bin/picmi share/applications/org.kde.picmi.desktop share/icons/hicolor/128x128/apps/picmi.png share/icons/hicolor/16x16/apps/picmi.png share/icons/hicolor/22x22/apps/picmi.png share/icons/hicolor/256x256/apps/picmi.png share/icons/hicolor/32x32/apps/picmi.png share/icons/hicolor/48x48/apps/picmi.png share/icons/hicolor/64x64/apps/picmi.png share/kxmlgui5/picmi/picmiui.rc share/locale/bs/LC_MESSAGES/picmi.mo share/locale/ca/LC_MESSAGES/picmi.mo share/locale/ca@valencia/LC_MESSAGES/picmi.mo share/locale/cs/LC_MESSAGES/picmi.mo share/locale/da/LC_MESSAGES/picmi.mo share/locale/de/LC_MESSAGES/picmi.mo share/locale/el/LC_MESSAGES/picmi.mo share/locale/en_GB/LC_MESSAGES/picmi.mo share/locale/es/LC_MESSAGES/picmi.mo share/locale/et/LC_MESSAGES/picmi.mo +share/locale/eu/LC_MESSAGES/picmi.mo share/locale/fi/LC_MESSAGES/picmi.mo share/locale/fr/LC_MESSAGES/picmi.mo share/locale/ga/LC_MESSAGES/picmi.mo share/locale/gl/LC_MESSAGES/picmi.mo share/locale/hu/LC_MESSAGES/picmi.mo share/locale/it/LC_MESSAGES/picmi.mo share/locale/ja/LC_MESSAGES/picmi.mo share/locale/kk/LC_MESSAGES/picmi.mo share/locale/ko/LC_MESSAGES/picmi.mo share/locale/lt/LC_MESSAGES/picmi.mo share/locale/lv/LC_MESSAGES/picmi.mo share/locale/mr/LC_MESSAGES/picmi.mo share/locale/nb/LC_MESSAGES/picmi.mo share/locale/nds/LC_MESSAGES/picmi.mo share/locale/nl/LC_MESSAGES/picmi.mo share/locale/nn/LC_MESSAGES/picmi.mo share/locale/pl/LC_MESSAGES/picmi.mo share/locale/pt/LC_MESSAGES/picmi.mo share/locale/pt_BR/LC_MESSAGES/picmi.mo share/locale/ro/LC_MESSAGES/picmi.mo share/locale/ru/LC_MESSAGES/picmi.mo share/locale/sk/LC_MESSAGES/picmi.mo share/locale/sl/LC_MESSAGES/picmi.mo share/locale/sr/LC_MESSAGES/picmi.mo share/locale/sv/LC_MESSAGES/picmi.mo share/locale/tr/LC_MESSAGES/picmi.mo share/locale/ug/LC_MESSAGES/picmi.mo share/locale/uk/LC_MESSAGES/picmi.mo share/locale/zh_CN/LC_MESSAGES/picmi.mo share/locale/zh_TW/LC_MESSAGES/picmi.mo share/metainfo/org.kde.picmi.appdata.xml %%DATADIR%%/levels/default.xml %%DATADIR%%/levels/default/antique_phone.xpm %%DATADIR%%/levels/default/baby_chick.xpm %%DATADIR%%/levels/default/baby_panda.xpm %%DATADIR%%/levels/default/basketball.xpm %%DATADIR%%/levels/default/bass_clef.xpm %%DATADIR%%/levels/default/bike.xpm %%DATADIR%%/levels/default/bird.xpm %%DATADIR%%/levels/default/calculator.xpm %%DATADIR%%/levels/default/camera.xpm %%DATADIR%%/levels/default/carlthecat.xpm %%DATADIR%%/levels/default/clarathecat.xpm %%DATADIR%%/levels/default/clausthecat.xpm %%DATADIR%%/levels/default/clef.xpm %%DATADIR%%/levels/default/clown.xpm %%DATADIR%%/levels/default/crocodile.xpm %%DATADIR%%/levels/default/elephant.xpm %%DATADIR%%/levels/default/halloween.xpm %%DATADIR%%/levels/default/hourglass.xpm %%DATADIR%%/levels/default/mobile_phone.xpm %%DATADIR%%/levels/default/panda.xpm %%DATADIR%%/levels/default/phone.xpm %%DATADIR%%/levels/default/picmi.xpm %%DATADIR%%/levels/default/pirate_dog.xpm %%DATADIR%%/levels/default/policeman.xpm %%DATADIR%%/levels/default/robot.xpm %%DATADIR%%/levels/default/santa_claus.xpm %%DATADIR%%/levels/default/shopping_cart.xpm %%DATADIR%%/levels/default/soccer.xpm %%DATADIR%%/levels/default/zebra.xpm %%DATADIR%%/themes/picmi.desktop %%DATADIR%%/themes/picmi.png %%DATADIR%%/themes/picmi.svg Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 511257) +++ head/graphics/gwenview/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555672 -SHA256 (KDE/applications/19.08.0/gwenview-19.08.0.tar.xz) = 1d1d4713bcebdd8c7c458c075b7101055c81cf94a802ac8b9b3528a3c3c961a3 -SIZE (KDE/applications/19.08.0/gwenview-19.08.0.tar.xz) = 5723612 +TIMESTAMP = 1567537225 +SHA256 (KDE/applications/19.08.1/gwenview-19.08.1.tar.xz) = 1ed46507ea30c43e4672b51996ac413683a863978999be91a9df135f9369f3cb +SIZE (KDE/applications/19.08.1/gwenview-19.08.1.tar.xz) = 5722756 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 511257) +++ head/graphics/kamera/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555673 -SHA256 (KDE/applications/19.08.0/kamera-19.08.0.tar.xz) = f287f1db119946d2e62d4ccd52a66671343042563cc87da246f2692fa1b775c6 -SIZE (KDE/applications/19.08.0/kamera-19.08.0.tar.xz) = 100052 +TIMESTAMP = 1567537225 +SHA256 (KDE/applications/19.08.1/kamera-19.08.1.tar.xz) = 109a030ef55b941758e8d4a58b2abed4c5e1bb7e13e8d239b7132867c801acf5 +SIZE (KDE/applications/19.08.1/kamera-19.08.1.tar.xz) = 100184 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 511257) +++ head/graphics/kcolorchooser/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555673 -SHA256 (KDE/applications/19.08.0/kcolorchooser-19.08.0.tar.xz) = bd9fa8940218f686b0a2d8c6fbe38b996646508a1908dd53925c2513f6fd39eb -SIZE (KDE/applications/19.08.0/kcolorchooser-19.08.0.tar.xz) = 20776 +TIMESTAMP = 1567537225 +SHA256 (KDE/applications/19.08.1/kcolorchooser-19.08.1.tar.xz) = a36cccbbf5dda16c0d97bff2ce415e678481fee5c2a7640b2c2db2f0ea7c70cb +SIZE (KDE/applications/19.08.1/kcolorchooser-19.08.1.tar.xz) = 20812 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 511257) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555674 -SHA256 (KDE/applications/19.08.0/kdegraphics-mobipocket-19.08.0.tar.xz) = 28c6566f32855a43d10829070cc47d0f4c879ca89eb3228ea6274d0f32fa90fe -SIZE (KDE/applications/19.08.0/kdegraphics-mobipocket-19.08.0.tar.xz) = 13508 +TIMESTAMP = 1567537226 +SHA256 (KDE/applications/19.08.1/kdegraphics-mobipocket-19.08.1.tar.xz) = b1760e3a22869715881f571c0bc79c1b91876e41f508a5ba53659be774a6628c +SIZE (KDE/applications/19.08.1/kdegraphics-mobipocket-19.08.1.tar.xz) = 13464 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 511257) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555674 -SHA256 (KDE/applications/19.08.0/svgpart-19.08.0.tar.xz) = 7e1f4b3f8807e996b2acb496971bd7ebcb1e456ac090e269e42d15fce629858d -SIZE (KDE/applications/19.08.0/svgpart-19.08.0.tar.xz) = 21164 +TIMESTAMP = 1567537226 +SHA256 (KDE/applications/19.08.1/svgpart-19.08.1.tar.xz) = 4ed6277d3f2c12a4a53dd308911c613af5ae65f53819aeacf42e08dcd08dbd5b +SIZE (KDE/applications/19.08.1/svgpart-19.08.1.tar.xz) = 21260 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 511257) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555674 -SHA256 (KDE/applications/19.08.0/kdegraphics-thumbnailers-19.08.0.tar.xz) = 127a99fffdaee3772b03a6c197357311ec56047caccce967f0d74b5489722ddf -SIZE (KDE/applications/19.08.0/kdegraphics-thumbnailers-19.08.0.tar.xz) = 43204 +TIMESTAMP = 1567537226 +SHA256 (KDE/applications/19.08.1/kdegraphics-thumbnailers-19.08.1.tar.xz) = 86a81ff786168778cbe0ad7c185320dbf052b1df2e6269f14323df04b48ed2ff +SIZE (KDE/applications/19.08.1/kdegraphics-thumbnailers-19.08.1.tar.xz) = 43416 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 511257) +++ head/graphics/kimagemapeditor/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555675 -SHA256 (KDE/applications/19.08.0/kimagemapeditor-19.08.0.tar.xz) = e2c0b75b65176a9ccbdccbae57be90ee8084593a64bee10b133787077affbde9 -SIZE (KDE/applications/19.08.0/kimagemapeditor-19.08.0.tar.xz) = 1070620 +TIMESTAMP = 1567537227 +SHA256 (KDE/applications/19.08.1/kimagemapeditor-19.08.1.tar.xz) = 0baa2f3fa5810ab63d08db2d0223af04407bb14e4bda20ad17dbfb6c63f33b3a +SIZE (KDE/applications/19.08.1/kimagemapeditor-19.08.1.tar.xz) = 1070508 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 511257) +++ head/graphics/kipi-plugins/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567198650 -SHA256 (KDE/applications/19.08.0/kipi-plugins-19.08.0.tar.xz) = 21fb6b997aeeeb462fd83ff90a36597b5c74b5711a837959f1e6cdc9a300c4e9 -SIZE (KDE/applications/19.08.0/kipi-plugins-19.08.0.tar.xz) = 1618716 +TIMESTAMP = 1567573244 +SHA256 (KDE/applications/19.08.1/kipi-plugins-19.08.1.tar.xz) = 6cc8fdc47fbfa5d8b4f9aeb4d82b5f1c9779a300cffbc17f8776dcb2ed61f0e4 +SIZE (KDE/applications/19.08.1/kipi-plugins-19.08.1.tar.xz) = 1629880 Index: head/graphics/kipi-plugins/pkg-plist =================================================================== --- head/graphics/kipi-plugins/pkg-plist (revision 511257) +++ head/graphics/kipi-plugins/pkg-plist (revision 511258) @@ -1,912 +1,938 @@ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 %%QT_PLUGINDIR%%/kipiplugin_dropbox.so %%QT_PLUGINDIR%%/kipiplugin_facebook.so %%QT_PLUGINDIR%%/kipiplugin_flashexport.so %%QT_PLUGINDIR%%/kipiplugin_flickr.so %%QT_PLUGINDIR%%/kipiplugin_googleservices.so %%QT_PLUGINDIR%%/kipiplugin_imageshack.so %%QT_PLUGINDIR%%/kipiplugin_imgur.so %%QT_PLUGINDIR%%/kipiplugin_jalbum.so %%QT_PLUGINDIR%%/kipiplugin_kmlexport.so %%QT_PLUGINDIR%%/kipiplugin_piwigo.so %%QT_PLUGINDIR%%/kipiplugin_printimages.so %%QT_PLUGINDIR%%/kipiplugin_rajce.so %%QT_PLUGINDIR%%/kipiplugin_remotestorage.so %%QT_PLUGINDIR%%/kipiplugin_sendimages.so %%QT_PLUGINDIR%%/kipiplugin_smug.so %%KVKONTAKTE%%%%QT_PLUGINDIR%%/kipiplugin_vkontakte.so %%MEDIAWIKI%%%%QT_PLUGINDIR%%/kipiplugin_wikimedia.so %%QT_PLUGINDIR%%/kipiplugin_yandexfotki.so share/applications/kipiplugins.desktop share/icons/hicolor/128x128/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-dropbox.png share/icons/hicolor/16x16/apps/kipi-facebook.png share/icons/hicolor/16x16/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-flickr.png share/icons/hicolor/16x16/apps/kipi-googledrive.png share/icons/hicolor/16x16/apps/kipi-googlephoto.png share/icons/hicolor/16x16/apps/kipi-hq.png share/icons/hicolor/16x16/apps/kipi-imgur.png share/icons/hicolor/16x16/apps/kipi-jalbum.png share/icons/hicolor/16x16/apps/kipi-piwigo.png share/icons/hicolor/16x16/apps/kipi-rajce.png share/icons/hicolor/16x16/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/16x16/apps/kipi-wikimedia.png share/icons/hicolor/22x22/apps/kipi-dropbox.png share/icons/hicolor/22x22/apps/kipi-facebook.png share/icons/hicolor/22x22/apps/kipi-flash.png share/icons/hicolor/22x22/apps/kipi-flickr.png share/icons/hicolor/22x22/apps/kipi-googledrive.png share/icons/hicolor/22x22/apps/kipi-googlephoto.png share/icons/hicolor/22x22/apps/kipi-hq.png share/icons/hicolor/22x22/apps/kipi-imgur.png share/icons/hicolor/22x22/apps/kipi-piwigo.png share/icons/hicolor/22x22/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/22x22/apps/kipi-wikimedia.png share/icons/hicolor/24x24/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-dropbox.png share/icons/hicolor/32x32/apps/kipi-facebook.png share/icons/hicolor/32x32/apps/kipi-flash.png share/icons/hicolor/32x32/apps/kipi-flickr.png share/icons/hicolor/32x32/apps/kipi-googledrive.png share/icons/hicolor/32x32/apps/kipi-googlephoto.png share/icons/hicolor/32x32/apps/kipi-hq.png share/icons/hicolor/32x32/apps/kipi-imageshack.png share/icons/hicolor/32x32/apps/kipi-imgur.png share/icons/hicolor/32x32/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-piwigo.png share/icons/hicolor/32x32/apps/kipi-rajce.png share/icons/hicolor/32x32/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/32x32/apps/kipi-wikimedia.png share/icons/hicolor/48x48/apps/kipi-dropbox.png share/icons/hicolor/48x48/apps/kipi-facebook.png share/icons/hicolor/48x48/apps/kipi-flash.png share/icons/hicolor/48x48/apps/kipi-flickr.png share/icons/hicolor/48x48/apps/kipi-googledrive.png share/icons/hicolor/48x48/apps/kipi-googlephoto.png share/icons/hicolor/48x48/apps/kipi-hq.png share/icons/hicolor/48x48/apps/kipi-imageshack.png share/icons/hicolor/48x48/apps/kipi-imgur.png share/icons/hicolor/48x48/apps/kipi-piwigo.png share/icons/hicolor/48x48/apps/kipi-rajce.png share/icons/hicolor/48x48/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/48x48/apps/kipi-wikimedia.png share/icons/hicolor/64x64/apps/kipi-imageshack.png share/icons/hicolor/64x64/apps/kipi-rajce.png share/icons/hicolor/scalable/apps/kipi-facebook.svgz share/icons/hicolor/scalable/apps/kipi-flash.svgz share/icons/hicolor/scalable/apps/kipi-flickr.svgz share/icons/hicolor/scalable/apps/kipi-googlephoto.svgz share/icons/hicolor/scalable/apps/kipi-hq.svgz share/icons/hicolor/scalable/apps/kipi-imgur.svgz share/icons/hicolor/scalable/apps/kipi-piwigo.svgz share/icons/hicolor/scalable/apps/kipi-smugmug.svgz %%MEDIAWIKI%%share/icons/hicolor/scalable/apps/kipi-wikimedia.svgz share/kipiplugin_flashexport/index.template share/kipiplugin_flashexport/index2.template share/kipiplugin_flashexport/index3.template share/kipiplugin_flashexport/index4.template share/kipiplugin_flashexport/simpleviewer_html/space.png share/kipiplugin_piwigo/pics/piwigo_logo.png share/kipiplugin_printimages/templates/1_photo_10.5x14.8cm.desktop share/kipiplugin_printimages/templates/1_photo_10x15cm.desktop share/kipiplugin_printimages/templates/1_photo_20x25cm.desktop share/kipiplugin_printimages/templates/1_photo_8x10.desktop share/kipiplugin_printimages/templates/1_photo_9x13cm.desktop share/kipiplugin_printimages/templates/2_photos_13x18cm.desktop share/kipiplugin_printimages/templates/2_photos_5x7.desktop share/kipiplugin_printimages/templates/3_photos_10x15cm.desktop share/kipiplugin_printimages/templates/3_photos_4x6.desktop share/kipiplugin_printimages/templates/4_photos_10x13.33cm.desktop share/kipiplugin_printimages/templates/4_photos_3.5x5.desktop share/kipiplugin_printimages/templates/4_photos_4.5x5cm.desktop share/kipiplugin_printimages/templates/4_photos_9x13cm.desktop share/kipiplugin_printimages/templates/4x6Album.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4.5cm.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4cm.desktop share/kipiplugin_printimages/templates/8_photos_6x9cm.desktop share/kipiplugin_printimages/templates/Album-Collage.desktop share/kipiplugin_printimages/templates/Album-Collage1.desktop share/kipiplugin_printimages/templates/Album_10x15cm.desktop share/kipiplugin_printimages/templates/Album_11.5x15cm.desktop share/kipiplugin_printimages/templates/FullPage.desktop share/kipiplugin_printimages/templates/Photoframe.desktop share/kipiplugin_printimages/templates/TEMPLATE_HOWTO share/kipiplugin_printimages/templates/Thumbnails_5x4.desktop share/kipiplugin_printimages/templates/Thumbnails_6x5.desktop share/kipiplugin_printimages/templates/templates.xml share/kservices5/kipiplugin_dropbox.desktop share/kservices5/kipiplugin_facebook.desktop share/kservices5/kipiplugin_flashexport.desktop share/kservices5/kipiplugin_flickr.desktop share/kservices5/kipiplugin_googleservices.desktop share/kservices5/kipiplugin_imageshack.desktop share/kservices5/kipiplugin_imgur.desktop share/kservices5/kipiplugin_jalbum.desktop share/kservices5/kipiplugin_kmlexport.desktop share/kservices5/kipiplugin_piwigo.desktop share/kservices5/kipiplugin_printimages.desktop share/kservices5/kipiplugin_rajce.desktop share/kservices5/kipiplugin_remotestorage.desktop share/kservices5/kipiplugin_sendimages.desktop share/kservices5/kipiplugin_smug.desktop %%KVKONTAKTE%%share/kservices5/kipiplugin_vkontakte.desktop %%MEDIAWIKI%%share/kservices5/kipiplugin_wikimedia.desktop share/kservices5/kipiplugin_yandexfotki.desktop share/kxmlgui5/kipi/kipiplugin_dropboxui.rc share/kxmlgui5/kipi/kipiplugin_facebookui.rc share/kxmlgui5/kipi/kipiplugin_flashexportui.rc share/kxmlgui5/kipi/kipiplugin_flickrui.rc share/kxmlgui5/kipi/kipiplugin_googleservicesui.rc share/kxmlgui5/kipi/kipiplugin_imageshackui.rc share/kxmlgui5/kipi/kipiplugin_imgurui.rc share/kxmlgui5/kipi/kipiplugin_jalbumui.rc share/kxmlgui5/kipi/kipiplugin_kmlexportui.rc share/kxmlgui5/kipi/kipiplugin_piwigoui.rc share/kxmlgui5/kipi/kipiplugin_printimagesui.rc share/kxmlgui5/kipi/kipiplugin_rajceui.rc share/kxmlgui5/kipi/kipiplugin_remotestorageui.rc share/kxmlgui5/kipi/kipiplugin_sendimagesui.rc share/kxmlgui5/kipi/kipiplugin_smugui.rc %%KVKONTAKTE%%share/kxmlgui5/kipi/kipiplugin_vkontakteui.rc %%MEDIAWIKI%%share/kxmlgui5/kipi/kipiplugin_wikimediaui.rc share/kxmlgui5/kipi/kipiplugin_yandexfotkiui.rc share/locale/ar/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ar/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ar/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ar/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ar/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ar/LC_MESSAGES/kipiplugins.mo share/locale/bs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bs/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/bs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/bs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/bs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/bs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/bs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/bs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/bs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/bs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_smug.mo share/locale/bs/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/bs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/bs/LC_MESSAGES/kipiplugins.mo share/locale/ca/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ca/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca/LC_MESSAGES/kipiplugins.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugins.mo share/locale/cs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/cs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/cs/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/cs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/cs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/cs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/cs/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/cs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/cs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/cs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/cs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_smug.mo share/locale/cs/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/cs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/cs/LC_MESSAGES/kipiplugins.mo share/locale/da/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/da/LC_MESSAGES/kipiplugin_facebook.mo share/locale/da/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/da/LC_MESSAGES/kipiplugin_flickr.mo share/locale/da/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/da/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/da/LC_MESSAGES/kipiplugin_imgur.mo share/locale/da/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/da/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/da/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/da/LC_MESSAGES/kipiplugin_printimages.mo share/locale/da/LC_MESSAGES/kipiplugin_rajce.mo share/locale/da/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/da/LC_MESSAGES/kipiplugin_smug.mo share/locale/da/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/da/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/da/LC_MESSAGES/kipiplugins.mo share/locale/de/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/de/LC_MESSAGES/kipiplugin_facebook.mo share/locale/de/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/de/LC_MESSAGES/kipiplugin_flickr.mo share/locale/de/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/de/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/de/LC_MESSAGES/kipiplugin_imgur.mo share/locale/de/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/de/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/de/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/de/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/de/LC_MESSAGES/kipiplugin_printimages.mo share/locale/de/LC_MESSAGES/kipiplugin_rajce.mo share/locale/de/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/de/LC_MESSAGES/kipiplugin_smug.mo share/locale/de/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/de/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/de/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/el/LC_MESSAGES/kipiplugin_facebook.mo share/locale/el/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/el/LC_MESSAGES/kipiplugin_flickr.mo share/locale/el/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/el/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/el/LC_MESSAGES/kipiplugin_imgur.mo share/locale/el/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/el/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/el/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/el/LC_MESSAGES/kipiplugin_printimages.mo share/locale/el/LC_MESSAGES/kipiplugin_rajce.mo share/locale/el/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/el/LC_MESSAGES/kipiplugin_smug.mo share/locale/el/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/el/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/el/LC_MESSAGES/kipiplugins.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_facebook.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flickr.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imgur.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_printimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_rajce.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_smug.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/en_GB/LC_MESSAGES/kipiplugins.mo share/locale/eo/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eo/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/eo/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eo/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eo/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eo/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eo/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_smug.mo share/locale/eo/LC_MESSAGES/kipiplugins.mo share/locale/es/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/es/LC_MESSAGES/kipiplugin_facebook.mo share/locale/es/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/es/LC_MESSAGES/kipiplugin_flickr.mo share/locale/es/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/es/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/es/LC_MESSAGES/kipiplugin_imgur.mo share/locale/es/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/es/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/es/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/es/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/es/LC_MESSAGES/kipiplugin_printimages.mo share/locale/es/LC_MESSAGES/kipiplugin_rajce.mo share/locale/es/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/es/LC_MESSAGES/kipiplugin_smug.mo share/locale/es/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/es/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/es/LC_MESSAGES/kipiplugins.mo share/locale/et/LC_MESSAGES/kipiplugin_facebook.mo share/locale/et/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/et/LC_MESSAGES/kipiplugin_flickr.mo share/locale/et/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/et/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/et/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/et/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/et/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/et/LC_MESSAGES/kipiplugin_printimages.mo share/locale/et/LC_MESSAGES/kipiplugin_rajce.mo share/locale/et/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/et/LC_MESSAGES/kipiplugin_smug.mo share/locale/et/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/et/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/et/LC_MESSAGES/kipiplugins.mo share/locale/eu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/eu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eu/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eu/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/eu/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/eu/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/eu/LC_MESSAGES/kipiplugin_jalbum.mo +share/locale/eu/LC_MESSAGES/kipiplugin_kmlexport.mo +share/locale/eu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/eu/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/eu/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/eu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/eu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_smug.mo share/locale/eu/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/eu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/eu/LC_MESSAGES/kipiplugins.mo share/locale/fi/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fi/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fi/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fi/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fi/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fi/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fi/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fi/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fi/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fi/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fi/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_smug.mo share/locale/fi/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/fi/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fi/LC_MESSAGES/kipiplugins.mo share/locale/fr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fr/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_smug.mo share/locale/fr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/fr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fr/LC_MESSAGES/kipiplugins.mo share/locale/ga/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ga/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ga/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ga/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ga/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ga/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ga/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_smug.mo share/locale/ga/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ga/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ga/LC_MESSAGES/kipiplugins.mo share/locale/gl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/gl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/gl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/gl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/gl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/gl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/gl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/gl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/gl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/gl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/gl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_smug.mo share/locale/gl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/gl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo share/locale/hi/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hi/LC_MESSAGES/kipiplugins.mo share/locale/hr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_smug.mo share/locale/hr/LC_MESSAGES/kipiplugins.mo share/locale/hu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/hu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hu/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/hu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/hu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/hu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/hu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/hu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_smug.mo share/locale/hu/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/hu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/hu/LC_MESSAGES/kipiplugins.mo share/locale/id/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/id/LC_MESSAGES/kipiplugin_facebook.mo share/locale/id/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/id/LC_MESSAGES/kipiplugin_flickr.mo share/locale/id/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/id/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/id/LC_MESSAGES/kipiplugin_imgur.mo share/locale/id/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/id/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/id/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/id/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/id/LC_MESSAGES/kipiplugin_printimages.mo share/locale/id/LC_MESSAGES/kipiplugin_rajce.mo share/locale/id/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/id/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/id/LC_MESSAGES/kipiplugin_smug.mo share/locale/id/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/id/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/id/LC_MESSAGES/kipiplugins.mo share/locale/is/LC_MESSAGES/kipiplugin_facebook.mo share/locale/is/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/is/LC_MESSAGES/kipiplugin_flickr.mo share/locale/is/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/is/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/is/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/is/LC_MESSAGES/kipiplugin_printimages.mo share/locale/is/LC_MESSAGES/kipiplugin_rajce.mo share/locale/is/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/is/LC_MESSAGES/kipiplugin_smug.mo share/locale/is/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/is/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/is/LC_MESSAGES/kipiplugins.mo share/locale/it/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/it/LC_MESSAGES/kipiplugin_facebook.mo share/locale/it/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/it/LC_MESSAGES/kipiplugin_flickr.mo share/locale/it/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/it/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/it/LC_MESSAGES/kipiplugin_imgur.mo share/locale/it/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/it/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/it/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/it/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/it/LC_MESSAGES/kipiplugin_printimages.mo share/locale/it/LC_MESSAGES/kipiplugin_rajce.mo share/locale/it/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/it/LC_MESSAGES/kipiplugin_smug.mo share/locale/it/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/it/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/it/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ja/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ja/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ja/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ja/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ja/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ja/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ja/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ja/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ja/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ja/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_smug.mo share/locale/ja/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ja/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo share/locale/km/LC_MESSAGES/kipiplugin_facebook.mo share/locale/km/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/km/LC_MESSAGES/kipiplugin_flickr.mo share/locale/km/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/km/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/km/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/km/LC_MESSAGES/kipiplugin_printimages.mo share/locale/km/LC_MESSAGES/kipiplugin_rajce.mo share/locale/km/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/km/LC_MESSAGES/kipiplugin_smug.mo share/locale/km/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/km/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/km/LC_MESSAGES/kipiplugins.mo share/locale/ko/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ko/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ko/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ko/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ko/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ko/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ko/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ko/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ko/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ko/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ko/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ko/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_smug.mo share/locale/ko/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ko/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ko/LC_MESSAGES/kipiplugins.mo share/locale/lt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/lt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/lt/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/lt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/lt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/lt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/lt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/lt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/lt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/lt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/lt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_smug.mo share/locale/lt/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/lt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/lt/LC_MESSAGES/kipiplugins.mo share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lv/LC_MESSAGES/kipiplugins.mo +share/locale/ml/LC_MESSAGES/kipiplugin_dropbox.mo +share/locale/ml/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/ml/LC_MESSAGES/kipiplugin_flashexport.mo +share/locale/ml/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/ml/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/ml/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/ml/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/ml/LC_MESSAGES/kipiplugin_jalbum.mo +share/locale/ml/LC_MESSAGES/kipiplugin_kmlexport.mo +share/locale/ml/LC_MESSAGES/kipiplugin_mediawiki.mo +share/locale/ml/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/ml/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/ml/LC_MESSAGES/kipiplugin_rajce.mo +share/locale/ml/LC_MESSAGES/kipiplugin_remotestorage.mo +share/locale/ml/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ml/LC_MESSAGES/kipiplugin_smug.mo +share/locale/ml/LC_MESSAGES/kipiplugin_vkontakte.mo +share/locale/ml/LC_MESSAGES/kipiplugin_yandexfotki.mo +share/locale/ml/LC_MESSAGES/kipiplugins.mo share/locale/mr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/mr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/mr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/mr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/mr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/mr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/mr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/mr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/mr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/mr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_smug.mo share/locale/mr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/mr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/mr/LC_MESSAGES/kipiplugins.mo share/locale/nb/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nb/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nb/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nb/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nb/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nb/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nb/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nb/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nb/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nb/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_smug.mo share/locale/nb/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nb/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nb/LC_MESSAGES/kipiplugins.mo share/locale/nds/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nds/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nds/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nds/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nds/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nds/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nds/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nds/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nds/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nds/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_smug.mo share/locale/nds/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nds/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nds/LC_MESSAGES/kipiplugins.mo share/locale/nl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_smug.mo share/locale/nl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nl/LC_MESSAGES/kipiplugins.mo share/locale/nn/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nn/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nn/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nn/LC_MESSAGES/kipiplugins.mo share/locale/pa/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pa/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pa/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pa/LC_MESSAGES/kipiplugins.mo share/locale/pl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_smug.mo share/locale/pl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pl/LC_MESSAGES/kipiplugins.mo share/locale/pt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt/LC_MESSAGES/kipiplugins.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ro/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ro/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ro/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ro/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ro/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ro/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_smug.mo share/locale/ro/LC_MESSAGES/kipiplugins.mo share/locale/ru/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ru/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ru/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ru/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ru/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ru/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ru/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ru/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ru/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ru/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ru/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_smug.mo share/locale/ru/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ru/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ru/LC_MESSAGES/kipiplugins.mo share/locale/sk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sk/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_smug.mo share/locale/sk/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sk/LC_MESSAGES/kipiplugins.mo share/locale/sl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_smug.mo share/locale/sl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sl/LC_MESSAGES/kipiplugins.mo share/locale/sv/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sv/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sv/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sv/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sv/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sv/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sv/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sv/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sv/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sv/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sv/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_smug.mo share/locale/sv/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sv/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sv/LC_MESSAGES/kipiplugins.mo share/locale/tr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/tr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/tr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/tr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/tr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/tr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/tr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/tr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/tr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/tr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_smug.mo share/locale/tr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/tr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/tr/LC_MESSAGES/kipiplugins.mo share/locale/ug/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ug/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ug/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ug/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ug/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ug/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ug/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ug/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ug/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ug/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_smug.mo share/locale/ug/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ug/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ug/LC_MESSAGES/kipiplugins.mo share/locale/uk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/uk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/uk/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/uk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/uk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/uk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/uk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/uk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/uk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/uk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/uk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_smug.mo share/locale/uk/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/uk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/uk/LC_MESSAGES/kipiplugins.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugins.mo Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 511257) +++ head/graphics/kolourpaint/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555675 -SHA256 (KDE/applications/19.08.0/kolourpaint-19.08.0.tar.xz) = 00596d813eff27e45de7f51ae411b144ee21a7ae2baf576e248046dbd97e097d -SIZE (KDE/applications/19.08.0/kolourpaint-19.08.0.tar.xz) = 5654168 +TIMESTAMP = 1567537227 +SHA256 (KDE/applications/19.08.1/kolourpaint-19.08.1.tar.xz) = 59c1a2a9d8f012ff1c483dae4f1019232ec667bd88e61c6c8fc07e47312ef23f +SIZE (KDE/applications/19.08.1/kolourpaint-19.08.1.tar.xz) = 5651556 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 511257) +++ head/graphics/libkdcraw/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555675 -SHA256 (KDE/applications/19.08.0/libkdcraw-19.08.0.tar.xz) = 5c00a6f28445ba5a45284c3cee0ee3f158ad9e184fea5ee8adc83ac3000b26b1 -SIZE (KDE/applications/19.08.0/libkdcraw-19.08.0.tar.xz) = 42152 +TIMESTAMP = 1567537227 +SHA256 (KDE/applications/19.08.1/libkdcraw-19.08.1.tar.xz) = b159a669cb4c01770c363b4dd53033248402d37b29acb416ec45e71ac12449e2 +SIZE (KDE/applications/19.08.1/libkdcraw-19.08.1.tar.xz) = 42072 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 511257) +++ head/graphics/libkexiv2/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555676 -SHA256 (KDE/applications/19.08.0/libkexiv2-19.08.0.tar.xz) = 42bb1a8b69efbb4ab8b1d939279d3eb02b2d8030bcb917739f4f61fb5a10db15 -SIZE (KDE/applications/19.08.0/libkexiv2-19.08.0.tar.xz) = 64544 +TIMESTAMP = 1567537228 +SHA256 (KDE/applications/19.08.1/libkexiv2-19.08.1.tar.xz) = bee9a16eda002146b42f358b0dc58c5db832719870761264cc6cf0a199ab0537 +SIZE (KDE/applications/19.08.1/libkexiv2-19.08.1.tar.xz) = 64336 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 511257) +++ head/graphics/libkipi/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555676 -SHA256 (KDE/applications/19.08.0/libkipi-19.08.0.tar.xz) = 94b184c3128fe7ded9e816e2a6124ee0dcf016b1325636dd41b157866b461989 -SIZE (KDE/applications/19.08.0/libkipi-19.08.0.tar.xz) = 103516 +TIMESTAMP = 1567537228 +SHA256 (KDE/applications/19.08.1/libkipi-19.08.1.tar.xz) = ec2012821c90062e43ad7c77861ab519b24aea429ed9f0b7bdf6ef9c00e82ba4 +SIZE (KDE/applications/19.08.1/libkipi-19.08.1.tar.xz) = 103436 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 511257) +++ head/graphics/libksane/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555676 -SHA256 (KDE/applications/19.08.0/libksane-19.08.0.tar.xz) = 62c670c316a47facbd0beedb0fcc35247fbbd285892a90ab06ebb8f74b8a6329 -SIZE (KDE/applications/19.08.0/libksane-19.08.0.tar.xz) = 138700 +TIMESTAMP = 1567537228 +SHA256 (KDE/applications/19.08.1/libksane-19.08.1.tar.xz) = 215fae62d8ea1f70908cafc5bc8667c02d4f0329669d056c99443a7b14a6e589 +SIZE (KDE/applications/19.08.1/libksane-19.08.1.tar.xz) = 138600 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 511257) +++ head/graphics/okular/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555677 -SHA256 (KDE/applications/19.08.0/okular-19.08.0.tar.xz) = 721a0d02d5ff9277c4a9a13dbde0ede3528eff848622e83abc36d57d9759b3ec -SIZE (KDE/applications/19.08.0/okular-19.08.0.tar.xz) = 7061996 +TIMESTAMP = 1567537229 +SHA256 (KDE/applications/19.08.1/okular-19.08.1.tar.xz) = 9e363b73febd5da1a17e53a8f89914784b555c1f0085ddc0f55ef56082b0bd54 +SIZE (KDE/applications/19.08.1/okular-19.08.1.tar.xz) = 7058264 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 511257) +++ head/graphics/spectacle/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555677 -SHA256 (KDE/applications/19.08.0/spectacle-19.08.0.tar.xz) = 8ada4f765f81ee496f9fd00b74764690df9c479e343a035e363f7159f93c35a4 -SIZE (KDE/applications/19.08.0/spectacle-19.08.0.tar.xz) = 964684 +TIMESTAMP = 1567537239 +SHA256 (KDE/applications/19.08.1/spectacle-19.08.1.tar.xz) = 21057fd4990048df33f5d739fc98af2a555ca4b7db50688333fecabc12f24786 +SIZE (KDE/applications/19.08.1/spectacle-19.08.1.tar.xz) = 965032 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 511257) +++ head/japanese/kiten/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555677 -SHA256 (KDE/applications/19.08.0/kiten-19.08.0.tar.xz) = 891ccf6c610099c63045aedccee4d1ac87c5189066fd2763e0743a40b2538b53 -SIZE (KDE/applications/19.08.0/kiten-19.08.0.tar.xz) = 11284696 +TIMESTAMP = 1567537240 +SHA256 (KDE/applications/19.08.1/kiten-19.08.1.tar.xz) = 01e963fd76c87a631bb5a4f86bc8be624907571c60368e6bf5bdce55cff6b59a +SIZE (KDE/applications/19.08.1/kiten-19.08.1.tar.xz) = 11284024 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 511257) +++ head/lang/kross-interpreters/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555678 -SHA256 (KDE/applications/19.08.0/kross-interpreters-19.08.0.tar.xz) = d0cda357a32d755d6eba373871c0903a5e6ee5f63289aa6f40c623e985453ecd -SIZE (KDE/applications/19.08.0/kross-interpreters-19.08.0.tar.xz) = 151572 +TIMESTAMP = 1567537240 +SHA256 (KDE/applications/19.08.1/kross-interpreters-19.08.1.tar.xz) = d6acb31bd4c97364aa4a77767e012af32ecd0f560da939901a81be5776f2de49 +SIZE (KDE/applications/19.08.1/kross-interpreters-19.08.1.tar.xz) = 151556 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 511257) +++ head/lang/kturtle/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555678 -SHA256 (KDE/applications/19.08.0/kturtle-19.08.0.tar.xz) = 0e7453e785344a792747b5d51d2c4a190d41e87ddf7e0a9ea49d107a2dd03db8 -SIZE (KDE/applications/19.08.0/kturtle-19.08.0.tar.xz) = 1828876 +TIMESTAMP = 1567537240 +SHA256 (KDE/applications/19.08.1/kturtle-19.08.1.tar.xz) = 5643434e861391471674e6cf86347c362b076e1d3fe1396022b5080b899bf934 +SIZE (KDE/applications/19.08.1/kturtle-19.08.1.tar.xz) = 1830108 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 511257) +++ head/math/analitza/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555679 -SHA256 (KDE/applications/19.08.0/analitza-19.08.0.tar.xz) = 516f29f089be92fecf5e17dcf466a9daf8525ec9e594f52f04338603914c2003 -SIZE (KDE/applications/19.08.0/analitza-19.08.0.tar.xz) = 332240 +TIMESTAMP = 1567537251 +SHA256 (KDE/applications/19.08.1/analitza-19.08.1.tar.xz) = f963a8abe31d4c0d2b0e0a7e78ec78ced8eb7a0af60df1620ccc2f2409df6a91 +SIZE (KDE/applications/19.08.1/analitza-19.08.1.tar.xz) = 332244 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 511257) +++ head/math/cantor/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555679 -SHA256 (KDE/applications/19.08.0/cantor-19.08.0.tar.xz) = b1d1a735e83ca03d51b79f1fc59612153e94b274d716d65ff3fa94ffdd2f3adc -SIZE (KDE/applications/19.08.0/cantor-19.08.0.tar.xz) = 2536776 +TIMESTAMP = 1567537251 +SHA256 (KDE/applications/19.08.1/cantor-19.08.1.tar.xz) = 93b43426c3383718e6ff7b62f073e3c39371a519b98e890c2b7c15cb5086c039 +SIZE (KDE/applications/19.08.1/cantor-19.08.1.tar.xz) = 2539272 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 511257) +++ head/math/kalgebra/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555689 -SHA256 (KDE/applications/19.08.0/kalgebra-19.08.0.tar.xz) = b875b2bfe985e5c595f60fbb146fb4545c34321bb86f7fc04164a23f0bb3e9eb -SIZE (KDE/applications/19.08.0/kalgebra-19.08.0.tar.xz) = 1156824 +TIMESTAMP = 1567537262 +SHA256 (KDE/applications/19.08.1/kalgebra-19.08.1.tar.xz) = c9859e0b2b847652007a3244bc658f7e160fe88fc70ea7da6e60f003f54f46c9 +SIZE (KDE/applications/19.08.1/kalgebra-19.08.1.tar.xz) = 1156912 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 511257) +++ head/math/kbruch/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555690 -SHA256 (KDE/applications/19.08.0/kbruch-19.08.0.tar.xz) = 29c83039af494703e9d665eca2acde30bb4b94666b3dfe9092833e35f83a9541 -SIZE (KDE/applications/19.08.0/kbruch-19.08.0.tar.xz) = 5604168 +TIMESTAMP = 1567537262 +SHA256 (KDE/applications/19.08.1/kbruch-19.08.1.tar.xz) = 74b387e6eafc5fac8b7a75df6f8d61a2b4b0380a82b5c43f3a10c9b75855318f +SIZE (KDE/applications/19.08.1/kbruch-19.08.1.tar.xz) = 5604040 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 511257) +++ head/math/kcalc/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555690 -SHA256 (KDE/applications/19.08.0/kcalc-19.08.0.tar.xz) = 58c26a9698bfc9e0d3a5614ab26c53878e87fc601688ad6c5848fbdbc21c4103 -SIZE (KDE/applications/19.08.0/kcalc-19.08.0.tar.xz) = 372228 +TIMESTAMP = 1567537262 +SHA256 (KDE/applications/19.08.1/kcalc-19.08.1.tar.xz) = 7b3c110a97b851e8db03302484cadc59a59ec8378501ee61dd094ac2c7caa203 +SIZE (KDE/applications/19.08.1/kcalc-19.08.1.tar.xz) = 372548 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 511257) +++ head/math/kig/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555690 -SHA256 (KDE/applications/19.08.0/kig-19.08.0.tar.xz) = ec35f8e9c10e0a984ab7ff06fc810a26e0abc825ee5674af238bb04e83ce38ee -SIZE (KDE/applications/19.08.0/kig-19.08.0.tar.xz) = 3498828 +TIMESTAMP = 1567537263 +SHA256 (KDE/applications/19.08.1/kig-19.08.1.tar.xz) = 8b073fd0310e62483a548ada000b4230f2b70dec8ab11ac8303bd64961829675 +SIZE (KDE/applications/19.08.1/kig-19.08.1.tar.xz) = 3495636 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 511257) +++ head/math/kmplot/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555691 -SHA256 (KDE/applications/19.08.0/kmplot-19.08.0.tar.xz) = 66384c96ba1e82b32427a873f944d5efa915bb2bf7d9ee886c94f368bd1f5e94 -SIZE (KDE/applications/19.08.0/kmplot-19.08.0.tar.xz) = 3052904 +TIMESTAMP = 1567537263 +SHA256 (KDE/applications/19.08.1/kmplot-19.08.1.tar.xz) = 7797dc95f64738b918cb19481bc74cebd1f66b5a537592bb53e98e1715701fe2 +SIZE (KDE/applications/19.08.1/kmplot-19.08.1.tar.xz) = 3055312 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 511257) +++ head/math/rocs/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555691 -SHA256 (KDE/applications/19.08.0/rocs-19.08.0.tar.xz) = 2e9346781bb6198a3fb3c3357ef796c0e86fdd104146de87a481619d3cbe78fe -SIZE (KDE/applications/19.08.0/rocs-19.08.0.tar.xz) = 1516860 +TIMESTAMP = 1567537263 +SHA256 (KDE/applications/19.08.1/rocs-19.08.1.tar.xz) = eaa2fefae8123071e5802d0c13016d0b99608f91c75c7c6e4fbe6f2c6dc12adf +SIZE (KDE/applications/19.08.1/rocs-19.08.1.tar.xz) = 1517012 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 511257) +++ head/misc/artikulate/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555691 -SHA256 (KDE/applications/19.08.0/artikulate-19.08.0.tar.xz) = 40f1ecb2e6d0d2e8bb1c86d64935c9f2411e0e72781e3211ed0014a02acd72ba -SIZE (KDE/applications/19.08.0/artikulate-19.08.0.tar.xz) = 3996468 +TIMESTAMP = 1567537264 +SHA256 (KDE/applications/19.08.1/artikulate-19.08.1.tar.xz) = 856488a4914ae0cfa594106b4d5c7b5ffd996b009075dfa009ab9cdd2cbc2f9d +SIZE (KDE/applications/19.08.1/artikulate-19.08.1.tar.xz) = 3999564 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 511257) +++ head/misc/kdeedu-data/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555692 -SHA256 (KDE/applications/19.08.0/kdeedu-data-19.08.0.tar.xz) = 658063227b9d4d7e4e238038ffa9c76e5c5f3015c923967477f514b063940eb0 -SIZE (KDE/applications/19.08.0/kdeedu-data-19.08.0.tar.xz) = 327124 +TIMESTAMP = 1567537264 +SHA256 (KDE/applications/19.08.1/kdeedu-data-19.08.1.tar.xz) = 107dff744219210c732aa007d97c8c8d8e87cff5cd446d987b8ac2600ea1f1b7 +SIZE (KDE/applications/19.08.1/kdeedu-data-19.08.1.tar.xz) = 327304 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 511257) +++ head/misc/kgeography/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555692 -SHA256 (KDE/applications/19.08.0/kgeography-19.08.0.tar.xz) = 83eb429851360d848e3e028ef2748a9d66470b8f3dc3bf66fbbfd08b534a7a75 -SIZE (KDE/applications/19.08.0/kgeography-19.08.0.tar.xz) = 10882400 +TIMESTAMP = 1567537265 +SHA256 (KDE/applications/19.08.1/kgeography-19.08.1.tar.xz) = c0c04e902626d52118e81da9fc24fbd87d49d0bcf4ad229f83eef8e4f84fb551 +SIZE (KDE/applications/19.08.1/kgeography-19.08.1.tar.xz) = 10882020 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 511257) +++ head/misc/klettres/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555693 -SHA256 (KDE/applications/19.08.0/klettres-19.08.0.tar.xz) = 0a680ff0c2c3868a2478da0e2a5eb8db8579e5ba9165743c8a2c20704c062be4 -SIZE (KDE/applications/19.08.0/klettres-19.08.0.tar.xz) = 40136528 +TIMESTAMP = 1567537265 +SHA256 (KDE/applications/19.08.1/klettres-19.08.1.tar.xz) = 9d9616e35f2b82e39916b89a049bee4faca5a4235eb22989c9e8485c7e75239b +SIZE (KDE/applications/19.08.1/klettres-19.08.1.tar.xz) = 40141832 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 511257) +++ head/misc/ktouch/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555693 -SHA256 (KDE/applications/19.08.0/ktouch-19.08.0.tar.xz) = 23ae45be76371fa40aac875551b5de8956a2d2b0980024bd788b8b7835b902ba -SIZE (KDE/applications/19.08.0/ktouch-19.08.0.tar.xz) = 4937676 +TIMESTAMP = 1567537276 +SHA256 (KDE/applications/19.08.1/ktouch-19.08.1.tar.xz) = d97ee5f253dd4e4d802bb8109c2e12d4d48bc7741686d07783e5687a499a2da7 +SIZE (KDE/applications/19.08.1/ktouch-19.08.1.tar.xz) = 4936212 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 511257) +++ head/misc/kwordquiz/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555694 -SHA256 (KDE/applications/19.08.0/kwordquiz-19.08.0.tar.xz) = ed4278c1ca0e6e7da548e563a4248fa9e0ff0707b67e06e53ae26dbc2069fc71 -SIZE (KDE/applications/19.08.0/kwordquiz-19.08.0.tar.xz) = 4174332 +TIMESTAMP = 1567537276 +SHA256 (KDE/applications/19.08.1/kwordquiz-19.08.1.tar.xz) = ead21c1caa1d1665a8ef685c4b46a442b7423aba63153617008985e84ff4c318 +SIZE (KDE/applications/19.08.1/kwordquiz-19.08.1.tar.xz) = 4173200 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 511257) +++ head/misc/libkeduvocdocument/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555694 -SHA256 (KDE/applications/19.08.0/libkeduvocdocument-19.08.0.tar.xz) = 7b0314bc1f06a4ea4cbb4b4b203a9a0f4a0370f355f8def4398dc452075f6fcf -SIZE (KDE/applications/19.08.0/libkeduvocdocument-19.08.0.tar.xz) = 210428 +TIMESTAMP = 1567537276 +SHA256 (KDE/applications/19.08.1/libkeduvocdocument-19.08.1.tar.xz) = 9e7eb36b0c649231a792f618b28fd110b3782ea086cce81436191e9f73c6674e +SIZE (KDE/applications/19.08.1/libkeduvocdocument-19.08.1.tar.xz) = 211212 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 511257) +++ head/misc/parley/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555704 -SHA256 (KDE/applications/19.08.0/parley-19.08.0.tar.xz) = d3c8f8e7ceee62ffa9b95dbf539a509260b5f759fadd136a966d90a67e8a94a4 -SIZE (KDE/applications/19.08.0/parley-19.08.0.tar.xz) = 8829828 +TIMESTAMP = 1567537287 +SHA256 (KDE/applications/19.08.1/parley-19.08.1.tar.xz) = 6ee4d538ddaecd5b6c3d855db62a4b5061240b2089b3dcc592712398fd1d066b +SIZE (KDE/applications/19.08.1/parley-19.08.1.tar.xz) = 8831116 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 511257) +++ head/multimedia/dragon/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555705 -SHA256 (KDE/applications/19.08.0/dragon-19.08.0.tar.xz) = 3d792f6dfd4a5d8ad7726fa942840ebed2b2bb6f25ec6f68883b83859c21cacc -SIZE (KDE/applications/19.08.0/dragon-19.08.0.tar.xz) = 1350576 +TIMESTAMP = 1567537287 +SHA256 (KDE/applications/19.08.1/dragon-19.08.1.tar.xz) = b015dbba4b8278a4987164f12a9d9e42745d2eb1772da8b8b0c849b28ba03c90 +SIZE (KDE/applications/19.08.1/dragon-19.08.1.tar.xz) = 1351996 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 511257) +++ head/multimedia/kamoso/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555715 -SHA256 (KDE/applications/19.08.0/kamoso-19.08.0.tar.xz) = 2aa8765f71109e813836dced26994a953973ef6f4d517ab224691f2342d64129 -SIZE (KDE/applications/19.08.0/kamoso-19.08.0.tar.xz) = 200960 +TIMESTAMP = 1567537297 +SHA256 (KDE/applications/19.08.1/kamoso-19.08.1.tar.xz) = 76d7a9ea70646f8e86e912b72bd9f9ab42711f0cd53c7bed1403a274de036675 +SIZE (KDE/applications/19.08.1/kamoso-19.08.1.tar.xz) = 201564 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 511257) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555716 -SHA256 (KDE/applications/19.08.0/ffmpegthumbs-19.08.0.tar.xz) = 13f5f8b40c0f6146cdd4d1d9e6a7b7dd19cda9650fe08f9731c050e58f11efee -SIZE (KDE/applications/19.08.0/ffmpegthumbs-19.08.0.tar.xz) = 25072 +TIMESTAMP = 1567537298 +SHA256 (KDE/applications/19.08.1/ffmpegthumbs-19.08.1.tar.xz) = 527ef798db833e71e2faf315fc89596716bd2bd7d11c78bc1bb2ef9b1549a71b +SIZE (KDE/applications/19.08.1/ffmpegthumbs-19.08.1.tar.xz) = 25164 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 511257) +++ head/net/akonadi-calendar/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555742 -SHA256 (KDE/applications/19.08.0/akonadi-calendar-19.08.0.tar.xz) = 74743ff7822ce75f0e0170f154e4596644855a5fe9322a09b76e01bd1d078e3b -SIZE (KDE/applications/19.08.0/akonadi-calendar-19.08.0.tar.xz) = 332900 +TIMESTAMP = 1567537324 +SHA256 (KDE/applications/19.08.1/akonadi-calendar-19.08.1.tar.xz) = 5e8c66d4c86e6458469dbb393458ee8b5e6afc1b4712ce8395709d4226864d6c +SIZE (KDE/applications/19.08.1/akonadi-calendar-19.08.1.tar.xz) = 331352 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 511257) +++ head/net/akonadi-contacts/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555743 -SHA256 (KDE/applications/19.08.0/akonadi-contacts-19.08.0.tar.xz) = 912a657a11d1bd1e680a71b43d69a5a871136ed83f171b11c52f1974d7381ce4 -SIZE (KDE/applications/19.08.0/akonadi-contacts-19.08.0.tar.xz) = 385500 +TIMESTAMP = 1567537324 +SHA256 (KDE/applications/19.08.1/akonadi-contacts-19.08.1.tar.xz) = f182883b4cc16034a798feb966df268e84d9c5b8d3c6e14d5698f7ead85a21d7 +SIZE (KDE/applications/19.08.1/akonadi-contacts-19.08.1.tar.xz) = 385060 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 511257) +++ head/net/akonadi-mime/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555743 -SHA256 (KDE/applications/19.08.0/akonadi-mime-19.08.0.tar.xz) = 32dcee53d8bd79a4ad85dfa453aa762d69194493ad6622aea4fd7cd05bde3ec4 -SIZE (KDE/applications/19.08.0/akonadi-mime-19.08.0.tar.xz) = 133008 +TIMESTAMP = 1567537325 +SHA256 (KDE/applications/19.08.1/akonadi-mime-19.08.1.tar.xz) = 0a4f4652a665229b290431adb59940890effba0804fe33a0e79a24322f90b35c +SIZE (KDE/applications/19.08.1/akonadi-mime-19.08.1.tar.xz) = 132536 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 511257) +++ head/net/akonadi-notes/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555743 -SHA256 (KDE/applications/19.08.0/akonadi-notes-19.08.0.tar.xz) = 26000875958b3a0ff68c5ad871fd697623c8408b88fc46679c8a13ad308c33d3 -SIZE (KDE/applications/19.08.0/akonadi-notes-19.08.0.tar.xz) = 24508 +TIMESTAMP = 1567537325 +SHA256 (KDE/applications/19.08.1/akonadi-notes-19.08.1.tar.xz) = 44896f17fc2f625f9fc8c77690acd787291c5e08e8261c5d113c94045bd5bdd8 +SIZE (KDE/applications/19.08.1/akonadi-notes-19.08.1.tar.xz) = 24488 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 511257) +++ head/net/akonadi-search/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555744 -SHA256 (KDE/applications/19.08.0/akonadi-search-19.08.0.tar.xz) = fadc158343eb7c124454ca3e22ade14230772f1d1a89e04a0059c924ed3959d0 -SIZE (KDE/applications/19.08.0/akonadi-search-19.08.0.tar.xz) = 82652 +TIMESTAMP = 1567537325 +SHA256 (KDE/applications/19.08.1/akonadi-search-19.08.1.tar.xz) = c68387f3452bcd390f1c99549531c72d95db0def29d8ba10330e68891b0d0b53 +SIZE (KDE/applications/19.08.1/akonadi-search-19.08.1.tar.xz) = 82456 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 511257) +++ head/net/calendarsupport/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555744 -SHA256 (KDE/applications/19.08.0/calendarsupport-19.08.0.tar.xz) = af590cf5443c1205a8bd59d00c430bbdf65a185a36ed36e92e6ef78bba8551e4 -SIZE (KDE/applications/19.08.0/calendarsupport-19.08.0.tar.xz) = 646728 +TIMESTAMP = 1567537326 +SHA256 (KDE/applications/19.08.1/calendarsupport-19.08.1.tar.xz) = 74d1b19a924f2aad7f5a034a7e3b11f2ed5bb94cd21458f0255a64ac6163de97 +SIZE (KDE/applications/19.08.1/calendarsupport-19.08.1.tar.xz) = 645736 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 511257) +++ head/net/eventviews/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555744 -SHA256 (KDE/applications/19.08.0/eventviews-19.08.0.tar.xz) = 2f7713173b3820800d7927aff64eb7bcc84c643d9da43adbe6560cb842081295 -SIZE (KDE/applications/19.08.0/eventviews-19.08.0.tar.xz) = 443200 +TIMESTAMP = 1567537326 +SHA256 (KDE/applications/19.08.1/eventviews-19.08.1.tar.xz) = a44d82e774017171f2eef3ef94b3c5b2765ce08fab5eec0a87b286fd5ea815f7 +SIZE (KDE/applications/19.08.1/eventviews-19.08.1.tar.xz) = 443044 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 511257) +++ head/net/incidenceeditor/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555745 -SHA256 (KDE/applications/19.08.0/incidenceeditor-19.08.0.tar.xz) = 43915613a5db71847be425bc4434c0e04f5410b3575cea3141ffcd99b2cdb9ea -SIZE (KDE/applications/19.08.0/incidenceeditor-19.08.0.tar.xz) = 550500 +TIMESTAMP = 1567537326 +SHA256 (KDE/applications/19.08.1/incidenceeditor-19.08.1.tar.xz) = 591781da9b3bc4b0f366ffa8de658aa31f48e1f435a434669b7c11b5f3a55403 +SIZE (KDE/applications/19.08.1/incidenceeditor-19.08.1.tar.xz) = 549960 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 511257) +++ head/net/kalarmcal/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555745 -SHA256 (KDE/applications/19.08.0/kalarmcal-19.08.0.tar.xz) = 5f764d58716e7d271fac4cb3a4df6ab157014533782c47c38bacab59ca669419 -SIZE (KDE/applications/19.08.0/kalarmcal-19.08.0.tar.xz) = 573124 +TIMESTAMP = 1567537327 +SHA256 (KDE/applications/19.08.1/kalarmcal-19.08.1.tar.xz) = add9ee09287491236c9a25cfcb32d437845d094d8fef3682954f561dc2917984 +SIZE (KDE/applications/19.08.1/kalarmcal-19.08.1.tar.xz) = 573124 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 511257) +++ head/net/kblog/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555745 -SHA256 (KDE/applications/19.08.0/kblog-19.08.0.tar.xz) = 15abd5dfd0499633703273823ceddc8e64b52b0217b04bea3d86cb9ac54da189 -SIZE (KDE/applications/19.08.0/kblog-19.08.0.tar.xz) = 72836 +TIMESTAMP = 1567537327 +SHA256 (KDE/applications/19.08.1/kblog-19.08.1.tar.xz) = e1926ebfb352f6b8c35963fdece240b03be8d3ec094cee46ba694e2869c85cae +SIZE (KDE/applications/19.08.1/kblog-19.08.1.tar.xz) = 72876 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 511257) +++ head/net/kcalcore/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555746 -SHA256 (KDE/applications/19.08.0/kcalcore-19.08.0.tar.xz) = 7c7bbca70ada8c8317d6d3d91e0357b2b5886328189423e0b7fac1d326f8ed85 -SIZE (KDE/applications/19.08.0/kcalcore-19.08.0.tar.xz) = 247656 +TIMESTAMP = 1567537327 +SHA256 (KDE/applications/19.08.1/kcalcore-19.08.1.tar.xz) = 8c1bbd8e7673907de2c3682cbc1c4fe4a165cbe0b9a2fe399c4b0ae73894228a +SIZE (KDE/applications/19.08.1/kcalcore-19.08.1.tar.xz) = 246396 Index: head/net/kcalcore/pkg-plist =================================================================== --- head/net/kcalcore/pkg-plist (revision 511257) +++ head/net/kcalcore/pkg-plist (revision 511258) @@ -1,134 +1,135 @@ share/qlogging-categories5/kcalendarcore.categories share/qlogging-categories5/kcalendarcore.renamecategories include/KF5/KCalendarCore/KCalCore/Alarm include/KF5/KCalendarCore/KCalCore/Attachment include/KF5/KCalendarCore/KCalCore/Attendee include/KF5/KCalendarCore/KCalCore/CalFilter include/KF5/KCalendarCore/KCalCore/CalFormat include/KF5/KCalendarCore/KCalCore/CalStorage include/KF5/KCalendarCore/KCalCore/Calendar include/KF5/KCalendarCore/KCalCore/CustomProperties include/KF5/KCalendarCore/KCalCore/Duration include/KF5/KCalendarCore/KCalCore/Event include/KF5/KCalendarCore/KCalCore/Exceptions include/KF5/KCalendarCore/KCalCore/FileStorage include/KF5/KCalendarCore/KCalCore/FreeBusy include/KF5/KCalendarCore/KCalCore/FreeBusyCache include/KF5/KCalendarCore/KCalCore/FreeBusyPeriod include/KF5/KCalendarCore/KCalCore/ICalFormat include/KF5/KCalendarCore/KCalCore/Incidence include/KF5/KCalendarCore/KCalCore/IncidenceBase include/KF5/KCalendarCore/KCalCore/Journal include/KF5/KCalendarCore/KCalCore/MemoryCalendar include/KF5/KCalendarCore/KCalCore/OccurrenceIterator include/KF5/KCalendarCore/KCalCore/Period include/KF5/KCalendarCore/KCalCore/Person include/KF5/KCalendarCore/KCalCore/Recurrence include/KF5/KCalendarCore/KCalCore/RecurrenceRule include/KF5/KCalendarCore/KCalCore/ScheduleMessage include/KF5/KCalendarCore/KCalCore/Sorting include/KF5/KCalendarCore/KCalCore/Todo include/KF5/KCalendarCore/KCalCore/VCalFormat include/KF5/KCalendarCore/KCalCore/Visitor include/KF5/KCalendarCore/KCalendarCore/Alarm include/KF5/KCalendarCore/KCalendarCore/Attachment include/KF5/KCalendarCore/KCalendarCore/Attendee include/KF5/KCalendarCore/KCalendarCore/CalFilter include/KF5/KCalendarCore/KCalendarCore/CalFormat include/KF5/KCalendarCore/KCalendarCore/CalStorage include/KF5/KCalendarCore/KCalendarCore/Calendar include/KF5/KCalendarCore/KCalendarCore/CustomProperties include/KF5/KCalendarCore/KCalendarCore/Duration include/KF5/KCalendarCore/KCalendarCore/Event include/KF5/KCalendarCore/KCalendarCore/Exceptions include/KF5/KCalendarCore/KCalendarCore/FileStorage include/KF5/KCalendarCore/KCalendarCore/FreeBusy include/KF5/KCalendarCore/KCalendarCore/FreeBusyCache include/KF5/KCalendarCore/KCalendarCore/FreeBusyPeriod include/KF5/KCalendarCore/KCalendarCore/ICalFormat include/KF5/KCalendarCore/KCalendarCore/Incidence include/KF5/KCalendarCore/KCalendarCore/IncidenceBase include/KF5/KCalendarCore/KCalendarCore/Journal include/KF5/KCalendarCore/KCalendarCore/MemoryCalendar include/KF5/KCalendarCore/KCalendarCore/OccurrenceIterator include/KF5/KCalendarCore/KCalendarCore/Period include/KF5/KCalendarCore/KCalendarCore/Person include/KF5/KCalendarCore/KCalendarCore/Recurrence include/KF5/KCalendarCore/KCalendarCore/RecurrenceRule include/KF5/KCalendarCore/KCalendarCore/ScheduleMessage include/KF5/KCalendarCore/KCalendarCore/Sorting include/KF5/KCalendarCore/KCalendarCore/Todo include/KF5/KCalendarCore/KCalendarCore/VCalFormat include/KF5/KCalendarCore/KCalendarCore/Visitor include/KF5/KCalendarCore/kcalcore/alarm.h include/KF5/KCalendarCore/kcalcore/attachment.h include/KF5/KCalendarCore/kcalcore/attendee.h include/KF5/KCalendarCore/kcalcore/calendar.h include/KF5/KCalendarCore/kcalcore/calfilter.h include/KF5/KCalendarCore/kcalcore/calformat.h include/KF5/KCalendarCore/kcalcore/calstorage.h include/KF5/KCalendarCore/kcalcore/customproperties.h include/KF5/KCalendarCore/kcalcore/duration.h include/KF5/KCalendarCore/kcalcore/event.h include/KF5/KCalendarCore/kcalcore/exceptions.h include/KF5/KCalendarCore/kcalcore/filestorage.h include/KF5/KCalendarCore/kcalcore/freebusy.h include/KF5/KCalendarCore/kcalcore/freebusycache.h include/KF5/KCalendarCore/kcalcore/freebusyperiod.h include/KF5/KCalendarCore/kcalcore/icalformat.h include/KF5/KCalendarCore/kcalcore/incidence.h include/KF5/KCalendarCore/kcalcore/incidencebase.h include/KF5/KCalendarCore/kcalcore/journal.h include/KF5/KCalendarCore/kcalcore/kcalendarcore_export.h include/KF5/KCalendarCore/kcalcore/memorycalendar.h include/KF5/KCalendarCore/kcalcore/occurrenceiterator.h include/KF5/KCalendarCore/kcalcore/period.h include/KF5/KCalendarCore/kcalcore/person.h include/KF5/KCalendarCore/kcalcore/recurrence.h include/KF5/KCalendarCore/kcalcore/recurrencerule.h include/KF5/KCalendarCore/kcalcore/schedulemessage.h include/KF5/KCalendarCore/kcalcore/sorting.h include/KF5/KCalendarCore/kcalcore/todo.h include/KF5/KCalendarCore/kcalcore/vcalformat.h include/KF5/KCalendarCore/kcalcore/visitor.h include/KF5/KCalendarCore/kcalendarcore/alarm.h include/KF5/KCalendarCore/kcalendarcore/attachment.h include/KF5/KCalendarCore/kcalendarcore/attendee.h include/KF5/KCalendarCore/kcalendarcore/calendar.h include/KF5/KCalendarCore/kcalendarcore/calfilter.h include/KF5/KCalendarCore/kcalendarcore/calformat.h include/KF5/KCalendarCore/kcalendarcore/calstorage.h include/KF5/KCalendarCore/kcalendarcore/customproperties.h include/KF5/KCalendarCore/kcalendarcore/duration.h include/KF5/KCalendarCore/kcalendarcore/event.h include/KF5/KCalendarCore/kcalendarcore/exceptions.h include/KF5/KCalendarCore/kcalendarcore/filestorage.h include/KF5/KCalendarCore/kcalendarcore/freebusy.h include/KF5/KCalendarCore/kcalendarcore/freebusycache.h include/KF5/KCalendarCore/kcalendarcore/freebusyperiod.h include/KF5/KCalendarCore/kcalendarcore/icalformat.h include/KF5/KCalendarCore/kcalendarcore/incidence.h include/KF5/KCalendarCore/kcalendarcore/incidencebase.h include/KF5/KCalendarCore/kcalendarcore/journal.h include/KF5/KCalendarCore/kcalendarcore/kcalendarcore_export.h include/KF5/KCalendarCore/kcalendarcore/memorycalendar.h include/KF5/KCalendarCore/kcalendarcore/occurrenceiterator.h include/KF5/KCalendarCore/kcalendarcore/period.h include/KF5/KCalendarCore/kcalendarcore/person.h include/KF5/KCalendarCore/kcalendarcore/recurrence.h include/KF5/KCalendarCore/kcalendarcore/recurrencerule.h include/KF5/KCalendarCore/kcalendarcore/schedulemessage.h include/KF5/KCalendarCore/kcalendarcore/sorting.h include/KF5/KCalendarCore/kcalendarcore/todo.h include/KF5/KCalendarCore/kcalendarcore/vcalformat.h include/KF5/KCalendarCore/kcalendarcore/visitor.h +include/KF5/kcalcore_version.h include/KF5/kcalendarcore_version.h lib/cmake/KF5CalendarCore/FindLibIcal.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreConfig.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreConfigVersion.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreTargets.cmake lib/libKF5CalendarCore.so lib/libKF5CalendarCore.so.5 lib/libKF5CalendarCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KCalendarCore.pri Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 511257) +++ head/net/kcalutils/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555746 -SHA256 (KDE/applications/19.08.0/kcalutils-19.08.0.tar.xz) = ce0cb6633d7f85fdfa54085710c421f0465b286e9236f55c0297737abdfbaf7e -SIZE (KDE/applications/19.08.0/kcalutils-19.08.0.tar.xz) = 323764 +TIMESTAMP = 1567537328 +SHA256 (KDE/applications/19.08.1/kcalutils-19.08.1.tar.xz) = b0f17fd7ced68d03666038ee97e6ca96bd504fc8b7f0ae9b53443cefb57558d7 +SIZE (KDE/applications/19.08.1/kcalutils-19.08.1.tar.xz) = 323668 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 511257) +++ head/net/kcontacts/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555746 -SHA256 (KDE/applications/19.08.0/kcontacts-19.08.0.tar.xz) = b245832fe6150a915d3bcbf1ec4c2c37b6aab541b2568f4955dcd76afa1c486e -SIZE (KDE/applications/19.08.0/kcontacts-19.08.0.tar.xz) = 547652 +TIMESTAMP = 1567537328 +SHA256 (KDE/applications/19.08.1/kcontacts-19.08.1.tar.xz) = 020177eb155d3df44314e89da1824916d125aab48131fce76c2131b40eae8f39 +SIZE (KDE/applications/19.08.1/kcontacts-19.08.1.tar.xz) = 547208 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 511257) +++ head/net/kdav/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555747 -SHA256 (KDE/applications/19.08.0/kdav-19.08.0.tar.xz) = 8bfd0657c0eaa74068c7601208baacb9d11bc6574cd353d4d346473c6c43b6f6 -SIZE (KDE/applications/19.08.0/kdav-19.08.0.tar.xz) = 49920 +TIMESTAMP = 1567537328 +SHA256 (KDE/applications/19.08.1/kdav-19.08.1.tar.xz) = 38f34f39e165ba3a843acbc9efc3296c111a6bfa8c5ba23e1f55f98860b84d41 +SIZE (KDE/applications/19.08.1/kdav-19.08.1.tar.xz) = 50084 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 511257) +++ head/net/kdenetwork-filesharing/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555747 -SHA256 (KDE/applications/19.08.0/kdenetwork-filesharing-19.08.0.tar.xz) = a7e2e7d79c7e6486e2d2efe8f85e2be2f6231ca5e4e49e2bd332befb9d6d4288 -SIZE (KDE/applications/19.08.0/kdenetwork-filesharing-19.08.0.tar.xz) = 315584 +TIMESTAMP = 1567537329 +SHA256 (KDE/applications/19.08.1/kdenetwork-filesharing-19.08.1.tar.xz) = b7d229d06926ad53dcffd4508fde70060260a03cdfc6b59551f5ea551274bdac +SIZE (KDE/applications/19.08.1/kdenetwork-filesharing-19.08.1.tar.xz) = 315280 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 511257) +++ head/net/kget/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555748 -SHA256 (KDE/applications/19.08.0/kget-19.08.0.tar.xz) = 4db589499c8e5fc3cbb5e398054b1292f68fa23ad1798f2bb2065ba56723d06b -SIZE (KDE/applications/19.08.0/kget-19.08.0.tar.xz) = 5233592 +TIMESTAMP = 1567537329 +SHA256 (KDE/applications/19.08.1/kget-19.08.1.tar.xz) = ecc9cc31f23304baa8c909335db57460460db27fbffb97438c1ed12703c6b9b9 +SIZE (KDE/applications/19.08.1/kget-19.08.1.tar.xz) = 5236100 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 511257) +++ head/net/kidentitymanagement/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555748 -SHA256 (KDE/applications/19.08.0/kidentitymanagement-19.08.0.tar.xz) = 9fe5c473af0d042b482f1d1dac499c1d8227b60a79f1b5678043f0f49f19013d -SIZE (KDE/applications/19.08.0/kidentitymanagement-19.08.0.tar.xz) = 149104 +TIMESTAMP = 1567537330 +SHA256 (KDE/applications/19.08.1/kidentitymanagement-19.08.1.tar.xz) = 3ff41eddf047fb1074473fd028b22ddd0fb467c062918148305f10c2fd74f42e +SIZE (KDE/applications/19.08.1/kidentitymanagement-19.08.1.tar.xz) = 148988 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 511257) +++ head/net/kimap/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555748 -SHA256 (KDE/applications/19.08.0/kimap-19.08.0.tar.xz) = d9e3af3e1bb03d929a08287b1a29540915d25dbb6a38d152560302c93e4c5060 -SIZE (KDE/applications/19.08.0/kimap-19.08.0.tar.xz) = 119804 +TIMESTAMP = 1567537330 +SHA256 (KDE/applications/19.08.1/kimap-19.08.1.tar.xz) = a4fde0c17fcdbc672b8e7ad6ed727e18b6bc2cc3c7f23857a6b1455d99999bbf +SIZE (KDE/applications/19.08.1/kimap-19.08.1.tar.xz) = 119712 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 511257) +++ head/net/kitinerary/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555749 -SHA256 (KDE/applications/19.08.0/kitinerary-19.08.0.tar.xz) = 76db853705b87015a934334985c216d11b48e853a3dd31429abb3bc6bd7f52e6 -SIZE (KDE/applications/19.08.0/kitinerary-19.08.0.tar.xz) = 951100 +TIMESTAMP = 1567537330 +SHA256 (KDE/applications/19.08.1/kitinerary-19.08.1.tar.xz) = f84dafa874c958b335ee80dbe85dce3605b40b83ac9468e6555250da8f480967 +SIZE (KDE/applications/19.08.1/kitinerary-19.08.1.tar.xz) = 952608 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 511257) +++ head/net/kldap/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555749 -SHA256 (KDE/applications/19.08.0/kldap-19.08.0.tar.xz) = 4bee7b041aff8e1a76330bde12ab9368176181136be1136c4b0c0b733eb9bc16 -SIZE (KDE/applications/19.08.0/kldap-19.08.0.tar.xz) = 155972 +TIMESTAMP = 1567537331 +SHA256 (KDE/applications/19.08.1/kldap-19.08.1.tar.xz) = b6fb822df67449870fb5c0bfe1adb1bd3d44535e3f2186ef6be286e4a590bd54 +SIZE (KDE/applications/19.08.1/kldap-19.08.1.tar.xz) = 155356 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 511257) +++ head/net/kmailtransport/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555749 -SHA256 (KDE/applications/19.08.0/kmailtransport-19.08.0.tar.xz) = cc5f865f2059e8fd8d45d1597d8483bbfe0b743e472d91dd4e7cc3837c3fa2dd -SIZE (KDE/applications/19.08.0/kmailtransport-19.08.0.tar.xz) = 166700 +TIMESTAMP = 1567537331 +SHA256 (KDE/applications/19.08.1/kmailtransport-19.08.1.tar.xz) = 521bcfd334a0e7e4986e6cebff3bae4095175a11fd45f777da673f1460d733da +SIZE (KDE/applications/19.08.1/kmailtransport-19.08.1.tar.xz) = 166148 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 511257) +++ head/net/kmbox/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555750 -SHA256 (KDE/applications/19.08.0/kmbox-19.08.0.tar.xz) = 6600033298b0d5ff84705dc66fa529156cb08aeda7503ba7890581b618f83228 -SIZE (KDE/applications/19.08.0/kmbox-19.08.0.tar.xz) = 24656 +TIMESTAMP = 1567537332 +SHA256 (KDE/applications/19.08.1/kmbox-19.08.1.tar.xz) = 5fa59ffd16df1ae28f7ebf026f67df708c5b84e54e1ab47fd5de957c5b8fc75e +SIZE (KDE/applications/19.08.1/kmbox-19.08.1.tar.xz) = 24644 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 511257) +++ head/net/kmime/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555750 -SHA256 (KDE/applications/19.08.0/kmime-19.08.0.tar.xz) = 1422e6235659b66b3ee5e91cdd732d8c3738d42f81435e69f3cbb18f04a0be75 -SIZE (KDE/applications/19.08.0/kmime-19.08.0.tar.xz) = 147000 +TIMESTAMP = 1567537332 +SHA256 (KDE/applications/19.08.1/kmime-19.08.1.tar.xz) = e8693458734f11a9d33a4d761f2b5ccae8f9ed87bb1e9dfc97f4bd0fa7089557 +SIZE (KDE/applications/19.08.1/kmime-19.08.1.tar.xz) = 147532 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 511257) +++ head/net/kontactinterface/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555750 -SHA256 (KDE/applications/19.08.0/kontactinterface-19.08.0.tar.xz) = e490fb4dc0e762d4f12a837ecbddc2f14276672d8f46d10029987222b372f3bc -SIZE (KDE/applications/19.08.0/kontactinterface-19.08.0.tar.xz) = 33216 +TIMESTAMP = 1567537332 +SHA256 (KDE/applications/19.08.1/kontactinterface-19.08.1.tar.xz) = adb5c380fd73102b84c72ea27975689dc289b0f5c8dd10f86bf0a857e00170be +SIZE (KDE/applications/19.08.1/kontactinterface-19.08.1.tar.xz) = 33088 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 511257) +++ head/net/kpimtextedit/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555751 -SHA256 (KDE/applications/19.08.0/kpimtextedit-19.08.0.tar.xz) = 45fcc5898e921c41eb28bb64ddd6d8240f4261360b9149a149ae4c281844dfcb -SIZE (KDE/applications/19.08.0/kpimtextedit-19.08.0.tar.xz) = 154276 +TIMESTAMP = 1567537333 +SHA256 (KDE/applications/19.08.1/kpimtextedit-19.08.1.tar.xz) = f7e0dc9c706c94fa74a561d42d41246eae57f60c03da1ec52f2311172052d7fe +SIZE (KDE/applications/19.08.1/kpimtextedit-19.08.1.tar.xz) = 154964 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 511257) +++ head/net/krdc/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555751 -SHA256 (KDE/applications/19.08.0/krdc-19.08.0.tar.xz) = 62c995dc1b6eabf2486d475ad089cb3e286d37c6927e4c5bd2455489f52a3e75 -SIZE (KDE/applications/19.08.0/krdc-19.08.0.tar.xz) = 1422936 +TIMESTAMP = 1567537333 +SHA256 (KDE/applications/19.08.1/krdc-19.08.1.tar.xz) = 319bccbc3c3274b89ae58679d063a303df4b95504b1bef97f925da70a0fbcbde +SIZE (KDE/applications/19.08.1/krdc-19.08.1.tar.xz) = 1422288 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 511257) +++ head/net/krfb/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565881975 -SHA256 (KDE/applications/19.08.0/krfb-19.08.0.tar.xz) = 1142e493a37ce867b069ac278215377b56061b2412ee2dd46b0db456fb1419d4 -SIZE (KDE/applications/19.08.0/krfb-19.08.0.tar.xz) = 1277200 +TIMESTAMP = 1567537343 +SHA256 (KDE/applications/19.08.1/krfb-19.08.1.tar.xz) = 3abe42f6e648f171fa38652fe03184725d1abcccf16bf1c1039ebada1f3c64c3 +SIZE (KDE/applications/19.08.1/krfb-19.08.1.tar.xz) = 1277356 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 511257) +++ head/net/ksmtp/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555752 -SHA256 (KDE/applications/19.08.0/ksmtp-19.08.0.tar.xz) = 2947d49f183fe25dc340dd3fa6145c85b1896c8adb08bab9966e1f99a927a003 -SIZE (KDE/applications/19.08.0/ksmtp-19.08.0.tar.xz) = 40308 +TIMESTAMP = 1567537344 +SHA256 (KDE/applications/19.08.1/ksmtp-19.08.1.tar.xz) = 71401abcbb6aedd2845c84bca65f77297722b3414f4d4caeaa6ac6b8f2edc46c +SIZE (KDE/applications/19.08.1/ksmtp-19.08.1.tar.xz) = 40536 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 511257) +++ head/net/ktnef/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555752 -SHA256 (KDE/applications/19.08.0/ktnef-19.08.0.tar.xz) = 54b2e09a872e8f8e4e8a1ef77975b1d063ef0d07999b1bf2a696675659e6d52f -SIZE (KDE/applications/19.08.0/ktnef-19.08.0.tar.xz) = 299500 +TIMESTAMP = 1567537344 +SHA256 (KDE/applications/19.08.1/ktnef-19.08.1.tar.xz) = bab23e40af2fe5ba2dd0be71687fbdd56d0868f2ef2a399721da88b12c65764f +SIZE (KDE/applications/19.08.1/ktnef-19.08.1.tar.xz) = 299668 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 511257) +++ head/net/libgravatar/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555752 -SHA256 (KDE/applications/19.08.0/libgravatar-19.08.0.tar.xz) = f8dd753abdc868623b878433c0b2ed53d4d4ab2cb62c69cb94c433e51cb713a9 -SIZE (KDE/applications/19.08.0/libgravatar-19.08.0.tar.xz) = 31116 +TIMESTAMP = 1567537344 +SHA256 (KDE/applications/19.08.1/libgravatar-19.08.1.tar.xz) = d39d6970b5113b2b805b048ca9b14770ab16d59c8ec755b0c5f6d4f7d6df73a2 +SIZE (KDE/applications/19.08.1/libgravatar-19.08.1.tar.xz) = 30896 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 511257) +++ head/net/libkgapi/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555753 -SHA256 (KDE/applications/19.08.0/libkgapi-19.08.0.tar.xz) = bc8a54e0997f4e3e0e840e350c6a9dee26582028415c5e9863d53a3280faa9f6 -SIZE (KDE/applications/19.08.0/libkgapi-19.08.0.tar.xz) = 234692 +TIMESTAMP = 1567537345 +SHA256 (KDE/applications/19.08.1/libkgapi-19.08.1.tar.xz) = 1ad2491348cc97f591aa681f7a649f2337c9a92e845980304c1110c69eecd579 +SIZE (KDE/applications/19.08.1/libkgapi-19.08.1.tar.xz) = 235536 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 511257) +++ head/net/libksieve/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555753 -SHA256 (KDE/applications/19.08.0/libksieve-19.08.0.tar.xz) = 48d0925a8dd0adfa6ccd4945b14e2e562b8855faa6bed43de0442a273fd41966 -SIZE (KDE/applications/19.08.0/libksieve-19.08.0.tar.xz) = 549424 +TIMESTAMP = 1567537345 +SHA256 (KDE/applications/19.08.1/libksieve-19.08.1.tar.xz) = ab384877148710e7de92e88a192f52beaad667804bbc641b63c21cfdaa0aee31 +SIZE (KDE/applications/19.08.1/libksieve-19.08.1.tar.xz) = 551404 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 511257) +++ head/net/mailcommon/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555753 -SHA256 (KDE/applications/19.08.0/mailcommon-19.08.0.tar.xz) = 6c69b70356d9d96578c3fd472aaa36e33feb0677d7e65c36981c0596daf3aea3 -SIZE (KDE/applications/19.08.0/mailcommon-19.08.0.tar.xz) = 692892 +TIMESTAMP = 1567537345 +SHA256 (KDE/applications/19.08.1/mailcommon-19.08.1.tar.xz) = 3fb6f09ce8bc9ccddfa1420fa1a7c60a47065afdfbb5a30292179efbcebba833 +SIZE (KDE/applications/19.08.1/mailcommon-19.08.1.tar.xz) = 692772 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 511257) +++ head/net/mailimporter/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555754 -SHA256 (KDE/applications/19.08.0/mailimporter-19.08.0.tar.xz) = 242f1a93b3521abc68ca8e1abfc75acd0b59e1e2d553df80a057645102246dd7 -SIZE (KDE/applications/19.08.0/mailimporter-19.08.0.tar.xz) = 539364 +TIMESTAMP = 1567537346 +SHA256 (KDE/applications/19.08.1/mailimporter-19.08.1.tar.xz) = 4236938a2dca5ea0bc572afbe76ae28fc6ad1e65f383743de98a4e505f674962 +SIZE (KDE/applications/19.08.1/mailimporter-19.08.1.tar.xz) = 540120 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 511257) +++ head/net/messagelib/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555754 -SHA256 (KDE/applications/19.08.0/messagelib-19.08.0.tar.xz) = 0797b11452874a1d8264f92e8cc6d6977f3b0416dc66ff558b124bf2a52b118d -SIZE (KDE/applications/19.08.0/messagelib-19.08.0.tar.xz) = 10364608 +TIMESTAMP = 1567537346 +SHA256 (KDE/applications/19.08.1/messagelib-19.08.1.tar.xz) = ec43d913028124a49eaa440e4b55dba23b6ab503728b897a3ad8e1fc5e446802 +SIZE (KDE/applications/19.08.1/messagelib-19.08.1.tar.xz) = 10372528 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 511257) +++ head/net/pimcommon/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555755 -SHA256 (KDE/applications/19.08.0/pimcommon-19.08.0.tar.xz) = 23be57010127831c3ad9b9475e467e8078ff92410c80609660498c5dc6fbaf9a -SIZE (KDE/applications/19.08.0/pimcommon-19.08.0.tar.xz) = 292816 +TIMESTAMP = 1567537347 +SHA256 (KDE/applications/19.08.1/pimcommon-19.08.1.tar.xz) = 5956e2767ea88efd73cbefef9cb80d16bb4cb5cb63857975fbb6ead1b984026c +SIZE (KDE/applications/19.08.1/pimcommon-19.08.1.tar.xz) = 293872 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 511257) +++ head/net/zeroconf-ioslave/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555755 -SHA256 (KDE/applications/19.08.0/zeroconf-ioslave-19.08.0.tar.xz) = 0fbe1e0d1c30cc570d96e6a5aa12692bd8e5d11bfd4b9af5077f4c5e80c8f183 -SIZE (KDE/applications/19.08.0/zeroconf-ioslave-19.08.0.tar.xz) = 39328 +TIMESTAMP = 1567537347 +SHA256 (KDE/applications/19.08.1/zeroconf-ioslave-19.08.1.tar.xz) = 0c5f8931dd2997345fc6d3e8ef73c36615a73f8c906fb6be9c27432bc038000a +SIZE (KDE/applications/19.08.1/zeroconf-ioslave-19.08.1.tar.xz) = 39148 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 511257) +++ head/net-im/kaccounts-integration/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555727 -SHA256 (KDE/applications/19.08.0/kaccounts-integration-19.08.0.tar.xz) = b6602a1270037c8c9dc366e3bf6ddf6d7dcd14ca66623e3ecc6641fd474c0d2a -SIZE (KDE/applications/19.08.0/kaccounts-integration-19.08.0.tar.xz) = 71808 +TIMESTAMP = 1567537309 +SHA256 (KDE/applications/19.08.1/kaccounts-integration-19.08.1.tar.xz) = 7436bb0c8e024122d7137971749ef975878dee557befa4b95bc02ce0801a8450 +SIZE (KDE/applications/19.08.1/kaccounts-integration-19.08.1.tar.xz) = 71916 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 511257) +++ head/net-im/kaccounts-providers/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555727 -SHA256 (KDE/applications/19.08.0/kaccounts-providers-19.08.0.tar.xz) = 9fc235e2140e76e4b95589a8a5b1e98f7aac00f4c9ad8ba774be0d0d360df8c3 -SIZE (KDE/applications/19.08.0/kaccounts-providers-19.08.0.tar.xz) = 31924 +TIMESTAMP = 1567537309 +SHA256 (KDE/applications/19.08.1/kaccounts-providers-19.08.1.tar.xz) = ce885be3c0d59b7f65373fbadc8ff4510998f9067d3a7c96dc1eb05df78b071b +SIZE (KDE/applications/19.08.1/kaccounts-providers-19.08.1.tar.xz) = 32048 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 511257) +++ head/net-im/kopete/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555738 -SHA256 (KDE/applications/19.08.0/kopete-19.08.0.tar.xz) = ef777cc2840db7fc462c3b00a8a289be3db3786ff16ae51ac9a988621848d7b7 -SIZE (KDE/applications/19.08.0/kopete-19.08.0.tar.xz) = 9379688 +TIMESTAMP = 1567537320 +SHA256 (KDE/applications/19.08.1/kopete-19.08.1.tar.xz) = c4943c5cbb384eb8697668be2a38dcc0dc16f26485a38c3657658c1cc4dbd2a8 +SIZE (KDE/applications/19.08.1/kopete-19.08.1.tar.xz) = 9384280 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 511257) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555738 -SHA256 (KDE/applications/19.08.0/ktp-accounts-kcm-19.08.0.tar.xz) = f849b7a9b2cee5b328e726dd254b1e606b740e5b75cdc59a1ea18601e131c0b5 -SIZE (KDE/applications/19.08.0/ktp-accounts-kcm-19.08.0.tar.xz) = 264852 +TIMESTAMP = 1567537320 +SHA256 (KDE/applications/19.08.1/ktp-accounts-kcm-19.08.1.tar.xz) = 2f76fc870bd7a96540aa91054b3cac38b917f90c129fada86c3639815dfa27a5 +SIZE (KDE/applications/19.08.1/ktp-accounts-kcm-19.08.1.tar.xz) = 264964 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 511257) +++ head/net-im/ktp-approver/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555738 -SHA256 (KDE/applications/19.08.0/ktp-approver-19.08.0.tar.xz) = 8662a7b3e4f67a5ed2faa12187faef9dd7e056ee9f2d4b69d68f7a381e258e85 -SIZE (KDE/applications/19.08.0/ktp-approver-19.08.0.tar.xz) = 37504 +TIMESTAMP = 1567537320 +SHA256 (KDE/applications/19.08.1/ktp-approver-19.08.1.tar.xz) = a446c23836f6e38bb739246595cf1773f4909279cf1522b96ccd6626ba36430a +SIZE (KDE/applications/19.08.1/ktp-approver-19.08.1.tar.xz) = 37396 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 511257) +++ head/net-im/ktp-auth-handler/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555739 -SHA256 (KDE/applications/19.08.0/ktp-auth-handler-19.08.0.tar.xz) = 5674ebf51565854262b5ae0a5fbf8d0837c87b016ea5b32f56f96aa8583a7e39 -SIZE (KDE/applications/19.08.0/ktp-auth-handler-19.08.0.tar.xz) = 46592 +TIMESTAMP = 1567537321 +SHA256 (KDE/applications/19.08.1/ktp-auth-handler-19.08.1.tar.xz) = 9a86ce184596cd54b914a7ff0424cadbee24b98f00b8736380e4153ee8596f64 +SIZE (KDE/applications/19.08.1/ktp-auth-handler-19.08.1.tar.xz) = 46424 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 511257) +++ head/net-im/ktp-call-ui/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555739 -SHA256 (KDE/applications/19.08.0/ktp-call-ui-19.08.0.tar.xz) = 1f7922a1920770decfd3e17aaf42e46db60b5c3660efc544a9be743d9a85d08f -SIZE (KDE/applications/19.08.0/ktp-call-ui-19.08.0.tar.xz) = 97480 +TIMESTAMP = 1567537321 +SHA256 (KDE/applications/19.08.1/ktp-call-ui-19.08.1.tar.xz) = bab48fcdc4f4a7becfeca99dbe9061b9d08a510f94548c6ebdf720100ddb5a4c +SIZE (KDE/applications/19.08.1/ktp-call-ui-19.08.1.tar.xz) = 96980 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 511257) +++ head/net-im/ktp-common-internals/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555740 -SHA256 (KDE/applications/19.08.0/ktp-common-internals-19.08.0.tar.xz) = bdbf20e4e0ad7ba7bdc76a0087ff7307cf813c711da6fba3acb0104756ef1559 -SIZE (KDE/applications/19.08.0/ktp-common-internals-19.08.0.tar.xz) = 445160 +TIMESTAMP = 1567537321 +SHA256 (KDE/applications/19.08.1/ktp-common-internals-19.08.1.tar.xz) = 985d55a259df9cb0593db50ac88bd5d3ab155c6e26563386230fe66294c3dc63 +SIZE (KDE/applications/19.08.1/ktp-common-internals-19.08.1.tar.xz) = 444964 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 511257) +++ head/net-im/ktp-contact-list/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555740 -SHA256 (KDE/applications/19.08.0/ktp-contact-list-19.08.0.tar.xz) = e6ba69a5a8a6b841e5babd8cb7ddb0a799d34b881ab4bdd0495062a23e59d3e1 -SIZE (KDE/applications/19.08.0/ktp-contact-list-19.08.0.tar.xz) = 147820 +TIMESTAMP = 1567537322 +SHA256 (KDE/applications/19.08.1/ktp-contact-list-19.08.1.tar.xz) = a3ade7f7bacd53c90062923b488a7f60968a45d6d63890a618638f514dd3a5b2 +SIZE (KDE/applications/19.08.1/ktp-contact-list-19.08.1.tar.xz) = 149164 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 511257) +++ head/net-im/ktp-contact-runner/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555740 -SHA256 (KDE/applications/19.08.0/ktp-contact-runner-19.08.0.tar.xz) = 2a90784f7f266399c41a2b64cdb4ae748fca6739c026beed6bfef91b037c2b28 -SIZE (KDE/applications/19.08.0/ktp-contact-runner-19.08.0.tar.xz) = 43008 +TIMESTAMP = 1567537322 +SHA256 (KDE/applications/19.08.1/ktp-contact-runner-19.08.1.tar.xz) = 385bc8bebb7847cefdd17738ecaf03b102794ac7f38dc58ebe10d100385b769f +SIZE (KDE/applications/19.08.1/ktp-contact-runner-19.08.1.tar.xz) = 42856 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 511257) +++ head/net-im/ktp-desktop-applets/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555741 -SHA256 (KDE/applications/19.08.0/ktp-desktop-applets-19.08.0.tar.xz) = 56562f335767e1071b36e7e31474a371b862785babeb4f5181b48065f6513221 -SIZE (KDE/applications/19.08.0/ktp-desktop-applets-19.08.0.tar.xz) = 43508 +TIMESTAMP = 1567537322 +SHA256 (KDE/applications/19.08.1/ktp-desktop-applets-19.08.1.tar.xz) = ec26ba5893998f1e5c293d40e5410a7170ae4e0dea46f03bd5241c51c3240951 +SIZE (KDE/applications/19.08.1/ktp-desktop-applets-19.08.1.tar.xz) = 43428 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 511257) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555741 -SHA256 (KDE/applications/19.08.0/ktp-filetransfer-handler-19.08.0.tar.xz) = a3a298058e5f6d135abac474a4cd788cea16ccfb4763948f007b6f769fd47de4 -SIZE (KDE/applications/19.08.0/ktp-filetransfer-handler-19.08.0.tar.xz) = 46104 +TIMESTAMP = 1567537323 +SHA256 (KDE/applications/19.08.1/ktp-filetransfer-handler-19.08.1.tar.xz) = 34f7eed85709524efaa89924de85842c3532b1ade8572fe28dc2e8ce3f6026eb +SIZE (KDE/applications/19.08.1/ktp-filetransfer-handler-19.08.1.tar.xz) = 46200 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 511257) +++ head/net-im/ktp-kded-module/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555741 -SHA256 (KDE/applications/19.08.0/ktp-kded-module-19.08.0.tar.xz) = a225a4e16cb18b19c5750d27c7a3834bbbe362c40c7cad8a9e500488682d67cc -SIZE (KDE/applications/19.08.0/ktp-kded-module-19.08.0.tar.xz) = 96220 +TIMESTAMP = 1567537323 +SHA256 (KDE/applications/19.08.1/ktp-kded-module-19.08.1.tar.xz) = 323b538c08da82aaf66503463b4334bc603a37bb358fa6f1d5794562c05eed4f +SIZE (KDE/applications/19.08.1/ktp-kded-module-19.08.1.tar.xz) = 97344 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 511257) +++ head/net-im/ktp-send-file/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555742 -SHA256 (KDE/applications/19.08.0/ktp-send-file-19.08.0.tar.xz) = d69e48d1f69e04618c97f8e83e8909e97d3f1793fff41277bb883885a8c9da8f -SIZE (KDE/applications/19.08.0/ktp-send-file-19.08.0.tar.xz) = 28980 +TIMESTAMP = 1567537323 +SHA256 (KDE/applications/19.08.1/ktp-send-file-19.08.1.tar.xz) = 1e4f9348dab9546d344d00783d6a5ad93b9b299b96d551dd09325c95932cbcd2 +SIZE (KDE/applications/19.08.1/ktp-send-file-19.08.1.tar.xz) = 28948 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 511257) +++ head/net-im/ktp-text-ui/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555742 -SHA256 (KDE/applications/19.08.0/ktp-text-ui-19.08.0.tar.xz) = 1858215d519efdcf4a0e4ef771e0d0a33f7c918ce2b70fbc95a56b61d240855a -SIZE (KDE/applications/19.08.0/ktp-text-ui-19.08.0.tar.xz) = 471104 +TIMESTAMP = 1567537324 +SHA256 (KDE/applications/19.08.1/ktp-text-ui-19.08.1.tar.xz) = 21c9c58bd498623a6bc9bbfa01c82548af29fdf7f690a359eb57ccd9a3de3105 +SIZE (KDE/applications/19.08.1/ktp-text-ui-19.08.1.tar.xz) = 471916 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 511257) +++ head/print/print-manager/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555755 -SHA256 (KDE/applications/19.08.0/print-manager-19.08.0.tar.xz) = 56fe89f6bc3be64848adee20a22c712ba8f72602e28fb3288cd5328797e32c7b -SIZE (KDE/applications/19.08.0/print-manager-19.08.0.tar.xz) = 241252 +TIMESTAMP = 1567537347 +SHA256 (KDE/applications/19.08.1/print-manager-19.08.1.tar.xz) = b1fd9aa067329a4f5bb715e7db736160954bbec303be0ba5bc8f98852071e731 +SIZE (KDE/applications/19.08.1/print-manager-19.08.1.tar.xz) = 245276 Index: head/print/print-manager/pkg-plist =================================================================== --- head/print/print-manager/pkg-plist (revision 511257) +++ head/print/print-manager/pkg-plist (revision 511258) @@ -1,115 +1,117 @@ bin/configure-printer bin/kde-add-printer bin/kde-print-queue lib/libkcupslib.so %%QT_PLUGINDIR%%/kcm_printer_manager.so %%QT_PLUGINDIR%%/kded_printmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/libprintmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/org.kde.ConfigurePrinter.desktop share/applications/org.kde.PrintQueue.desktop share/applications/org.kde.kde-add-printer.desktop share/knotifications5/printmanager.notifyrc share/kservices5/kcm_printer_manager.desktop share/kservices5/kded/printmanager.desktop share/kservices5/plasma-applet-org.kde.plasma.printmanager.desktop share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ar/LC_MESSAGES/print-manager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bg/LC_MESSAGES/print-manager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bs/LC_MESSAGES/print-manager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca/LC_MESSAGES/print-manager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca@valencia/LC_MESSAGES/print-manager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/cs/LC_MESSAGES/print-manager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/da/LC_MESSAGES/print-manager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/de/LC_MESSAGES/print-manager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/el/LC_MESSAGES/print-manager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/en_GB/LC_MESSAGES/print-manager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/es/LC_MESSAGES/print-manager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/et/LC_MESSAGES/print-manager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eu/LC_MESSAGES/print-manager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fi/LC_MESSAGES/print-manager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fr/LC_MESSAGES/print-manager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ga/LC_MESSAGES/print-manager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/gl/LC_MESSAGES/print-manager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/print-manager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ia/LC_MESSAGES/print-manager.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/id/LC_MESSAGES/print-manager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/it/LC_MESSAGES/print-manager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ja/LC_MESSAGES/print-manager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/kk/LC_MESSAGES/print-manager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/km/LC_MESSAGES/print-manager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ko/LC_MESSAGES/print-manager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lt/LC_MESSAGES/print-manager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/mr/LC_MESSAGES/print-manager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nb/LC_MESSAGES/print-manager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nds/LC_MESSAGES/print-manager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nl/LC_MESSAGES/print-manager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nn/LC_MESSAGES/print-manager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pa/LC_MESSAGES/print-manager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pl/LC_MESSAGES/print-manager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt/LC_MESSAGES/print-manager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt_BR/LC_MESSAGES/print-manager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ro/LC_MESSAGES/print-manager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ru/LC_MESSAGES/print-manager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sk/LC_MESSAGES/print-manager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sl/LC_MESSAGES/print-manager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr/LC_MESSAGES/print-manager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sv/LC_MESSAGES/print-manager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tr/LC_MESSAGES/print-manager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ug/LC_MESSAGES/print-manager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/uk/LC_MESSAGES/print-manager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_CN/LC_MESSAGES/print-manager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_TW/LC_MESSAGES/print-manager.mo share/metainfo/org.kde.plasma.printmanager.appdata.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PrinterItem.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/StatusView.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/config.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/printmanager.qml share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.json Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 511257) +++ head/science/kalzium/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555766 -SHA256 (KDE/applications/19.08.0/kalzium-19.08.0.tar.xz) = 0dac199871b8d01890b8959cd5c4776eb2f938f7fb4a558b23364f9dd8e15111 -SIZE (KDE/applications/19.08.0/kalzium-19.08.0.tar.xz) = 26415160 +TIMESTAMP = 1567537358 +SHA256 (KDE/applications/19.08.1/kalzium-19.08.1.tar.xz) = 2519866172476bec297e9d02ff917b1c676b980edc2f20a9c3297bc255e045f0 +SIZE (KDE/applications/19.08.1/kalzium-19.08.1.tar.xz) = 26415720 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 511257) +++ head/science/step/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555766 -SHA256 (KDE/applications/19.08.0/step-19.08.0.tar.xz) = 7a2dc38617822c8118c721ccaaa9907ec3e109eacf57e46b599c6731b325a993 -SIZE (KDE/applications/19.08.0/step-19.08.0.tar.xz) = 871544 +TIMESTAMP = 1567537358 +SHA256 (KDE/applications/19.08.1/step-19.08.1.tar.xz) = 533750dda4adcd0f3d8ec269103f35ee1ab4b4e9eae9721522b1b278660577a6 +SIZE (KDE/applications/19.08.1/step-19.08.1.tar.xz) = 869968 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 511257) +++ head/science/step/pkg-plist (revision 511258) @@ -1,231 +1,232 @@ bin/step etc/xdg/step.knsrc share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml +share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/wave.step %%DATADIR%%/objinfo/Anchor.html %%DATADIR%%/objinfo/Box.html %%DATADIR%%/objinfo/ChargedParticle.html %%DATADIR%%/objinfo/CoulombForce.html %%DATADIR%%/objinfo/Disk.html %%DATADIR%%/objinfo/Gas.html %%DATADIR%%/objinfo/GasLJForce.html %%DATADIR%%/objinfo/GasParticle.html %%DATADIR%%/objinfo/GravitationForce.html %%DATADIR%%/objinfo/LinearMotor.html %%DATADIR%%/objinfo/Meter.html %%DATADIR%%/objinfo/Note.html %%DATADIR%%/objinfo/Particle.html %%DATADIR%%/objinfo/Pin.html %%DATADIR%%/objinfo/Polygon.html %%DATADIR%%/objinfo/Spring.html %%DATADIR%%/objinfo/WeightForce.html %%DATADIR%%/objinfo/World.html %%DATADIR%%/objinfo/l10n/de/Anchor.html %%DATADIR%%/objinfo/l10n/de/Box.html %%DATADIR%%/objinfo/l10n/de/ChargedParticle.html %%DATADIR%%/objinfo/l10n/de/CoulombForce.html %%DATADIR%%/objinfo/l10n/de/Disk.html %%DATADIR%%/objinfo/l10n/de/Gas.html %%DATADIR%%/objinfo/l10n/de/GasLJForce.html %%DATADIR%%/objinfo/l10n/de/GasParticle.html %%DATADIR%%/objinfo/l10n/de/GravitationForce.html %%DATADIR%%/objinfo/l10n/de/LinearMotor.html %%DATADIR%%/objinfo/l10n/de/Meter.html %%DATADIR%%/objinfo/l10n/de/Note.html %%DATADIR%%/objinfo/l10n/de/Particle.html %%DATADIR%%/objinfo/l10n/de/Pin.html %%DATADIR%%/objinfo/l10n/de/Polygon.html %%DATADIR%%/objinfo/l10n/de/Spring.html %%DATADIR%%/objinfo/l10n/de/WeightForce.html %%DATADIR%%/objinfo/l10n/de/World.html %%DATADIR%%/objinfo/l10n/it/Box.html %%DATADIR%%/objinfo/l10n/it/ChargedParticle.html %%DATADIR%%/objinfo/l10n/it/Disk.html %%DATADIR%%/objinfo/l10n/it/Gas.html %%DATADIR%%/objinfo/l10n/it/GasParticle.html %%DATADIR%%/objinfo/l10n/it/Meter.html %%DATADIR%%/objinfo/l10n/it/Note.html %%DATADIR%%/objinfo/l10n/it/Particle.html %%DATADIR%%/objinfo/l10n/it/Polygon.html %%DATADIR%%/objinfo/l10n/it/Spring.html %%DATADIR%%/objinfo/l10n/it/World.html %%DATADIR%%/objinfo/l10n/uk/Anchor.html %%DATADIR%%/objinfo/l10n/uk/Box.html %%DATADIR%%/objinfo/l10n/uk/ChargedParticle.html %%DATADIR%%/objinfo/l10n/uk/CoulombForce.html %%DATADIR%%/objinfo/l10n/uk/Disk.html %%DATADIR%%/objinfo/l10n/uk/Gas.html %%DATADIR%%/objinfo/l10n/uk/GasLJForce.html %%DATADIR%%/objinfo/l10n/uk/GasParticle.html %%DATADIR%%/objinfo/l10n/uk/GravitationForce.html %%DATADIR%%/objinfo/l10n/uk/LinearMotor.html %%DATADIR%%/objinfo/l10n/uk/Meter.html %%DATADIR%%/objinfo/l10n/uk/Note.html %%DATADIR%%/objinfo/l10n/uk/Particle.html %%DATADIR%%/objinfo/l10n/uk/Pin.html %%DATADIR%%/objinfo/l10n/uk/Polygon.html %%DATADIR%%/objinfo/l10n/uk/Spring.html %%DATADIR%%/objinfo/l10n/uk/WeightForce.html %%DATADIR%%/objinfo/l10n/uk/World.html %%DATADIR%%/objinfo/l10n/ru/Anchor.html %%DATADIR%%/objinfo/l10n/ru/Box.html %%DATADIR%%/objinfo/l10n/ru/ChargedParticle.html %%DATADIR%%/objinfo/l10n/ru/CoulombForce.html %%DATADIR%%/objinfo/l10n/ru/Disk.html %%DATADIR%%/objinfo/l10n/ru/Gas.html %%DATADIR%%/objinfo/l10n/ru/GasLJForce.html %%DATADIR%%/objinfo/l10n/ru/GasParticle.html %%DATADIR%%/objinfo/l10n/ru/GravitationForce.html %%DATADIR%%/objinfo/l10n/ru/LinearMotor.html %%DATADIR%%/objinfo/l10n/ru/Meter.html %%DATADIR%%/objinfo/l10n/ru/Note.html %%DATADIR%%/objinfo/l10n/ru/Particle.html %%DATADIR%%/objinfo/l10n/ru/Pin.html %%DATADIR%%/objinfo/l10n/ru/Polygon.html %%DATADIR%%/objinfo/l10n/ru/Spring.html %%DATADIR%%/objinfo/l10n/ru/WeightForce.html %%DATADIR%%/objinfo/l10n/ru/World.html %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 511257) +++ head/security/kgpg/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555766 -SHA256 (KDE/applications/19.08.0/kgpg-19.08.0.tar.xz) = 3aa31f524c7f8ab50a86d83066590b98cd4ffbeb94b5a6fb7dadec9fe3072845 -SIZE (KDE/applications/19.08.0/kgpg-19.08.0.tar.xz) = 2787784 +TIMESTAMP = 1567537359 +SHA256 (KDE/applications/19.08.1/kgpg-19.08.1.tar.xz) = 441a0bfa58df14bad87f5f446b89113dc20365424f6a87aec30125c9221815c5 +SIZE (KDE/applications/19.08.1/kgpg-19.08.1.tar.xz) = 2786832 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 511257) +++ head/security/kleopatra/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555767 -SHA256 (KDE/applications/19.08.0/kleopatra-19.08.0.tar.xz) = 161e6f7cf39aadfc856446642bf4c95c97b21647ba90698b17ab557e9c9e70ef -SIZE (KDE/applications/19.08.0/kleopatra-19.08.0.tar.xz) = 1927512 +TIMESTAMP = 1567537359 +SHA256 (KDE/applications/19.08.1/kleopatra-19.08.1.tar.xz) = ef63fbe1a24a24b8c6b491fe19e0bebd9518a2e1340a9dfee7215eb3740369c7 +SIZE (KDE/applications/19.08.1/kleopatra-19.08.1.tar.xz) = 1925612 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 511257) +++ head/security/kpkpass/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555767 -SHA256 (KDE/applications/19.08.0/kpkpass-19.08.0.tar.xz) = 1555856e987d3667eea8a210e3dd592742ca953dfa2d381e50bc9670183e7137 -SIZE (KDE/applications/19.08.0/kpkpass-19.08.0.tar.xz) = 23336 +TIMESTAMP = 1567537360 +SHA256 (KDE/applications/19.08.1/kpkpass-19.08.1.tar.xz) = 893ee1f127c2d0c7135fe77c5c2895d04f95c9a6ed3b162c30856f4e99d4afb3 +SIZE (KDE/applications/19.08.1/kpkpass-19.08.1.tar.xz) = 23260 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 511257) +++ head/security/kwalletmanager/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555768 -SHA256 (KDE/applications/19.08.0/kwalletmanager-19.08.0.tar.xz) = aaf6c646cc8e7387dc034636fb94029fc0fda3c7fc89b6b633dc42349fd0a471 -SIZE (KDE/applications/19.08.0/kwalletmanager-19.08.0.tar.xz) = 786956 +TIMESTAMP = 1567537360 +SHA256 (KDE/applications/19.08.1/kwalletmanager-19.08.1.tar.xz) = b6206da5001f79b67264f641210925b0400b41dc59562b978d402b9524835c14 +SIZE (KDE/applications/19.08.1/kwalletmanager-19.08.1.tar.xz) = 785980 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 511257) +++ head/security/libkleo/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555768 -SHA256 (KDE/applications/19.08.0/libkleo-19.08.0.tar.xz) = a0a022f3da4d8f73c020ab55221c74d5c1590b2cbdb3b754218be17622a59cc6 -SIZE (KDE/applications/19.08.0/libkleo-19.08.0.tar.xz) = 337728 +TIMESTAMP = 1567537360 +SHA256 (KDE/applications/19.08.1/libkleo-19.08.1.tar.xz) = 5808a40d9c9358048d558a4c96f90e8c51b2dab3588ab3c678b02d5810020a31 +SIZE (KDE/applications/19.08.1/libkleo-19.08.1.tar.xz) = 338772 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 511257) +++ head/sysutils/baloo-widgets/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555768 -SHA256 (KDE/applications/19.08.0/baloo-widgets-19.08.0.tar.xz) = 3ef81f74ce6fccd6eaf60e0dfd18fe660ac357e75c4715801da9bb3a203a6008 -SIZE (KDE/applications/19.08.0/baloo-widgets-19.08.0.tar.xz) = 261580 +TIMESTAMP = 1567537361 +SHA256 (KDE/applications/19.08.1/baloo-widgets-19.08.1.tar.xz) = 83429a70de735edc4714dc1b6f1a5a8c7d3d68a93165e98d2cadeecafa82af7b +SIZE (KDE/applications/19.08.1/baloo-widgets-19.08.1.tar.xz) = 262056 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 511257) +++ head/sysutils/baloo-widgets/pkg-plist (revision 511258) @@ -1,66 +1,66 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 -lib/libKF5BalooWidgets.so.19.8.0 +lib/libKF5BalooWidgets.so.19.8.1 %%QT_PLUGINDIR%%/baloofilepropertiesplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/tagsfileitemaction.so share/kservices5/baloofilepropertiesplugin.desktop share/locale/ar/LC_MESSAGES/baloowidgets5.mo share/locale/ast/LC_MESSAGES/baloowidgets5.mo share/locale/bg/LC_MESSAGES/baloowidgets5.mo share/locale/bs/LC_MESSAGES/baloowidgets5.mo share/locale/ca/LC_MESSAGES/baloowidgets5.mo share/locale/ca@valencia/LC_MESSAGES/baloowidgets5.mo share/locale/cs/LC_MESSAGES/baloowidgets5.mo share/locale/da/LC_MESSAGES/baloowidgets5.mo share/locale/de/LC_MESSAGES/baloowidgets5.mo share/locale/el/LC_MESSAGES/baloowidgets5.mo share/locale/en_GB/LC_MESSAGES/baloowidgets5.mo share/locale/es/LC_MESSAGES/baloowidgets5.mo share/locale/et/LC_MESSAGES/baloowidgets5.mo share/locale/eu/LC_MESSAGES/baloowidgets5.mo share/locale/fi/LC_MESSAGES/baloowidgets5.mo share/locale/fr/LC_MESSAGES/baloowidgets5.mo share/locale/ga/LC_MESSAGES/baloowidgets5.mo share/locale/gl/LC_MESSAGES/baloowidgets5.mo share/locale/he/LC_MESSAGES/baloowidgets5.mo share/locale/hu/LC_MESSAGES/baloowidgets5.mo share/locale/ia/LC_MESSAGES/baloowidgets5.mo share/locale/id/LC_MESSAGES/baloowidgets5.mo share/locale/it/LC_MESSAGES/baloowidgets5.mo share/locale/ja/LC_MESSAGES/baloowidgets5.mo share/locale/kk/LC_MESSAGES/baloowidgets5.mo share/locale/ko/LC_MESSAGES/baloowidgets5.mo share/locale/lt/LC_MESSAGES/baloowidgets5.mo share/locale/ml/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 511257) +++ head/sysutils/filelight/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555769 -SHA256 (KDE/applications/19.08.0/filelight-19.08.0.tar.xz) = bdd3d32f6666b3d2fa4c614f5f058571c8849484e1ba17a97996680503f8e8e6 -SIZE (KDE/applications/19.08.0/filelight-19.08.0.tar.xz) = 660584 +TIMESTAMP = 1567537361 +SHA256 (KDE/applications/19.08.1/filelight-19.08.1.tar.xz) = 170e633e0d2f8c9b13cccfd5957590100be435f9e7258e84c6f15fabc636768e +SIZE (KDE/applications/19.08.1/filelight-19.08.1.tar.xz) = 660520 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 511257) +++ head/sysutils/k3b/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555769 -SHA256 (KDE/applications/19.08.0/k3b-19.08.0.tar.xz) = 6a740724945496395cea1b5850ea9567a9aa9cc8a28c5366c9709b4226dc4b10 -SIZE (KDE/applications/19.08.0/k3b-19.08.0.tar.xz) = 10499140 +TIMESTAMP = 1567537361 +SHA256 (KDE/applications/19.08.1/k3b-19.08.1.tar.xz) = 8995f39457932fb6597f0f6124e0dfe09ecb2a25a6ec8506ce3ef870da293749 +SIZE (KDE/applications/19.08.1/k3b-19.08.1.tar.xz) = 10513924 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 511257) +++ head/sysutils/kbackup/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555769 -SHA256 (KDE/applications/19.08.0/kbackup-19.08.0.tar.xz) = 2cd447ef7d53e7ee55868086e7a894f550fd81515cf5d87d0561520f45145127 -SIZE (KDE/applications/19.08.0/kbackup-19.08.0.tar.xz) = 358300 +TIMESTAMP = 1567537362 +SHA256 (KDE/applications/19.08.1/kbackup-19.08.1.tar.xz) = 93ec83cdb8cb1ad28f444f85aaec2270fbbf3108b3ce0cf22f42a737e0f9cc59 +SIZE (KDE/applications/19.08.1/kbackup-19.08.1.tar.xz) = 358372 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 511257) +++ head/sysutils/kcron/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555770 -SHA256 (KDE/applications/19.08.0/kcron-19.08.0.tar.xz) = 1594aafc964d8e6c9ff31056d8f6f9ca6ee51ef9067b3ee1c991744baf54a88c -SIZE (KDE/applications/19.08.0/kcron-19.08.0.tar.xz) = 888212 +TIMESTAMP = 1567537362 +SHA256 (KDE/applications/19.08.1/kcron-19.08.1.tar.xz) = e60eb14cb2aef0b0398088930102d68817c96a83c54895af6626693fc18c7ed9 +SIZE (KDE/applications/19.08.1/kcron-19.08.1.tar.xz) = 888216 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 511257) +++ head/sysutils/kdebugsettings/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555770 -SHA256 (KDE/applications/19.08.0/kdebugsettings-19.08.0.tar.xz) = b47987cabffe464c21c96b31991643efafc24f77d31b768ed9dff075567aa361 -SIZE (KDE/applications/19.08.0/kdebugsettings-19.08.0.tar.xz) = 55400 +TIMESTAMP = 1567537362 +SHA256 (KDE/applications/19.08.1/kdebugsettings-19.08.1.tar.xz) = 4195a000558b56d849eb6e79880c5140fc30cd8b0657d4a9932035434f4c2649 +SIZE (KDE/applications/19.08.1/kdebugsettings-19.08.1.tar.xz) = 55140 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 511257) +++ head/sysutils/kdf/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555770 -SHA256 (KDE/applications/19.08.0/kdf-19.08.0.tar.xz) = e6effd6aaf08c9bfa649b194313e7719b65a9d53f00570e14d2752ce68d13bfe -SIZE (KDE/applications/19.08.0/kdf-19.08.0.tar.xz) = 461884 +TIMESTAMP = 1567537363 +SHA256 (KDE/applications/19.08.1/kdf-19.08.1.tar.xz) = 2aedb0a4f64d2417728b67e4a289488b59153683d5dd15bca259a64f9c51325e +SIZE (KDE/applications/19.08.1/kdf-19.08.1.tar.xz) = 461904 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 511257) +++ head/sysutils/kdialog/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555771 -SHA256 (KDE/applications/19.08.0/kdialog-19.08.0.tar.xz) = dc60f9ea0c59435b0da37f4bc50716d43ebfb9b9d0b05955c96393e6d06ea687 -SIZE (KDE/applications/19.08.0/kdialog-19.08.0.tar.xz) = 102564 +TIMESTAMP = 1567537373 +SHA256 (KDE/applications/19.08.1/kdialog-19.08.1.tar.xz) = 6b2ed8636d50d13104b0029f33b11943d6f7087297ad089d61c76a57d3b425a0 +SIZE (KDE/applications/19.08.1/kdialog-19.08.1.tar.xz) = 102712 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 511257) +++ head/sysutils/kfloppy/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555771 -SHA256 (KDE/applications/19.08.0/kfloppy-19.08.0.tar.xz) = 312345286fa1dba2cac782523d95c1e4ed0d7ef272c93c5d7bf2f9d8f635fa82 -SIZE (KDE/applications/19.08.0/kfloppy-19.08.0.tar.xz) = 198720 +TIMESTAMP = 1567537373 +SHA256 (KDE/applications/19.08.1/kfloppy-19.08.1.tar.xz) = c22864e0dfef37ccb9a5329467b9058a14880e88b54c448b5933b57aa98b021b +SIZE (KDE/applications/19.08.1/kfloppy-19.08.1.tar.xz) = 199248 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 511257) +++ head/sysutils/khelpcenter/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555782 -SHA256 (KDE/applications/19.08.0/khelpcenter-19.08.0.tar.xz) = 36810c12ae5d163738101b0f5f13c03cda03ee4c157f641df0f73105a894644f -SIZE (KDE/applications/19.08.0/khelpcenter-19.08.0.tar.xz) = 3845972 +TIMESTAMP = 1567537384 +SHA256 (KDE/applications/19.08.1/khelpcenter-19.08.1.tar.xz) = ae3243fcdc1281937772a091d902adaba0681abe82c222bf7ef895df0899ab63 +SIZE (KDE/applications/19.08.1/khelpcenter-19.08.1.tar.xz) = 3847968 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 511257) +++ head/sysutils/ksystemlog/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555782 -SHA256 (KDE/applications/19.08.0/ksystemlog-19.08.0.tar.xz) = 1231a9dd9a697fe2379a93a3a4d5c026aedf70a8f7e14d8a626ef6b782fb4259 -SIZE (KDE/applications/19.08.0/ksystemlog-19.08.0.tar.xz) = 1927060 +TIMESTAMP = 1567537384 +SHA256 (KDE/applications/19.08.1/ksystemlog-19.08.1.tar.xz) = 7dde2a350b32011027d6ab9648859218a053c5509ad08bce8c2de875d2ae73db +SIZE (KDE/applications/19.08.1/ksystemlog-19.08.1.tar.xz) = 1927520 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 511257) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555782 -SHA256 (KDE/applications/19.08.0/signon-kwallet-extension-19.08.0.tar.xz) = f8cd646365f82c82de6c9f2dda8250579a2e469504e4358a334786f8f8e8b61f -SIZE (KDE/applications/19.08.0/signon-kwallet-extension-19.08.0.tar.xz) = 10616 +TIMESTAMP = 1567537385 +SHA256 (KDE/applications/19.08.1/signon-kwallet-extension-19.08.1.tar.xz) = 7d558509cf015641c76d4203c8dadc4e9720278fb39b4561eb2bce4e5412bb83 +SIZE (KDE/applications/19.08.1/signon-kwallet-extension-19.08.1.tar.xz) = 10612 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 511257) +++ head/sysutils/sweeper/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555783 -SHA256 (KDE/applications/19.08.0/sweeper-19.08.0.tar.xz) = 3cab8817b5c52bd0064e49e6062d3295328604d96e355779a766075d5ae10764 -SIZE (KDE/applications/19.08.0/sweeper-19.08.0.tar.xz) = 368892 +TIMESTAMP = 1567537385 +SHA256 (KDE/applications/19.08.1/sweeper-19.08.1.tar.xz) = cc539649fa4a2698ad07653f9427981381bf8b5344f05dab76acdf1704b4479a +SIZE (KDE/applications/19.08.1/sweeper-19.08.1.tar.xz) = 368528 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 511257) +++ head/textproc/kompare/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555783 -SHA256 (KDE/applications/19.08.0/kompare-19.08.0.tar.xz) = 695c4096c3ac15ab38e5cfb4114f9425c8ccb2f618a65b5f36f3ddee5edec212 -SIZE (KDE/applications/19.08.0/kompare-19.08.0.tar.xz) = 802448 +TIMESTAMP = 1567537385 +SHA256 (KDE/applications/19.08.1/kompare-19.08.1.tar.xz) = 325a14529c8e015fbae0231511ddd5c61dd3d78cbc6ad92eaccfd1c90a2f1afd +SIZE (KDE/applications/19.08.1/kompare-19.08.1.tar.xz) = 801764 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 511257) +++ head/textproc/libkomparediff2/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555783 -SHA256 (KDE/applications/19.08.0/libkomparediff2-19.08.0.tar.xz) = d86765e6514bdcf838ed36ae5968f9b2b7cb2e74f4fe884ae87f58b9bcc963fe -SIZE (KDE/applications/19.08.0/libkomparediff2-19.08.0.tar.xz) = 172804 +TIMESTAMP = 1567537386 +SHA256 (KDE/applications/19.08.1/libkomparediff2-19.08.1.tar.xz) = a020ba9287ee084a0f5a10896f1559f11aff1c97957405f47deeda32a0874b31 +SIZE (KDE/applications/19.08.1/libkomparediff2-19.08.1.tar.xz) = 173696 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 511257) +++ head/x11/konsole/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555785 -SHA256 (KDE/applications/19.08.0/konsole-19.08.0.tar.xz) = 4d495bf42fad1f457282a57f19fe2aece1ddbc88239352f0ebadfbcebf52ad6e -SIZE (KDE/applications/19.08.0/konsole-19.08.0.tar.xz) = 1147720 +TIMESTAMP = 1567537398 +SHA256 (KDE/applications/19.08.1/konsole-19.08.1.tar.xz) = 7530157a3fa01a9b21971e271a9d46addb5c71dce290db97265928803b57d37f +SIZE (KDE/applications/19.08.1/konsole-19.08.1.tar.xz) = 1146824 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 511257) +++ head/x11-clocks/kteatime/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555784 -SHA256 (KDE/applications/19.08.0/kteatime-19.08.0.tar.xz) = 3be9667867ef41a638c8f97fefb213b078b0ba3171add881438588bc8afba342 -SIZE (KDE/applications/19.08.0/kteatime-19.08.0.tar.xz) = 286356 +TIMESTAMP = 1567537386 +SHA256 (KDE/applications/19.08.1/kteatime-19.08.1.tar.xz) = a4b80c5ca6f48c1d291a9502c43293cd0aa383f2e089b9435b02ff79b317c310 +SIZE (KDE/applications/19.08.1/kteatime-19.08.1.tar.xz) = 286892 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 511257) +++ head/x11-clocks/ktimer/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555784 -SHA256 (KDE/applications/19.08.0/ktimer-19.08.0.tar.xz) = c7f684b9c7f0c92638153fabdfdb1082c900a8da2f660eeebe4b8b3b669f8c8d -SIZE (KDE/applications/19.08.0/ktimer-19.08.0.tar.xz) = 377004 +TIMESTAMP = 1567537386 +SHA256 (KDE/applications/19.08.1/ktimer-19.08.1.tar.xz) = f81af279e9e79bb3044718fa868973524e85df65dfaf654b8f45824b6f9d17cb +SIZE (KDE/applications/19.08.1/ktimer-19.08.1.tar.xz) = 377300 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 511257) +++ head/x11-fm/dolphin/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565882002 -SHA256 (KDE/applications/19.08.0/dolphin-19.08.0.tar.xz) = fd44714541ae7082d4615e441242afdba2d7810a373bfc8c3e64ff5c7db0a0f0 -SIZE (KDE/applications/19.08.0/dolphin-19.08.0.tar.xz) = 5253048 +TIMESTAMP = 1567537387 +SHA256 (KDE/applications/19.08.1/dolphin-19.08.1.tar.xz) = a612dac0cf50301af46ad5fa29aad630bb33a8a4bd416a4d6023b65fb00f25cc +SIZE (KDE/applications/19.08.1/dolphin-19.08.1.tar.xz) = 5263356 Index: head/x11-fm/dolphin/pkg-plist =================================================================== --- head/x11-fm/dolphin/pkg-plist (revision 511257) +++ head/x11-fm/dolphin/pkg-plist (revision 511258) @@ -1,116 +1,120 @@ bin/dolphin bin/servicemenuinstaller share/qlogging-categories5/dolphin.categories etc/xdg/servicemenu.knsrc include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so %%QT_PLUGINDIR%%/dolphinpart.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/kcm_dolphinservices.so %%QT_PLUGINDIR%%/kcm_dolphinviewmodes.so share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop share/kservices5/kcmdolphinservices.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin.mo +share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo +share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin.mo +share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo +share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/metainfo/org.kde.dolphin.appdata.xml Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 511257) +++ head/x11-fm/konqueror/distinfo (revision 511258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565555785 -SHA256 (KDE/applications/19.08.0/konqueror-19.08.0.tar.xz) = cc37709dcf183c68effb5332c29527b13fe7aae78216b84680ef6cc73192f971 -SIZE (KDE/applications/19.08.0/konqueror-19.08.0.tar.xz) = 7598656 +TIMESTAMP = 1567537397 +SHA256 (KDE/applications/19.08.1/konqueror-19.08.1.tar.xz) = 48a2847c7fcd5e30ae02d64523c3053b958ae9d3a7a649685660b1340aa644df +SIZE (KDE/applications/19.08.1/konqueror-19.08.1.tar.xz) = 7609624 Index: head/x11-fm/konqueror/pkg-plist =================================================================== --- head/x11-fm/konqueror/pkg-plist (revision 511257) +++ head/x11-fm/konqueror/pkg-plist (revision 511258) @@ -1,1629 +1,1630 @@ bin/fsview bin/kfmclient bin/konqueror share/qlogging-categories5/akregatorplugin.categories etc/xdg/autostart/konqy_preload.desktop share/qlogging-categories5/konqueror.categories etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonquerorprivate.so.5 lib/libkonquerorprivate.so.5.0.97 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so %%QT_PLUGINDIR%%/domtreeviewerplugin.so %%QT_PLUGINDIR%%/fsviewpart.so %%QT_PLUGINDIR%%/kcm_bookmarks.so %%QT_PLUGINDIR%%/kcm_konq.so %%QT_PLUGINDIR%%/kcm_konqhtml.so %%QT_PLUGINDIR%%/kcm_performance.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/kimgallery.so %%QT_PLUGINDIR%%/konq_aboutpage.so %%QT_PLUGINDIR%%/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/minitoolsplugin.so %%QT_PLUGINDIR%%/rellinksplugin.so %%QT_PLUGINDIR%%/searchbarplugin.so %%QT_PLUGINDIR%%/validatorsplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so share/akregator/pics/feed.png share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/config.kcfg/konqueror.kcfg share/config.kcfg/validators.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/dolphinpart/kpartplugins/dirfilterplugin.desktop share/dolphinpart/kpartplugins/dirfilterplugin.rc share/dolphinpart/kpartplugins/kimgalleryplugin.desktop share/dolphinpart/kpartplugins/kimgalleryplugin.rc share/dolphinpart/kpartplugins/kshellcmdplugin.desktop share/dolphinpart/kpartplugins/kshellcmdplugin.rc share/domtreeviewer/domtreeviewerui.rc share/fsview/fsview_part.rc share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/cssvalidator.png share/icons/hicolor/16x16/actions/htmlvalidator.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/validators.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/22x22/actions/babelfish.png share/icons/hicolor/22x22/actions/cssvalidator.png share/icons/hicolor/22x22/actions/htmlvalidator.png share/icons/hicolor/22x22/actions/imagegallery.png share/icons/hicolor/22x22/actions/validators.png share/icons/hicolor/22x22/actions/webarchiver.png share/icons/hicolor/22x22/apps/fsview.png share/icons/hicolor/22x22/apps/konqueror.png share/icons/hicolor/22x22/apps/webengine.png share/icons/hicolor/32x32/actions/htmlvalidator.png share/icons/hicolor/32x32/actions/validators.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/actions/htmlvalidator.png share/icons/hicolor/48x48/actions/validators.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/actions/htmlvalidator.png share/icons/hicolor/64x64/actions/validators.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/icons/hicolor/scalable/actions/htmlvalidator.svgz share/icons/hicolor/scalable/actions/validators.svgz share/kcmcss/template.css share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/khtml/kpartplugins/akregator_konqfeedicon.desktop share/khtml/kpartplugins/akregator_konqfeedicon.rc share/khtml/kpartplugins/autorefresh.desktop share/khtml/kpartplugins/autorefresh.rc share/khtml/kpartplugins/khtmlsettingsplugin.desktop share/khtml/kpartplugins/khtmlsettingsplugin.rc share/khtml/kpartplugins/khtmltts.desktop share/khtml/kpartplugins/khtmltts.rc share/khtml/kpartplugins/minitoolsplugin.desktop share/khtml/kpartplugins/minitoolsplugin.rc share/khtml/kpartplugins/plugin_babelfish.rc share/khtml/kpartplugins/plugin_domtreeviewer.desktop share/khtml/kpartplugins/plugin_domtreeviewer.rc share/khtml/kpartplugins/plugin_rellinks.desktop share/khtml/kpartplugins/plugin_rellinks.rc share/khtml/kpartplugins/plugin_translator.desktop share/khtml/kpartplugins/plugin_validators.desktop share/khtml/kpartplugins/plugin_validators.rc share/khtml/kpartplugins/plugin_webarchiver.desktop share/khtml/kpartplugins/plugin_webarchiver.rc %%DATADIR%%/about/intro.html %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/specs.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/kpartplugins/searchbar.desktop %%DATADIR%%/kpartplugins/searchbar.rc %%DATADIR%%/opensearch/google.xml %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/kservices5/akregator_konqplugin.desktop share/kservices5/bookmarks.desktop share/kservices5/filebehavior.desktop share/kservices5/fsview_part.desktop share/kservices5/kcmkonqyperformance.desktop share/kservices5/kcmperformance.desktop share/kservices5/khtml_appearance.desktop share/kservices5/khtml_behavior.desktop share/kservices5/khtml_filter.desktop share/kservices5/khtml_general.desktop share/kservices5/khtml_java_js.desktop share/kservices5/konq_aboutpage.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kservicetypes5/konqaboutpage.desktop share/kxmlgui5/webenginepart/webenginepart.rc share/locale/ar/LC_MESSAGES/adblock.mo share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/domtreeviewer.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/mf_konqplugin.mo share/locale/ar/LC_MESSAGES/minitoolsplugin.mo share/locale/ar/LC_MESSAGES/rellinks.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/validatorsplugin.mo share/locale/ar/LC_MESSAGES/webarchiver.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/adblock.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/domtreeviewer.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/mf_konqplugin.mo share/locale/ast/LC_MESSAGES/minitoolsplugin.mo share/locale/ast/LC_MESSAGES/rellinks.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/validatorsplugin.mo share/locale/ast/LC_MESSAGES/webarchiver.mo share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/bg/LC_MESSAGES/adblock.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/domtreeviewer.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/mf_konqplugin.mo share/locale/bg/LC_MESSAGES/minitoolsplugin.mo share/locale/bg/LC_MESSAGES/rellinks.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/validatorsplugin.mo share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bs/LC_MESSAGES/adblock.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/domtreeviewer.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/mf_konqplugin.mo share/locale/bs/LC_MESSAGES/minitoolsplugin.mo share/locale/bs/LC_MESSAGES/rellinks.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/validatorsplugin.mo share/locale/bs/LC_MESSAGES/webarchiver.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/adblock.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/domtreeviewer.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/mf_konqplugin.mo share/locale/ca/LC_MESSAGES/minitoolsplugin.mo share/locale/ca/LC_MESSAGES/rellinks.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/validatorsplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/adblock.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/domtreeviewer.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/mf_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/minitoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/rellinks.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/validatorsplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/adblock.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/domtreeviewer.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/mf_konqplugin.mo share/locale/cs/LC_MESSAGES/minitoolsplugin.mo share/locale/cs/LC_MESSAGES/rellinks.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/validatorsplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/da/LC_MESSAGES/adblock.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/domtreeviewer.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/mf_konqplugin.mo share/locale/da/LC_MESSAGES/minitoolsplugin.mo share/locale/da/LC_MESSAGES/rellinks.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/validatorsplugin.mo share/locale/da/LC_MESSAGES/webarchiver.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/adblock.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/domtreeviewer.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/mf_konqplugin.mo share/locale/de/LC_MESSAGES/minitoolsplugin.mo share/locale/de/LC_MESSAGES/rellinks.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/validatorsplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/adblock.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/domtreeviewer.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/mf_konqplugin.mo share/locale/el/LC_MESSAGES/minitoolsplugin.mo share/locale/el/LC_MESSAGES/rellinks.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/validatorsplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/adblock.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/domtreeviewer.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/mf_konqplugin.mo share/locale/en_GB/LC_MESSAGES/minitoolsplugin.mo share/locale/en_GB/LC_MESSAGES/rellinks.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/validatorsplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/adblock.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/domtreeviewer.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/mf_konqplugin.mo share/locale/eo/LC_MESSAGES/minitoolsplugin.mo share/locale/eo/LC_MESSAGES/rellinks.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/validatorsplugin.mo share/locale/eo/LC_MESSAGES/webarchiver.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/adblock.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/domtreeviewer.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/mf_konqplugin.mo share/locale/es/LC_MESSAGES/minitoolsplugin.mo share/locale/es/LC_MESSAGES/rellinks.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/validatorsplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/adblock.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/domtreeviewer.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/mf_konqplugin.mo share/locale/et/LC_MESSAGES/minitoolsplugin.mo share/locale/et/LC_MESSAGES/rellinks.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/validatorsplugin.mo share/locale/et/LC_MESSAGES/webarchiver.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/adblock.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/domtreeviewer.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/mf_konqplugin.mo share/locale/eu/LC_MESSAGES/minitoolsplugin.mo share/locale/eu/LC_MESSAGES/rellinks.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/validatorsplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/adblock.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/domtreeviewer.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/mf_konqplugin.mo share/locale/fa/LC_MESSAGES/minitoolsplugin.mo share/locale/fa/LC_MESSAGES/rellinks.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/validatorsplugin.mo share/locale/fa/LC_MESSAGES/webarchiver.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/adblock.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/domtreeviewer.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/mf_konqplugin.mo share/locale/fi/LC_MESSAGES/minitoolsplugin.mo share/locale/fi/LC_MESSAGES/rellinks.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/validatorsplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/adblock.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/domtreeviewer.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/mf_konqplugin.mo share/locale/fr/LC_MESSAGES/minitoolsplugin.mo share/locale/fr/LC_MESSAGES/rellinks.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/validatorsplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/ga/LC_MESSAGES/adblock.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/domtreeviewer.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/mf_konqplugin.mo share/locale/ga/LC_MESSAGES/minitoolsplugin.mo share/locale/ga/LC_MESSAGES/rellinks.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/validatorsplugin.mo share/locale/ga/LC_MESSAGES/webarchiver.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/adblock.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/domtreeviewer.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/mf_konqplugin.mo share/locale/gl/LC_MESSAGES/minitoolsplugin.mo share/locale/gl/LC_MESSAGES/rellinks.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/validatorsplugin.mo share/locale/gl/LC_MESSAGES/webarchiver.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/he/LC_MESSAGES/adblock.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/domtreeviewer.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/minitoolsplugin.mo share/locale/he/LC_MESSAGES/rellinks.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/he/LC_MESSAGES/validatorsplugin.mo share/locale/he/LC_MESSAGES/webarchiver.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/domtreeviewer.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/mf_konqplugin.mo share/locale/hi/LC_MESSAGES/minitoolsplugin.mo share/locale/hi/LC_MESSAGES/rellinks.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/validatorsplugin.mo share/locale/hi/LC_MESSAGES/webarchiver.mo share/locale/hr/LC_MESSAGES/adblock.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/domtreeviewer.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/mf_konqplugin.mo share/locale/hr/LC_MESSAGES/minitoolsplugin.mo share/locale/hr/LC_MESSAGES/rellinks.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/validatorsplugin.mo share/locale/hr/LC_MESSAGES/webarchiver.mo share/locale/hu/LC_MESSAGES/adblock.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/domtreeviewer.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/mf_konqplugin.mo share/locale/hu/LC_MESSAGES/minitoolsplugin.mo share/locale/hu/LC_MESSAGES/rellinks.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/validatorsplugin.mo share/locale/hu/LC_MESSAGES/webarchiver.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/adblock.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/domtreeviewer.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/mf_konqplugin.mo share/locale/ia/LC_MESSAGES/minitoolsplugin.mo share/locale/ia/LC_MESSAGES/rellinks.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/validatorsplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/adblock.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/domtreeviewer.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/khtmltts.mo +share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/mf_konqplugin.mo share/locale/id/LC_MESSAGES/minitoolsplugin.mo share/locale/id/LC_MESSAGES/rellinks.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/validatorsplugin.mo share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/adblock.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/domtreeviewer.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/mf_konqplugin.mo share/locale/is/LC_MESSAGES/minitoolsplugin.mo share/locale/is/LC_MESSAGES/rellinks.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/is/LC_MESSAGES/validatorsplugin.mo share/locale/is/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/adblock.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/domtreeviewer.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/mf_konqplugin.mo share/locale/it/LC_MESSAGES/minitoolsplugin.mo share/locale/it/LC_MESSAGES/rellinks.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/validatorsplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/adblock.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/domtreeviewer.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/mf_konqplugin.mo share/locale/ja/LC_MESSAGES/minitoolsplugin.mo share/locale/ja/LC_MESSAGES/rellinks.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/validatorsplugin.mo share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/adblock.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/domtreeviewer.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/mf_konqplugin.mo share/locale/kk/LC_MESSAGES/minitoolsplugin.mo share/locale/kk/LC_MESSAGES/rellinks.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/validatorsplugin.mo share/locale/kk/LC_MESSAGES/webarchiver.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/adblock.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/domtreeviewer.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/mf_konqplugin.mo share/locale/km/LC_MESSAGES/minitoolsplugin.mo share/locale/km/LC_MESSAGES/rellinks.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/validatorsplugin.mo share/locale/km/LC_MESSAGES/webarchiver.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/ko/LC_MESSAGES/adblock.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/domtreeviewer.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/mf_konqplugin.mo share/locale/ko/LC_MESSAGES/minitoolsplugin.mo share/locale/ko/LC_MESSAGES/rellinks.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/validatorsplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/lt/LC_MESSAGES/adblock.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/domtreeviewer.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/mf_konqplugin.mo share/locale/lt/LC_MESSAGES/minitoolsplugin.mo share/locale/lt/LC_MESSAGES/rellinks.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/validatorsplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/adblock.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/domtreeviewer.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/mf_konqplugin.mo share/locale/lv/LC_MESSAGES/minitoolsplugin.mo share/locale/lv/LC_MESSAGES/rellinks.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/lv/LC_MESSAGES/validatorsplugin.mo share/locale/lv/LC_MESSAGES/webarchiver.mo share/locale/ml/LC_MESSAGES/adblock.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/domtreeviewer.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/mf_konqplugin.mo share/locale/ml/LC_MESSAGES/minitoolsplugin.mo share/locale/ml/LC_MESSAGES/rellinks.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/validatorsplugin.mo share/locale/ml/LC_MESSAGES/webarchiver.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/adblock.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/domtreeviewer.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/mf_konqplugin.mo share/locale/mr/LC_MESSAGES/minitoolsplugin.mo share/locale/mr/LC_MESSAGES/rellinks.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/validatorsplugin.mo share/locale/mr/LC_MESSAGES/webarchiver.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/adblock.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/domtreeviewer.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/mf_konqplugin.mo share/locale/nb/LC_MESSAGES/minitoolsplugin.mo share/locale/nb/LC_MESSAGES/rellinks.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/validatorsplugin.mo share/locale/nb/LC_MESSAGES/webarchiver.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/adblock.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/domtreeviewer.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/mf_konqplugin.mo share/locale/nds/LC_MESSAGES/minitoolsplugin.mo share/locale/nds/LC_MESSAGES/rellinks.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/validatorsplugin.mo share/locale/nds/LC_MESSAGES/webarchiver.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/nl/LC_MESSAGES/adblock.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/domtreeviewer.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/mf_konqplugin.mo share/locale/nl/LC_MESSAGES/minitoolsplugin.mo share/locale/nl/LC_MESSAGES/rellinks.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/validatorsplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/adblock.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/domtreeviewer.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/mf_konqplugin.mo share/locale/nn/LC_MESSAGES/minitoolsplugin.mo share/locale/nn/LC_MESSAGES/rellinks.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/validatorsplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/pa/LC_MESSAGES/adblock.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/domtreeviewer.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/mf_konqplugin.mo share/locale/pa/LC_MESSAGES/minitoolsplugin.mo share/locale/pa/LC_MESSAGES/rellinks.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/validatorsplugin.mo share/locale/pa/LC_MESSAGES/webarchiver.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/adblock.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/domtreeviewer.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/mf_konqplugin.mo share/locale/pl/LC_MESSAGES/minitoolsplugin.mo share/locale/pl/LC_MESSAGES/rellinks.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/validatorsplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/adblock.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/domtreeviewer.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/mf_konqplugin.mo share/locale/pt/LC_MESSAGES/minitoolsplugin.mo share/locale/pt/LC_MESSAGES/rellinks.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/validatorsplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/adblock.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/domtreeviewer.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/mf_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/minitoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/rellinks.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/validatorsplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/adblock.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/domtreeviewer.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/mf_konqplugin.mo share/locale/ro/LC_MESSAGES/minitoolsplugin.mo share/locale/ro/LC_MESSAGES/rellinks.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/validatorsplugin.mo share/locale/ro/LC_MESSAGES/webarchiver.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/adblock.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/domtreeviewer.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/mf_konqplugin.mo share/locale/ru/LC_MESSAGES/minitoolsplugin.mo share/locale/ru/LC_MESSAGES/rellinks.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/validatorsplugin.mo share/locale/ru/LC_MESSAGES/webarchiver.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/sk/LC_MESSAGES/adblock.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/domtreeviewer.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/mf_konqplugin.mo share/locale/sk/LC_MESSAGES/minitoolsplugin.mo share/locale/sk/LC_MESSAGES/rellinks.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/validatorsplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/adblock.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/domtreeviewer.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/mf_konqplugin.mo share/locale/sl/LC_MESSAGES/minitoolsplugin.mo share/locale/sl/LC_MESSAGES/rellinks.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/validatorsplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sr/LC_MESSAGES/adblock.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/domtreeviewer.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/mf_konqplugin.mo share/locale/sr/LC_MESSAGES/minitoolsplugin.mo share/locale/sr/LC_MESSAGES/rellinks.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/validatorsplugin.mo share/locale/sr/LC_MESSAGES/webarchiver.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/adblock.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/domtreeviewer.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/mf_konqplugin.mo share/locale/sv/LC_MESSAGES/minitoolsplugin.mo share/locale/sv/LC_MESSAGES/rellinks.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/validatorsplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/adblock.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/domtreeviewer.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/mf_konqplugin.mo share/locale/tr/LC_MESSAGES/minitoolsplugin.mo share/locale/tr/LC_MESSAGES/rellinks.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/validatorsplugin.mo share/locale/tr/LC_MESSAGES/webarchiver.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/adblock.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/domtreeviewer.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/mf_konqplugin.mo share/locale/ug/LC_MESSAGES/minitoolsplugin.mo share/locale/ug/LC_MESSAGES/rellinks.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/validatorsplugin.mo share/locale/ug/LC_MESSAGES/webarchiver.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/adblock.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/domtreeviewer.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/mf_konqplugin.mo share/locale/uk/LC_MESSAGES/minitoolsplugin.mo share/locale/uk/LC_MESSAGES/rellinks.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/validatorsplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/wa/LC_MESSAGES/adblock.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/domtreeviewer.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/rellinks.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/adblock.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/domtreeviewer.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/mf_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/minitoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/rellinks.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/validatorsplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_TW/LC_MESSAGES/adblock.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/domtreeviewer.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/mf_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/minitoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/rellinks.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/validatorsplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/kwebkitpart/kpartplugins/akregator_konqfeedicon.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.rc share/kwebkitpart/kpartplugins/autorefresh.desktop share/kwebkitpart/kpartplugins/autorefresh.rc share/kwebkitpart/kpartplugins/khtmlsettingsplugin.desktop share/kwebkitpart/kpartplugins/khtmlsettingsplugin.rc share/kwebkitpart/kpartplugins/khtmltts.desktop share/kwebkitpart/kpartplugins/khtmltts.rc share/kwebkitpart/kpartplugins/plugin_babelfish.rc share/kwebkitpart/kpartplugins/plugin_translator.desktop share/kwebkitpart/kpartplugins/plugin_validators.desktop share/kwebkitpart/kpartplugins/plugin_validators.rc share/webenginepart/kpartplugins/akregator_konqfeedicon.desktop share/webenginepart/kpartplugins/akregator_konqfeedicon.rc share/webenginepart/kpartplugins/autorefresh.desktop share/webenginepart/kpartplugins/autorefresh.rc share/webenginepart/kpartplugins/khtmlsettingsplugin.desktop share/webenginepart/kpartplugins/khtmlsettingsplugin.rc share/webenginepart/kpartplugins/khtmltts.desktop share/webenginepart/kpartplugins/khtmltts.rc share/webenginepart/kpartplugins/plugin_babelfish.rc share/webenginepart/kpartplugins/plugin_translator.desktop share/webenginepart/kpartplugins/plugin_validators.desktop share/webenginepart/kpartplugins/plugin_validators.rc share/webenginepart/error.html