Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 506434) +++ head/Mk/Uses/kde.mk (revision 506435) @@ -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.3 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.59.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.04.2 -KDE_APPLICATIONS_SHLIB_VER?= 5.11.2 +KDE_APPLICATIONS_VERSION?= 19.04.3 +KDE_APPLICATIONS_SHLIB_VER?= 5.11.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _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/security/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/pimsettingexporter # ====================== 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 506434) +++ head/accessibility/kmag/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621604 -SHA256 (KDE/applications/19.04.2/kmag-19.04.2.tar.xz) = 257d6fa37492c12b0b75c8bcefa3971e7fb563c48e3c2912c1e3b540b7c31b2a -SIZE (KDE/applications/19.04.2/kmag-19.04.2.tar.xz) = 739696 +TIMESTAMP = 1562690669 +SHA256 (KDE/applications/19.04.3/kmag-19.04.3.tar.xz) = 4fad3d4414884fa8fb7dcfb27e7cc4207dfe219819ffda75355de5c1b4981e35 +SIZE (KDE/applications/19.04.3/kmag-19.04.3.tar.xz) = 671144 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 506434) +++ head/accessibility/kmousetool/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621605 -SHA256 (KDE/applications/19.04.2/kmousetool-19.04.2.tar.xz) = 4d3040a615b6ad6402d27111df6413195a8e489836d82efd157ed8499797c9c7 -SIZE (KDE/applications/19.04.2/kmousetool-19.04.2.tar.xz) = 111988 +TIMESTAMP = 1562690669 +SHA256 (KDE/applications/19.04.3/kmousetool-19.04.3.tar.xz) = 15c4e02c02a993d2724320b6625e9a44d5658c47136dd9a9895897893305dbd0 +SIZE (KDE/applications/19.04.3/kmousetool-19.04.3.tar.xz) = 112216 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 506434) +++ head/accessibility/kmouth/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621605 -SHA256 (KDE/applications/19.04.2/kmouth-19.04.2.tar.xz) = bdb93a85f8c9b6aee51aae5471c112b08a0e73b8fd41eeaddacd49ef9cfbd8f9 -SIZE (KDE/applications/19.04.2/kmouth-19.04.2.tar.xz) = 2057388 +TIMESTAMP = 1562690670 +SHA256 (KDE/applications/19.04.3/kmouth-19.04.3.tar.xz) = 712e21cc8cb45880b02c9cf5aa3a1bb2d54f9a2e09d1bbd2667eb99beded64dc +SIZE (KDE/applications/19.04.3/kmouth-19.04.3.tar.xz) = 1958784 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 506434) +++ head/archivers/ark/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621605 -SHA256 (KDE/applications/19.04.2/ark-19.04.2.tar.xz) = b0c4e4150aa6595e1a2c6fdd2a38046fa03cf594875fb1e8af284e84c5923211 -SIZE (KDE/applications/19.04.2/ark-19.04.2.tar.xz) = 2581184 +TIMESTAMP = 1562690670 +SHA256 (KDE/applications/19.04.3/ark-19.04.3.tar.xz) = a06cc2937aa4ed41bab0a38344164f367b993a80bcd74011e4ab72643bfee8ee +SIZE (KDE/applications/19.04.3/ark-19.04.3.tar.xz) = 2579920 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 506434) +++ head/archivers/ark/pkg-plist (revision 506435) @@ -1,95 +1,95 @@ bin/ark etc/xdg/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.19.4.2 +lib/libkerfuffle.so.19.4.3 %%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 506434) +++ head/astro/libkgeomap/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621606 -SHA256 (KDE/applications/19.04.2/libkgeomap-19.04.2.tar.xz) = 77ccdc1b8db1c67f48dc71f7cf3ef8b339b8aeffb08faba9e3e9d68c99016ece -SIZE (KDE/applications/19.04.2/libkgeomap-19.04.2.tar.xz) = 150196 +TIMESTAMP = 1562690670 +SHA256 (KDE/applications/19.04.3/libkgeomap-19.04.3.tar.xz) = 9266af7950b4cd73b694d61cf7bc0d03fc27d2bde3015f4c698e6d5d480d17bd +SIZE (KDE/applications/19.04.3/libkgeomap-19.04.3.tar.xz) = 150832 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 506434) +++ head/astro/marble/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621606 -SHA256 (KDE/applications/19.04.2/marble-19.04.2.tar.xz) = 2a5978b1415b4b28a4be273dd31d50345ba53a7f37fed38f5a4329ffc35a0137 -SIZE (KDE/applications/19.04.2/marble-19.04.2.tar.xz) = 52173972 +TIMESTAMP = 1562690671 +SHA256 (KDE/applications/19.04.3/marble-19.04.3.tar.xz) = b2451d338bf433d5a0211c954f48fb5c6c80fecbb8fa69d604276fecb45fe826 +SIZE (KDE/applications/19.04.3/marble-19.04.3.tar.xz) = 52188608 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 506434) +++ head/audio/audiocd-kio/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621607 -SHA256 (KDE/applications/19.04.2/audiocd-kio-19.04.2.tar.xz) = 8111e660ed87690bb3b386f6c338303c6e810814fc2bfe1d4053844a513c08dd -SIZE (KDE/applications/19.04.2/audiocd-kio-19.04.2.tar.xz) = 353764 +TIMESTAMP = 1562690672 +SHA256 (KDE/applications/19.04.3/audiocd-kio-19.04.3.tar.xz) = 4e684ab03fafd4ee37d7ef7d2c2edb883e76bb5a81e11415173317160997accf +SIZE (KDE/applications/19.04.3/audiocd-kio-19.04.3.tar.xz) = 354536 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 506434) +++ head/audio/audiocd-kio/pkg-plist (revision 506435) @@ -1,283 +1,284 @@ etc/xdg/kio_audiocd.categories include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/kservices5/audiocd.protocol share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.appdata.xml share/solid/actions/solid_audiocd.desktop Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 506434) +++ head/audio/juk/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621607 -SHA256 (KDE/applications/19.04.2/juk-19.04.2.tar.xz) = f4a4f347012a06d07f2865fc5476d55387127ab6812f742a43043ce30df3ddc7 -SIZE (KDE/applications/19.04.2/juk-19.04.2.tar.xz) = 1867504 +TIMESTAMP = 1562690672 +SHA256 (KDE/applications/19.04.3/juk-19.04.3.tar.xz) = f4a272aa677ac7b5eb8c3f30234dea129e41863c5c78d812b27d30dde0f5d750 +SIZE (KDE/applications/19.04.3/juk-19.04.3.tar.xz) = 1868172 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 506434) +++ head/audio/kmix/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621617 -SHA256 (KDE/applications/19.04.2/kmix-19.04.2.tar.xz) = 3d57ff5360903be75229967df2d96efde0b346e7d326d33b36fb790941665365 -SIZE (KDE/applications/19.04.2/kmix-19.04.2.tar.xz) = 1069712 +TIMESTAMP = 1562690682 +SHA256 (KDE/applications/19.04.3/kmix-19.04.3.tar.xz) = d08a0d40fb9a7a3f032f8995dbd9260777119b249669323447fa2575e44e3bf9 +SIZE (KDE/applications/19.04.3/kmix-19.04.3.tar.xz) = 1006048 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 506434) +++ head/audio/kwave/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621618 -SHA256 (KDE/applications/19.04.2/kwave-19.04.2.tar.xz) = 68c19b2f66b13e7a78c6a583ced088a9532bc31f1bb40c653cdd139bc34d2cce -SIZE (KDE/applications/19.04.2/kwave-19.04.2.tar.xz) = 6209132 +TIMESTAMP = 1562690683 +SHA256 (KDE/applications/19.04.3/kwave-19.04.3.tar.xz) = dc9ad96a59b4bab1cd8f04401b3d87883cf888711898fdfc20d96113faf92431 +SIZE (KDE/applications/19.04.3/kwave-19.04.3.tar.xz) = 6209860 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 506434) +++ head/audio/libkcddb/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621618 -SHA256 (KDE/applications/19.04.2/libkcddb-19.04.2.tar.xz) = b5ca9411b0fb25a6a35c5ac6742dbc939756f928c77aa7e05f8455399bb3b528 -SIZE (KDE/applications/19.04.2/libkcddb-19.04.2.tar.xz) = 424432 +TIMESTAMP = 1562690683 +SHA256 (KDE/applications/19.04.3/libkcddb-19.04.3.tar.xz) = 6471261ffef0e1546317040c4275a6fc11c131fde7229b5d0c9358a40442bec3 +SIZE (KDE/applications/19.04.3/libkcddb-19.04.3.tar.xz) = 423248 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 506434) +++ head/audio/libkcompactdisc/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621618 -SHA256 (KDE/applications/19.04.2/libkcompactdisc-19.04.2.tar.xz) = 06652ac4e296897c227cef469b80ebe3faa777b20f010e5a84377202ecb67c72 -SIZE (KDE/applications/19.04.2/libkcompactdisc-19.04.2.tar.xz) = 88892 +TIMESTAMP = 1562690683 +SHA256 (KDE/applications/19.04.3/libkcompactdisc-19.04.3.tar.xz) = 9294aa908f158437241e27d57f924a2b7a07aa4203a51b83566de8c9690e86bc +SIZE (KDE/applications/19.04.3/libkcompactdisc-19.04.3.tar.xz) = 89120 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 506434) +++ head/databases/akonadi/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621629 -SHA256 (KDE/applications/19.04.2/akonadi-19.04.2.tar.xz) = 16e1c6dd48004d9b1ad0c1dc38372ccdd5529c7e360fce95f65067b83407b6d2 -SIZE (KDE/applications/19.04.2/akonadi-19.04.2.tar.xz) = 1576724 +TIMESTAMP = 1562690694 +SHA256 (KDE/applications/19.04.3/akonadi-19.04.3.tar.xz) = 7ac34dc7c3e2bf8e53ec9eebeecc8d96541c0b663dd71963e6bcd94e7ac41b07 +SIZE (KDE/applications/19.04.3/akonadi-19.04.3.tar.xz) = 1574868 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 506434) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621629 -SHA256 (KDE/applications/19.04.2/akonadi-calendar-tools-19.04.2.tar.xz) = c9b1925f80026edf68de604049735c932e5dabc5084366e21d94d2c1bc996e3b -SIZE (KDE/applications/19.04.2/akonadi-calendar-tools-19.04.2.tar.xz) = 223244 +TIMESTAMP = 1562690694 +SHA256 (KDE/applications/19.04.3/akonadi-calendar-tools-19.04.3.tar.xz) = b7bf7c6a8df76f66d13209b3a2d1c47d703f0a3fff7936d2c880c11c2eb33d39 +SIZE (KDE/applications/19.04.3/akonadi-calendar-tools-19.04.3.tar.xz) = 223328 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 506434) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621629 -SHA256 (KDE/applications/19.04.2/akonadi-import-wizard-19.04.2.tar.xz) = bcac838cd1529a73b19765fd1dc3831c5cee81cd57c3658003b0a1daca7dd336 -SIZE (KDE/applications/19.04.2/akonadi-import-wizard-19.04.2.tar.xz) = 439256 +TIMESTAMP = 1562690695 +SHA256 (KDE/applications/19.04.3/akonadi-import-wizard-19.04.3.tar.xz) = 5e4b74790927be8372939237336e3684d7560d0c0652a26b57cc3233109234c4 +SIZE (KDE/applications/19.04.3/akonadi-import-wizard-19.04.3.tar.xz) = 438784 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 506434) +++ head/deskutils/akonadiconsole/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621630 -SHA256 (KDE/applications/19.04.2/akonadiconsole-19.04.2.tar.xz) = 84559c40605a848289a11c424fd621f742b22aed40d885b1432ac8fca0f6d785 -SIZE (KDE/applications/19.04.2/akonadiconsole-19.04.2.tar.xz) = 193528 +TIMESTAMP = 1562690695 +SHA256 (KDE/applications/19.04.3/akonadiconsole-19.04.3.tar.xz) = 25a302f3e582555cf003b48e28788d289a771e0c29c500afcd5d915e0bb34bda +SIZE (KDE/applications/19.04.3/akonadiconsole-19.04.3.tar.xz) = 193896 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 506434) +++ head/deskutils/akregator/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621630 -SHA256 (KDE/applications/19.04.2/akregator-19.04.2.tar.xz) = 7f55c5719264ad06a7330c7789ee3f07d50a1c842d569262b18aaf4acb5aa448 -SIZE (KDE/applications/19.04.2/akregator-19.04.2.tar.xz) = 2189716 +TIMESTAMP = 1562690695 +SHA256 (KDE/applications/19.04.3/akregator-19.04.3.tar.xz) = 5d883061c4a53374ff2351646711d2b6eb047187ffd0d620a038fb6509bb60c0 +SIZE (KDE/applications/19.04.3/akregator-19.04.3.tar.xz) = 2190396 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 506434) +++ head/deskutils/grantlee-editor/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621630 -SHA256 (KDE/applications/19.04.2/grantlee-editor-19.04.2.tar.xz) = f4d5a382e7f25072468b1325150ee0eccfbfb231272ae11a2bab402b9f32bbaf -SIZE (KDE/applications/19.04.2/grantlee-editor-19.04.2.tar.xz) = 111340 +TIMESTAMP = 1562690696 +SHA256 (KDE/applications/19.04.3/grantlee-editor-19.04.3.tar.xz) = b244eef352ef776cbb0d3d5e51ffaa629d4ca3b6bd7fc86a8fda8d24e5090bca +SIZE (KDE/applications/19.04.3/grantlee-editor-19.04.3.tar.xz) = 110936 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 506434) +++ head/deskutils/grantleetheme/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621631 -SHA256 (KDE/applications/19.04.2/grantleetheme-19.04.2.tar.xz) = a1aea33272b52fed6dadc7969265c1b831d6de1207d624ce505826ae012ba52e -SIZE (KDE/applications/19.04.2/grantleetheme-19.04.2.tar.xz) = 51772 +TIMESTAMP = 1562690696 +SHA256 (KDE/applications/19.04.3/grantleetheme-19.04.3.tar.xz) = c5cf79f1daddde3bc5b9387546b10e1d3ae4512279d50e3545ad38982c7f9aaf +SIZE (KDE/applications/19.04.3/grantleetheme-19.04.3.tar.xz) = 51656 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 506434) +++ head/deskutils/kaddressbook/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621631 -SHA256 (KDE/applications/19.04.2/kaddressbook-19.04.2.tar.xz) = a26a6ac5f2e945a61529f7e8c4d8342729dbae9d3394009615ac44ec13bca610 -SIZE (KDE/applications/19.04.2/kaddressbook-19.04.2.tar.xz) = 470652 +TIMESTAMP = 1562690696 +SHA256 (KDE/applications/19.04.3/kaddressbook-19.04.3.tar.xz) = dc379c4a2d15a94fe5d7416e692301827377b503ba0880f3b508fe2c812d4349 +SIZE (KDE/applications/19.04.3/kaddressbook-19.04.3.tar.xz) = 473480 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 506434) +++ head/deskutils/kalarm/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621631 -SHA256 (KDE/applications/19.04.2/kalarm-19.04.2.tar.xz) = 20814da003a354ccc1c76b33b319e34992b44d75f0b143be68a41e3ff8cefcb5 -SIZE (KDE/applications/19.04.2/kalarm-19.04.2.tar.xz) = 1819380 +TIMESTAMP = 1562690697 +SHA256 (KDE/applications/19.04.3/kalarm-19.04.3.tar.xz) = c686f5b768719e77e913ee616267f2980c9827ea71f3738099f18cb4d4178d84 +SIZE (KDE/applications/19.04.3/kalarm-19.04.3.tar.xz) = 1819888 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 506434) +++ head/deskutils/kcharselect/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621632 -SHA256 (KDE/applications/19.04.2/kcharselect-19.04.2.tar.xz) = 2a316af723b558b655011d8376eeea8fda9bcf78ea1094da48e60b4c5a9ca1dd -SIZE (KDE/applications/19.04.2/kcharselect-19.04.2.tar.xz) = 333832 +TIMESTAMP = 1562690697 +SHA256 (KDE/applications/19.04.3/kcharselect-19.04.3.tar.xz) = 98ebcf13ec02f490bfeaa1001e46a397163939d75d73cf26cd4707e9aa2a4186 +SIZE (KDE/applications/19.04.3/kcharselect-19.04.3.tar.xz) = 334100 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 506434) +++ head/deskutils/kdepim-addons/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621632 -SHA256 (KDE/applications/19.04.2/kdepim-addons-19.04.2.tar.xz) = 2d3e9211f328736ea76dbe55cf3043a85e3d8454a737b9b94d7cb3e4996736fb -SIZE (KDE/applications/19.04.2/kdepim-addons-19.04.2.tar.xz) = 2074304 +TIMESTAMP = 1562690698 +SHA256 (KDE/applications/19.04.3/kdepim-addons-19.04.3.tar.xz) = a748027568ed2f82f9178c24f6eba18f1d5af26f51d1cc1ddedea645e04190a6 +SIZE (KDE/applications/19.04.3/kdepim-addons-19.04.3.tar.xz) = 2076656 Index: head/deskutils/kdepim-addons/pkg-plist =================================================================== --- head/deskutils/kdepim-addons/pkg-plist (revision 506434) +++ head/deskutils/kdepim-addons/pkg-plist (revision 506435) @@ -1,977 +1,979 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kdepim-addons.categories etc/xdg/kdepim-addons.renamecategories etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookimportexportlibprivate.so.5 lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/contacteditor/addresslocationeditorplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/nylasmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antispamplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/kmail/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_expertplugin.so %%QT_PLUGINDIR%%/kmail/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/kmail/kmail_logactivitiesplugin.so %%QT_PLUGINDIR%%/kmail/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/korg_datenums.so %%QT_PLUGINDIR%%/korg_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/libksieve/regexpeditorlineeditplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_PLUGINDIR%%/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_donottrackplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/contacteditor/grantleetheme/default/addresseslocation.css share/contacteditor/grantleetheme/default/addresseslocation.html share/kconf_update/webengineurlinterceptoradblock.upd share/kmail2/pics/kmwizard.png share/kmail2/pics/kmwizard.svg share/kservices5/korganizer/datenums.desktop share/kservices5/korganizer/picoftheday.desktop share/kservices5/korganizer/thisdayinhistory.desktop share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/mailreader.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/mailreader.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/mailreader.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/mailreader.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/mailreader.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/mailreader.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/mailreader.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/mailreader.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/mailreader.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/mailreader.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/mailreader.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/mailreader.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/mailreader.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/mailreader.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/mailreader.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/mailreader.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/mailreader.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/mailreader.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/mailreader.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/mailreader.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/mailreader.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/mailreader.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/mailreader.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/mailreader.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/mailreader.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/mailreader.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/mailreader.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/mailreader.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/mailreader.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/mailreader.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/mailreader.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/mailreader.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/mailreader.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/mailreader.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/mailreader.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/mailreader.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/mailreader.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/mailreader.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/mailreader.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/mailreader.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/mailreader.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/mailreader.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/mailreader.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/mailreader.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/mailreader.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 506434) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621632 -SHA256 (KDE/applications/19.04.2/kdepim-apps-libs-19.04.2.tar.xz) = 7102f708269740588053704c407142cf7de8d15bbd693d0c3b806c9fbc786576 -SIZE (KDE/applications/19.04.2/kdepim-apps-libs-19.04.2.tar.xz) = 85388 +TIMESTAMP = 1562690698 +SHA256 (KDE/applications/19.04.3/kdepim-apps-libs-19.04.3.tar.xz) = a3ad12f4b7c58154aef49fc5d0ac388a6e9441972605aaa02e17dd6a0583eeb2 +SIZE (KDE/applications/19.04.3/kdepim-apps-libs-19.04.3.tar.xz) = 86144 Index: head/deskutils/kdepim-apps-libs/pkg-plist =================================================================== --- head/deskutils/kdepim-apps-libs/pkg-plist (revision 506434) +++ head/deskutils/kdepim-apps-libs/pkg-plist (revision 506435) @@ -1,186 +1,187 @@ etc/xdg/kdepim-apps-lib.categories etc/xdg/kdepim-apps-lib.renamecategories include/KF5/FollowupReminder/FollowUpReminderInfo include/KF5/FollowupReminder/FollowUpReminderUtil include/KF5/KAddressBookImportExport/KAddressBookContactSelectionDialog include/KF5/KAddressBookImportExport/KAddressBookContactSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookExportSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookImportExportContactList include/KF5/KAddressBookImportExport/KAddressBookImportExportPlugin include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginInterface include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginManager include/KF5/KaddressbookGrantlee/GrantleeContactFormatter include/KF5/KaddressbookGrantlee/GrantleeContactGroupFormatter include/KF5/KaddressbookGrantlee/GrantleeContactViewer include/KF5/KaddressbookGrantlee/GrantleePrint include/KF5/KdepimDBusInterfaces/ReminderClient include/KF5/KdepimDBusInterfaces/UriHandler include/KF5/SendLater/SendLaterDialog include/KF5/SendLater/SendLaterInfo include/KF5/SendLater/SendLaterUtil include/KF5/followupreminder/followupreminder_export.h include/KF5/followupreminder/followupreminderagentsettings.h include/KF5/followupreminder/followupreminderinfo.h include/KF5/followupreminder/followupreminderutil.h include/KF5/followupreminder_version.h include/KF5/kaddressbookgrantlee/grantleecontactformatter.h include/KF5/kaddressbookgrantlee/grantleecontactgroupformatter.h include/KF5/kaddressbookgrantlee/grantleecontactviewer.h include/KF5/kaddressbookgrantlee/grantleeprint.h include/KF5/kaddressbookgrantlee/kaddressbook_grantlee_export.h include/KF5/kaddressbookgrantlee_version.h include/KF5/kaddressbookimportexport/kaddressbook_importexport_export.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectiondialog.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookexportselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactfields.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactlist.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugin.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugininterface.h include/KF5/kaddressbookimportexport/kaddressbookimportexportpluginmanager.h include/KF5/kaddressbookimportexport_version.h include/KF5/kdepimdbusinterfaces/kdepimdbusinterfaces_export.h include/KF5/kdepimdbusinterfaces/reminderclient.h include/KF5/kdepimdbusinterfaces/urihandler.h include/KF5/kdepimdbusinterfaces_version.h include/KF5/sendlater/sendlater_export.h include/KF5/sendlater/sendlateragentsettings.h include/KF5/sendlater/sendlaterdialog.h include/KF5/sendlater/sendlaterinfo.h include/KF5/sendlater/sendlaterutil.h include/KF5/sendlater_version.h lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfig.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfigVersion.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfig.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfigVersion.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfig.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfigVersion.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfig.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfigVersion.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets.cmake lib/cmake/KF5SendLater/KF5SendLaterConfig.cmake lib/cmake/KF5SendLater/KF5SendLaterConfigVersion.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets.cmake lib/libKF5FollowupReminder.so lib/libKF5FollowupReminder.so.5 lib/libKF5FollowupReminder.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookGrantlee.so lib/libKF5KaddressbookGrantlee.so.5 lib/libKF5KaddressbookGrantlee.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookImportExport.so lib/libKF5KaddressbookImportExport.so.5 lib/libKF5KaddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KdepimDBusInterfaces.so lib/libKF5KdepimDBusInterfaces.so.5 lib/libKF5KdepimDBusInterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5SendLater.so lib/libKF5SendLater.so.5 lib/libKF5SendLater.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_FollowupReminder.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookGrantlee.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookImportExport.pri %%QT_MKSPECDIR%%/modules/qt_KdepimDBusInterfaces.pri %%QT_MKSPECDIR%%/modules/qt_SendLater.pri share/locale/ar/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ar/LC_MESSAGES/libsendlater.mo share/locale/bs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/bs/LC_MESSAGES/libsendlater.mo share/locale/ca/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca/LC_MESSAGES/libsendlater.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca@valencia/LC_MESSAGES/libsendlater.mo share/locale/cs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/cs/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/cs/LC_MESSAGES/libsendlater.mo share/locale/da/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/da/LC_MESSAGES/libsendlater.mo share/locale/de/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/de/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/de/LC_MESSAGES/libsendlater.mo share/locale/el/LC_MESSAGES/libsendlater.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/en_GB/LC_MESSAGES/libsendlater.mo share/locale/es/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/es/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/es/LC_MESSAGES/libsendlater.mo share/locale/et/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/et/LC_MESSAGES/libsendlater.mo share/locale/fi/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fi/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fi/LC_MESSAGES/libsendlater.mo share/locale/fr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fr/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fr/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/gl/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/hu/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/hu/LC_MESSAGES/libsendlater.mo share/locale/ia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ia/LC_MESSAGES/libsendlater.mo share/locale/it/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/it/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/it/LC_MESSAGES/libsendlater.mo share/locale/ja/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ja/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ja/LC_MESSAGES/libsendlater.mo share/locale/kk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/kk/LC_MESSAGES/libsendlater.mo +share/locale/ko/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ko/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ko/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/lt/LC_MESSAGES/libsendlater.mo share/locale/nb/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nb/LC_MESSAGES/libsendlater.mo share/locale/nds/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nds/LC_MESSAGES/libsendlater.mo share/locale/nl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nl/LC_MESSAGES/libsendlater.mo share/locale/pl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pl/LC_MESSAGES/libsendlater.mo share/locale/pt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt/LC_MESSAGES/libsendlater.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt_BR/LC_MESSAGES/libsendlater.mo share/locale/ro/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ro/LC_MESSAGES/libsendlater.mo share/locale/ru/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ru/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ru/LC_MESSAGES/libsendlater.mo share/locale/sk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sk/LC_MESSAGES/libsendlater.mo share/locale/sl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sl/LC_MESSAGES/libsendlater.mo share/locale/sr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sr/LC_MESSAGES/libsendlater.mo share/locale/sv/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sv/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sv/LC_MESSAGES/libsendlater.mo share/locale/tr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/tr/LC_MESSAGES/libsendlater.mo share/locale/ug/LC_MESSAGES/libsendlater.mo share/locale/uk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/uk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/uk/LC_MESSAGES/libsendlater.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_CN/LC_MESSAGES/libsendlater.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_TW/LC_MESSAGES/libsendlater.mo Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 506434) +++ head/deskutils/kdepim-runtime/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621633 -SHA256 (KDE/applications/19.04.2/kdepim-runtime-19.04.2.tar.xz) = 155f9fcd3460f21eacd0b088f0f7eb01ee168977df81a32f925655c607b94d00 -SIZE (KDE/applications/19.04.2/kdepim-runtime-19.04.2.tar.xz) = 1764380 +TIMESTAMP = 1562690698 +SHA256 (KDE/applications/19.04.3/kdepim-runtime-19.04.3.tar.xz) = 720945f803dc9027211eb46f281ef52b35da3fe4d990c1aeed6d57a89a45215a +SIZE (KDE/applications/19.04.3/kdepim-runtime-19.04.3.tar.xz) = 1762728 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 506434) +++ head/deskutils/keditbookmarks/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621633 -SHA256 (KDE/applications/19.04.2/keditbookmarks-19.04.2.tar.xz) = 436d5ec6489e1d5f8a9e259468184e5d7909f8bf51cea7dbf069096c133e7a2c -SIZE (KDE/applications/19.04.2/keditbookmarks-19.04.2.tar.xz) = 183900 +TIMESTAMP = 1562690699 +SHA256 (KDE/applications/19.04.3/keditbookmarks-19.04.3.tar.xz) = b255d6f85d34abf635857f922b059c3311fd7859262039bec0c90b6538c5e92e +SIZE (KDE/applications/19.04.3/keditbookmarks-19.04.3.tar.xz) = 184160 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 506434) +++ head/deskutils/kfind/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621633 -SHA256 (KDE/applications/19.04.2/kfind-19.04.2.tar.xz) = 4485cf492eac4a9360dd0d7140eb01ab5208da9bcdef3d65efa4c62835a9763d -SIZE (KDE/applications/19.04.2/kfind-19.04.2.tar.xz) = 266884 +TIMESTAMP = 1562690699 +SHA256 (KDE/applications/19.04.3/kfind-19.04.3.tar.xz) = 2fcb5af039d976161ed09d87cb7c909bd2854647ea15688203b90dbebc54447f +SIZE (KDE/applications/19.04.3/kfind-19.04.3.tar.xz) = 267120 Index: head/deskutils/kmail/files/patch-git_97e165 =================================================================== --- head/deskutils/kmail/files/patch-git_97e165 (revision 506434) +++ head/deskutils/kmail/files/patch-git_97e165 (nonexistent) @@ -1,75 +0,0 @@ -From 97e165dcf5a851ee10526631d24f9af7736da2e6 Mon Sep 17 00:00:00 2001 -From: David Faure -Date: Thu, 6 Jun 2019 18:10:42 +0200 -Subject: Fix kontact crash on logout. - -Summary: -KMail was creating new Akonadi jobs during mainwindow destruction, -due to not testing the bool in GuiActivateEvent. - -Same bt in bug 404881, apparently quitting from the akregator tray icon -[which quits all of kontact... separate issue...] gave the same crash. - -BUG: 404881 -FIXED-IN: 19.04.2 - -Test Plan: Run kontact, logout. Hello Drkonqi. - -Reviewers: mlaurent, winterz - -Reviewed By: mlaurent, winterz - -Subscribers: kde-pim - -Tags: #kde_pim - -Differential Revision: https://phabricator.kde.org/D21626 ---- - src/kmail_part.cpp | 23 ++++++++++++----------- - 1 file changed, 12 insertions(+), 11 deletions(-) - -diff --git a/src/kmail_part.cpp b/src/kmail_part.cpp -index 703a1ee..96c4c07 100644 ---- src/kmail_part.cpp -+++ src/kmail_part.cpp -@@ -33,6 +33,7 @@ - - #include - -+#include - #include - #include - #include -@@ -129,18 +130,18 @@ bool KMailPart::openFile() - void KMailPart::guiActivateEvent(KParts::GUIActivateEvent *e) - { - KParts::ReadOnlyPart::guiActivateEvent(e); -- mainWidget->initializeFilterActions(); -- mainWidget->tagActionManager()->createActions(); -- mainWidget->folderShortcutActionManager()->createActions(); -- mainWidget->populateMessageListStatusFilterCombo(); -- mainWidget->initializePluginActions(); -- /* -- FIXME it doesn't work when we switch component. -- const QString title = mainWidget->fullCollectionPath(); -- if (!title.isEmpty()) { -- Q_EMIT setWindowCaption(title); -+ if (e->activated()) { -+ mainWidget->initializeFilterActions(); -+ mainWidget->tagActionManager()->createActions(); -+ mainWidget->folderShortcutActionManager()->createActions(); -+ mainWidget->populateMessageListStatusFilterCombo(); -+ mainWidget->initializePluginActions(); -+ -+ const QString title = mainWidget->fullCollectionPath(); -+ if (!title.isEmpty()) { -+ Q_EMIT setWindowCaption(title); -+ } - } -- */ - } - - void KMailPart::exit() --- -cgit v1.1 - Property changes on: head/deskutils/kmail/files/patch-git_97e165 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 506434) +++ head/deskutils/kmail/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621634 -SHA256 (KDE/applications/19.04.2/kmail-19.04.2.tar.xz) = 177a9d6b904ce4b3b6195a86863141c81d101b32a2bc0c8bab763fba18c67426 -SIZE (KDE/applications/19.04.2/kmail-19.04.2.tar.xz) = 4724392 +TIMESTAMP = 1562690699 +SHA256 (KDE/applications/19.04.3/kmail-19.04.3.tar.xz) = 8e1d45741a9fab9848a659ab05497f82d79f7ffe3a42f121cb5136b1fcae833f +SIZE (KDE/applications/19.04.3/kmail-19.04.3.tar.xz) = 4717936 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 506434) +++ head/deskutils/kmail-account-wizard/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621634 -SHA256 (KDE/applications/19.04.2/kmail-account-wizard-19.04.2.tar.xz) = 546830733e384f35f3ca625d9810f90931f65e0a4789f26fe316691e0254153e -SIZE (KDE/applications/19.04.2/kmail-account-wizard-19.04.2.tar.xz) = 155612 +TIMESTAMP = 1562690700 +SHA256 (KDE/applications/19.04.3/kmail-account-wizard-19.04.3.tar.xz) = a8cc19b30198459cb0fd74fb0d789a012354b4a9952a14312508af7079f92291 +SIZE (KDE/applications/19.04.3/kmail-account-wizard-19.04.3.tar.xz) = 156172 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 506434) +++ head/deskutils/knotes/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621634 -SHA256 (KDE/applications/19.04.2/knotes-19.04.2.tar.xz) = 99b7f73e0370e7f8375db9fe8651acf89f2b65e44293a2cbbfc14b559c703e94 -SIZE (KDE/applications/19.04.2/knotes-19.04.2.tar.xz) = 320052 +TIMESTAMP = 1562690700 +SHA256 (KDE/applications/19.04.3/knotes-19.04.3.tar.xz) = 8c269a5db708d623a7e36799d43204146b44f9de65f6e09a00782b1b62bf41fd +SIZE (KDE/applications/19.04.3/knotes-19.04.3.tar.xz) = 319528 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 506434) +++ head/deskutils/kontact/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621635 -SHA256 (KDE/applications/19.04.2/kontact-19.04.2.tar.xz) = 627c746d01b06b22634107230393954b26c35bd402d918daa497399510ce0f15 -SIZE (KDE/applications/19.04.2/kontact-19.04.2.tar.xz) = 793092 +TIMESTAMP = 1562690701 +SHA256 (KDE/applications/19.04.3/kontact-19.04.3.tar.xz) = 05fab6c512635b07b6c99b3ee38d9e53060d44124052734381e9a6ddbef06e73 +SIZE (KDE/applications/19.04.3/kontact-19.04.3.tar.xz) = 793564 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 506434) +++ head/deskutils/korganizer/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621635 -SHA256 (KDE/applications/19.04.2/korganizer-19.04.2.tar.xz) = 829244e7cd0b3c4925a2c4e65ee502450296321e38a3b148d11e9c587471ae39 -SIZE (KDE/applications/19.04.2/korganizer-19.04.2.tar.xz) = 2225816 +TIMESTAMP = 1562690701 +SHA256 (KDE/applications/19.04.3/korganizer-19.04.3.tar.xz) = b2bae3a41994794a9c4d9ddfe10695edb0fee103f14ee607c31aec42c9e5d06c +SIZE (KDE/applications/19.04.3/korganizer-19.04.3.tar.xz) = 2223788 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 506434) +++ head/deskutils/kruler/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621635 -SHA256 (KDE/applications/19.04.2/kruler-19.04.2.tar.xz) = 57d6fdea99e1bbdea50c9a1600fd657a2328b108f5894eed7b32a84c4996c13e -SIZE (KDE/applications/19.04.2/kruler-19.04.2.tar.xz) = 248880 +TIMESTAMP = 1562690701 +SHA256 (KDE/applications/19.04.3/kruler-19.04.3.tar.xz) = 58aa7dc6713647efa4dc0996c28736b614f2b88241f92fb21b60e662c7087a86 +SIZE (KDE/applications/19.04.3/kruler-19.04.3.tar.xz) = 249128 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 506434) +++ head/deskutils/libkdepim/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621636 -SHA256 (KDE/applications/19.04.2/libkdepim-19.04.2.tar.xz) = 384a61e05f75d205ac42a3437f8ee874776f48848505b67b2a1af940c0214659 -SIZE (KDE/applications/19.04.2/libkdepim-19.04.2.tar.xz) = 336100 +TIMESTAMP = 1562690702 +SHA256 (KDE/applications/19.04.3/libkdepim-19.04.3.tar.xz) = d3719c533df0b0fe8800a7810ee39f108d8408b909e5fb583ee2ab7ed4b4a6e9 +SIZE (KDE/applications/19.04.3/libkdepim-19.04.3.tar.xz) = 336260 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 506434) +++ head/deskutils/mbox-importer/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621636 -SHA256 (KDE/applications/19.04.2/mbox-importer-19.04.2.tar.xz) = 719304262acb1176902e16d9485285c4da55eaf948d661c0ff9185b2d1dcbaa5 -SIZE (KDE/applications/19.04.2/mbox-importer-19.04.2.tar.xz) = 33480 +TIMESTAMP = 1562690702 +SHA256 (KDE/applications/19.04.3/mbox-importer-19.04.3.tar.xz) = 68160ddd977c7f8f771b2934e57ec15042508a92461ca9d233312546d8d2c537 +SIZE (KDE/applications/19.04.3/mbox-importer-19.04.3.tar.xz) = 33404 Index: head/deskutils/pim-data-exporter/Makefile =================================================================== --- head/deskutils/pim-data-exporter/Makefile (revision 506434) +++ head/deskutils/pim-data-exporter/Makefile (revision 506435) @@ -1,35 +1,35 @@ # $FreeBSD$ PORTNAME= pim-data-exporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import and export KDE PIM settings LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n itemmodels itemviews \ jobwidgets kio notifications service solid wallet \ widgetsaddons xmlgui # pim components -USE_KDE+= akonadi akonadicontacts akonadimime contacts \ +USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes contacts \ identitymanagement imap libkdepim libkleo mailcommon \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 506434) +++ head/deskutils/pim-data-exporter/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621636 -SHA256 (KDE/applications/19.04.2/pim-data-exporter-19.04.2.tar.xz) = 8240fc3bb1cfe39feea666dd3ec2bbe27e4606f1700cde4f4b2a645acc5c92b3 -SIZE (KDE/applications/19.04.2/pim-data-exporter-19.04.2.tar.xz) = 270340 +TIMESTAMP = 1562690702 +SHA256 (KDE/applications/19.04.3/pim-data-exporter-19.04.3.tar.xz) = 33bc76f798849b4421563d3d7989ae72182ad75573e176469e785d08a867b653 +SIZE (KDE/applications/19.04.3/pim-data-exporter-19.04.3.tar.xz) = 272860 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 506434) +++ head/deskutils/pim-sieve-editor/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621637 -SHA256 (KDE/applications/19.04.2/pim-sieve-editor-19.04.2.tar.xz) = cd58abc98e15fee58bb067150c1b57c6be34ccf507dcaf6dc257090814d151f7 -SIZE (KDE/applications/19.04.2/pim-sieve-editor-19.04.2.tar.xz) = 450600 +TIMESTAMP = 1562690703 +SHA256 (KDE/applications/19.04.3/pim-sieve-editor-19.04.3.tar.xz) = 331eff69a144cb7f71bba2533bd2690f26bfb56adb796dc1adaa9c5f41db4e09 +SIZE (KDE/applications/19.04.3/pim-sieve-editor-19.04.3.tar.xz) = 450400 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 506434) +++ head/devel/cervisia/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621637 -SHA256 (KDE/applications/19.04.2/cervisia-19.04.2.tar.xz) = 74578f4975e6c146d58f24ca74f56af6857cc0bf5c4d928c9b064872e1263b84 -SIZE (KDE/applications/19.04.2/cervisia-19.04.2.tar.xz) = 1891720 +TIMESTAMP = 1562690703 +SHA256 (KDE/applications/19.04.3/cervisia-19.04.3.tar.xz) = e0e04076ef5d43b18a571b5f3f8acb774a5c2fe03a901cd5fbf65621fc5e05eb +SIZE (KDE/applications/19.04.3/cervisia-19.04.3.tar.xz) = 1895668 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 506434) +++ head/devel/dolphin-plugins/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621637 -SHA256 (KDE/applications/19.04.2/dolphin-plugins-19.04.2.tar.xz) = 442ed0b6f08dd493885155e090847a069915518fbbbae5dd4923cb2ca3860901 -SIZE (KDE/applications/19.04.2/dolphin-plugins-19.04.2.tar.xz) = 192500 +TIMESTAMP = 1562690703 +SHA256 (KDE/applications/19.04.3/dolphin-plugins-19.04.3.tar.xz) = a68e15b71fa35acb190952ef49b2611876317e3bb0420d65d5365bc03feb9542 +SIZE (KDE/applications/19.04.3/dolphin-plugins-19.04.3.tar.xz) = 191524 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 506434) +++ head/devel/kapptemplate/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621638 -SHA256 (KDE/applications/19.04.2/kapptemplate-19.04.2.tar.xz) = 72921e8c33bee48848f349617cbe26da14afbcb6e8c8cebd480ef260ed669ce6 -SIZE (KDE/applications/19.04.2/kapptemplate-19.04.2.tar.xz) = 317068 +TIMESTAMP = 1562690704 +SHA256 (KDE/applications/19.04.3/kapptemplate-19.04.3.tar.xz) = 023273adf6df75d68b3ee52d14924887e403b80dea23eb765a98242fddcd4f37 +SIZE (KDE/applications/19.04.3/kapptemplate-19.04.3.tar.xz) = 317360 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 506434) +++ head/devel/kcachegrind/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621638 -SHA256 (KDE/applications/19.04.2/kcachegrind-19.04.2.tar.xz) = 00f57a93fc98b51b1828ad73a7e9be0b9dfb2f0e98e481ac16e336b04d4bd3aa -SIZE (KDE/applications/19.04.2/kcachegrind-19.04.2.tar.xz) = 807404 +TIMESTAMP = 1562690704 +SHA256 (KDE/applications/19.04.3/kcachegrind-19.04.3.tar.xz) = 856649529f0c19749a2b73125351400f401521664c9044fc33f92a09073d5270 +SIZE (KDE/applications/19.04.3/kcachegrind-19.04.3.tar.xz) = 813188 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 506434) +++ head/devel/kde-dev-scripts/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621638 -SHA256 (KDE/applications/19.04.2/kde-dev-scripts-19.04.2.tar.xz) = f81e95781d72c76a1acb8ab24b4407f0044e6c6ebb6db7dc2581df24905ce856 -SIZE (KDE/applications/19.04.2/kde-dev-scripts-19.04.2.tar.xz) = 377208 +TIMESTAMP = 1562690704 +SHA256 (KDE/applications/19.04.3/kde-dev-scripts-19.04.3.tar.xz) = ef71c4891e9fe8bde99159a12a2539227b3994ad33ad46073a08074d61ec5b61 +SIZE (KDE/applications/19.04.3/kde-dev-scripts-19.04.3.tar.xz) = 377552 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 506434) +++ head/devel/kde-dev-utils/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621639 -SHA256 (KDE/applications/19.04.2/kde-dev-utils-19.04.2.tar.xz) = fb4862158147b5e252182cee7f1cb24b76b6fb0c387c3c59fe5e40d565a00de5 -SIZE (KDE/applications/19.04.2/kde-dev-utils-19.04.2.tar.xz) = 61664 +TIMESTAMP = 1562690705 +SHA256 (KDE/applications/19.04.3/kde-dev-utils-19.04.3.tar.xz) = b8bde609a66482224d8c581692ecba0665894143ba64e816797a44eea7453a43 +SIZE (KDE/applications/19.04.3/kde-dev-utils-19.04.3.tar.xz) = 61564 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 506434) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621639 -SHA256 (KDE/applications/19.04.2/kdesdk-thumbnailers-19.04.2.tar.xz) = d76bf09ba036faecbcc3bdfe113f41970229f3b75a2ef60e8383ab893947001f -SIZE (KDE/applications/19.04.2/kdesdk-thumbnailers-19.04.2.tar.xz) = 17256 +TIMESTAMP = 1562690705 +SHA256 (KDE/applications/19.04.3/kdesdk-thumbnailers-19.04.3.tar.xz) = 771052d4f4482e88bb70a00a55b3b1755055088dce998e723948ff3de5c576fe +SIZE (KDE/applications/19.04.3/kdesdk-thumbnailers-19.04.3.tar.xz) = 17320 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 506434) +++ head/devel/kio-extras/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621639 -SHA256 (KDE/applications/19.04.2/kio-extras-19.04.2.tar.xz) = 321e27bd27ed26980e5e9b4b638f43045cfdaa8488b1642e2378178af7327e81 -SIZE (KDE/applications/19.04.2/kio-extras-19.04.2.tar.xz) = 570372 +TIMESTAMP = 1562690706 +SHA256 (KDE/applications/19.04.3/kio-extras-19.04.3.tar.xz) = b65cb37a5965782a9eaae80840fdd7e06505aece33cc6774510c65e1fea3f55b +SIZE (KDE/applications/19.04.3/kio-extras-19.04.3.tar.xz) = 570436 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 506434) +++ head/devel/lokalize/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621640 -SHA256 (KDE/applications/19.04.2/lokalize-19.04.2.tar.xz) = 0d102815c4fd3301505ba34f4864a2e90d0bece18a59523d8ff9d9bdb91f0807 -SIZE (KDE/applications/19.04.2/lokalize-19.04.2.tar.xz) = 1676696 +TIMESTAMP = 1562690706 +SHA256 (KDE/applications/19.04.3/lokalize-19.04.3.tar.xz) = ec8c552a176d131140273f975958e29f3a476c840cab0c470db072cc850e85c8 +SIZE (KDE/applications/19.04.3/lokalize-19.04.3.tar.xz) = 1677308 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 506434) +++ head/devel/poxml/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621640 -SHA256 (KDE/applications/19.04.2/poxml-19.04.2.tar.xz) = 066caa7951189ff0a0d11e745af5f6fcb754a57ca46305dd2e748b9a1d5e63bd -SIZE (KDE/applications/19.04.2/poxml-19.04.2.tar.xz) = 43244 +TIMESTAMP = 1562690706 +SHA256 (KDE/applications/19.04.3/poxml-19.04.3.tar.xz) = 844ccecc8db4c6da4b84a4829cdd1961603a09fd5ee18dfda73a9def78addefe +SIZE (KDE/applications/19.04.3/poxml-19.04.3.tar.xz) = 43336 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 506434) +++ head/devel/umbrello/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621640 -SHA256 (KDE/applications/19.04.2/umbrello-19.04.2.tar.xz) = de4b4884753548c6c46f827738cb47b05b0f051c7accff5b8be4f8b8981be9b9 -SIZE (KDE/applications/19.04.2/umbrello-19.04.2.tar.xz) = 3673940 +TIMESTAMP = 1562690707 +SHA256 (KDE/applications/19.04.3/umbrello-19.04.3.tar.xz) = a507f31087c0103873e78004bc47b632d8cd7cdda2734e342a19da48d0c3780c +SIZE (KDE/applications/19.04.3/umbrello-19.04.3.tar.xz) = 3689040 Index: head/devel/umbrello/pkg-plist =================================================================== --- head/devel/umbrello/pkg-plist (revision 506434) +++ head/devel/umbrello/pkg-plist (revision 506435) @@ -1,160 +1,169 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop +share/umbrello5/simple4125/sdbcent.mod +share/umbrello5/simple4125/sdbhier.mod +share/umbrello5/simple4125/sdbpool.mod +share/umbrello5/simple4125/sdocbook-custom.dtd +share/umbrello5/simple4125/sdocbook.css +share/umbrello5/simple4125/sdocbook.dtd +share/umbrello5/simple4125/sdocbookref-custom.dtd +share/umbrello5/simple4125/sdocbookref.dtd +share/umbrello5/simple4125/sinclist.mod share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 506434) +++ head/editors/kate/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621641 -SHA256 (KDE/applications/19.04.2/kate-19.04.2.tar.xz) = 7bac7edca897a5123fc14f135f7f0f1e579ed0ead7462221f20006516c704ab7 -SIZE (KDE/applications/19.04.2/kate-19.04.2.tar.xz) = 5796476 +TIMESTAMP = 1562690707 +SHA256 (KDE/applications/19.04.3/kate-19.04.3.tar.xz) = b1dcd45270c0494e97f32f435a943ca27b0bcb23065a9ad2a1fe37e4a81ad9a6 +SIZE (KDE/applications/19.04.3/kate-19.04.3.tar.xz) = 5790932 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 506434) +++ head/editors/kate/pkg-plist (revision 506435) @@ -1,1197 +1,1198 @@ 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/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/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/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/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/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/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.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/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/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/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.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/kwrite.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/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/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/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/katexmltools.mo share/locale/lt/LC_MESSAGES/kterustcompletion.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/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/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/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/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/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/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/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/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/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/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/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 506434) +++ head/games/blinken/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621641 -SHA256 (KDE/applications/19.04.2/blinken-19.04.2.tar.xz) = ef6168e67924857116371ae4c1627d9d1ca27fd32c6a6d8bc018754303bd2318 -SIZE (KDE/applications/19.04.2/blinken-19.04.2.tar.xz) = 2818724 +TIMESTAMP = 1562690707 +SHA256 (KDE/applications/19.04.3/blinken-19.04.3.tar.xz) = db0cb33ef117ad3c05f7f90a0d931106141431448d7fbb7c49f4832273313001 +SIZE (KDE/applications/19.04.3/blinken-19.04.3.tar.xz) = 2820320 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 506434) +++ head/games/bomber/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621641 -SHA256 (KDE/applications/19.04.2/bomber-19.04.2.tar.xz) = 423d9889d2241a9e69a0ca1cb2532816464bb386430a38209afa121fb5912bb5 -SIZE (KDE/applications/19.04.2/bomber-19.04.2.tar.xz) = 819232 +TIMESTAMP = 1562690708 +SHA256 (KDE/applications/19.04.3/bomber-19.04.3.tar.xz) = 48214f30503d37343268b817c68b47042cb9855688cc7564bf9c6dd5d2a31dda +SIZE (KDE/applications/19.04.3/bomber-19.04.3.tar.xz) = 819392 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 506434) +++ head/games/bovo/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621642 -SHA256 (KDE/applications/19.04.2/bovo-19.04.2.tar.xz) = b45229f36ce21e367cb270d8b1749ae5c05da6d08540b8c151de3978fff166a0 -SIZE (KDE/applications/19.04.2/bovo-19.04.2.tar.xz) = 199056 +TIMESTAMP = 1562690708 +SHA256 (KDE/applications/19.04.3/bovo-19.04.3.tar.xz) = ee4b2480d51ba768e241faf70fcbe955656840c648e9d81c2a269ccc8558ea35 +SIZE (KDE/applications/19.04.3/bovo-19.04.3.tar.xz) = 199884 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 506434) +++ head/games/granatier/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621642 -SHA256 (KDE/applications/19.04.2/granatier-19.04.2.tar.xz) = af7787cd2b4901dfb48f9ca1654dddc52e97f87b4e004c658a89404eaa52adf4 -SIZE (KDE/applications/19.04.2/granatier-19.04.2.tar.xz) = 1943180 +TIMESTAMP = 1562690709 +SHA256 (KDE/applications/19.04.3/granatier-19.04.3.tar.xz) = 996dafafc4a72cf49748c9e7046267980d5c9639b84c26e85266850dd1a9df21 +SIZE (KDE/applications/19.04.3/granatier-19.04.3.tar.xz) = 1941860 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 506434) +++ head/games/kanagram/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621642 -SHA256 (KDE/applications/19.04.2/kanagram-19.04.2.tar.xz) = 3e811a17a10fb8e0e0385c1f8ee21740dec41edef4b8919bd080d3cfd4ea87f8 -SIZE (KDE/applications/19.04.2/kanagram-19.04.2.tar.xz) = 8030896 +TIMESTAMP = 1562690709 +SHA256 (KDE/applications/19.04.3/kanagram-19.04.3.tar.xz) = 945276e94ccc82d958400583af4377f40d473bdc566d37962f7137f47663a728 +SIZE (KDE/applications/19.04.3/kanagram-19.04.3.tar.xz) = 8034020 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 506434) +++ head/games/kapman/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621643 -SHA256 (KDE/applications/19.04.2/kapman-19.04.2.tar.xz) = 1e7c4e87b185994c5568138406fa1b08032cb6ac3a518f37ee1171b6799e469a -SIZE (KDE/applications/19.04.2/kapman-19.04.2.tar.xz) = 2525720 +TIMESTAMP = 1562690709 +SHA256 (KDE/applications/19.04.3/kapman-19.04.3.tar.xz) = 6b1810bf946ff84b34b9fd6e913811d0e0a249cad5cb49b7990d742ec2832ca1 +SIZE (KDE/applications/19.04.3/kapman-19.04.3.tar.xz) = 2524828 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 506434) +++ head/games/katomic/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621643 -SHA256 (KDE/applications/19.04.2/katomic-19.04.2.tar.xz) = 39cf705ea4f1950f38edffd9bdb91ff5c745e8f1a36021e4560a26ecd5f0bf94 -SIZE (KDE/applications/19.04.2/katomic-19.04.2.tar.xz) = 1422580 +TIMESTAMP = 1562690710 +SHA256 (KDE/applications/19.04.3/katomic-19.04.3.tar.xz) = e4edc6a0058ed929204b64bb99af294752bc20b1693e5930c2616af45d0587c3 +SIZE (KDE/applications/19.04.3/katomic-19.04.3.tar.xz) = 1422248 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 506434) +++ head/games/kblackbox/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621643 -SHA256 (KDE/applications/19.04.2/kblackbox-19.04.2.tar.xz) = b8aecbfb4d679550df77a61e882d8b798bb50d2d86b65231c2679ff285a9f08c -SIZE (KDE/applications/19.04.2/kblackbox-19.04.2.tar.xz) = 443188 +TIMESTAMP = 1562690710 +SHA256 (KDE/applications/19.04.3/kblackbox-19.04.3.tar.xz) = 45b8f5218c8817c38a13269ac5464c5abd2010d1ddb27ec255de1bf43ef2fe91 +SIZE (KDE/applications/19.04.3/kblackbox-19.04.3.tar.xz) = 443180 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 506434) +++ head/games/kblocks/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621644 -SHA256 (KDE/applications/19.04.2/kblocks-19.04.2.tar.xz) = 89577e57697364a80dd3af6a21096aba1fdf4f9f9f7e613b7cfcd44d1689eed3 -SIZE (KDE/applications/19.04.2/kblocks-19.04.2.tar.xz) = 1921548 +TIMESTAMP = 1562690710 +SHA256 (KDE/applications/19.04.3/kblocks-19.04.3.tar.xz) = 10b350f91978c221c224c42e2f50dc8c2e86e187de8e46258b10cf3799fb4b74 +SIZE (KDE/applications/19.04.3/kblocks-19.04.3.tar.xz) = 1920560 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 506434) +++ head/games/kbounce/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621644 -SHA256 (KDE/applications/19.04.2/kbounce-19.04.2.tar.xz) = 1e77b20a04a94b874a35e26def68d068f5127328a8908336d836a87619394205 -SIZE (KDE/applications/19.04.2/kbounce-19.04.2.tar.xz) = 3467252 +TIMESTAMP = 1562690711 +SHA256 (KDE/applications/19.04.3/kbounce-19.04.3.tar.xz) = 9a4ee5257becad72b359cc5985412ba2c4a15a81afe89022f812ec9eda7b5356 +SIZE (KDE/applications/19.04.3/kbounce-19.04.3.tar.xz) = 3465392 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 506434) +++ head/games/kbreakout/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621644 -SHA256 (KDE/applications/19.04.2/kbreakout-19.04.2.tar.xz) = 857f612f8a22661185189a007fff7d2d87f7c9084ac04b9ec96ca17543629666 -SIZE (KDE/applications/19.04.2/kbreakout-19.04.2.tar.xz) = 2275096 +TIMESTAMP = 1562690711 +SHA256 (KDE/applications/19.04.3/kbreakout-19.04.3.tar.xz) = 7ef268806451e3b7ee813b921247257ff1a466ebd3c48b20bfc77ebebef10c9e +SIZE (KDE/applications/19.04.3/kbreakout-19.04.3.tar.xz) = 2273652 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 506434) +++ head/games/kdiamond/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621655 -SHA256 (KDE/applications/19.04.2/kdiamond-19.04.2.tar.xz) = 300fad925c1c4af148a3fcf85af3976bbb4f6a722dacfd20d73ff988f0fbf23b -SIZE (KDE/applications/19.04.2/kdiamond-19.04.2.tar.xz) = 4719420 +TIMESTAMP = 1562690722 +SHA256 (KDE/applications/19.04.3/kdiamond-19.04.3.tar.xz) = 22a567a63dd2bf9006d970e9aa5aeabff94c2ae9c98004bbd6cc35083a995536 +SIZE (KDE/applications/19.04.3/kdiamond-19.04.3.tar.xz) = 4720096 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 506434) +++ head/games/kfourinline/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621655 -SHA256 (KDE/applications/19.04.2/kfourinline-19.04.2.tar.xz) = e15805c3628d3fb112228da06755fca174f654e7d2dcba5c264cb61d7817fdef -SIZE (KDE/applications/19.04.2/kfourinline-19.04.2.tar.xz) = 635544 +TIMESTAMP = 1562690722 +SHA256 (KDE/applications/19.04.3/kfourinline-19.04.3.tar.xz) = 62a163f9c2034deba3daa93c4ac07c476895514ec9fefdd9a0792726a61d066f +SIZE (KDE/applications/19.04.3/kfourinline-19.04.3.tar.xz) = 635864 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 506434) +++ head/games/kgoldrunner/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621656 -SHA256 (KDE/applications/19.04.2/kgoldrunner-19.04.2.tar.xz) = 5be5a403e3feec200b26a8943a45112360dfc3159212fbc47ce43657725237a4 -SIZE (KDE/applications/19.04.2/kgoldrunner-19.04.2.tar.xz) = 4413472 +TIMESTAMP = 1562690723 +SHA256 (KDE/applications/19.04.3/kgoldrunner-19.04.3.tar.xz) = f1325580ebd91dcac9a79e66f939b372e7ea8264ef8671098471055f297110a8 +SIZE (KDE/applications/19.04.3/kgoldrunner-19.04.3.tar.xz) = 4417116 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 506434) +++ head/games/khangman/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621656 -SHA256 (KDE/applications/19.04.2/khangman-19.04.2.tar.xz) = 56d86b311708a9e5395f37b8c69231d7a4bb4dfb2aeaded2becc155b5e61c830 -SIZE (KDE/applications/19.04.2/khangman-19.04.2.tar.xz) = 7123600 +TIMESTAMP = 1562690723 +SHA256 (KDE/applications/19.04.3/khangman-19.04.3.tar.xz) = f2fd0d70c405ebd158f3e11a52cd1e268b1238fdada674b2f59b46324d2610a8 +SIZE (KDE/applications/19.04.3/khangman-19.04.3.tar.xz) = 7120720 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 506434) +++ head/games/kigo/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621656 -SHA256 (KDE/applications/19.04.2/kigo-19.04.2.tar.xz) = bed186194bac3914560371a74de171ac6845a6a8c34f29a9e06b8d7ae0f9d70c -SIZE (KDE/applications/19.04.2/kigo-19.04.2.tar.xz) = 5225080 +TIMESTAMP = 1562690724 +SHA256 (KDE/applications/19.04.3/kigo-19.04.3.tar.xz) = be91e9fa965505515c36733f260120e6c2ca7fe4856622f03bda07d7a0595ef0 +SIZE (KDE/applications/19.04.3/kigo-19.04.3.tar.xz) = 5224900 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 506434) +++ head/games/killbots/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621657 -SHA256 (KDE/applications/19.04.2/killbots-19.04.2.tar.xz) = 81cfdec53eb27738ed47d4322a2899440bee486099fcaf2d4e075bcd1106555d -SIZE (KDE/applications/19.04.2/killbots-19.04.2.tar.xz) = 1170860 +TIMESTAMP = 1562690724 +SHA256 (KDE/applications/19.04.3/killbots-19.04.3.tar.xz) = 4295853c0ee137474a3a8c193d4b038f020504a37a6ab3daf81cf4d43ed5d656 +SIZE (KDE/applications/19.04.3/killbots-19.04.3.tar.xz) = 1171900 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 506434) +++ head/games/kiriki/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621657 -SHA256 (KDE/applications/19.04.2/kiriki-19.04.2.tar.xz) = f2714bb1897796d83ab5516fc3f0ef5c955a5278458225ff7a5979c67725f24b -SIZE (KDE/applications/19.04.2/kiriki-19.04.2.tar.xz) = 372920 +TIMESTAMP = 1562690724 +SHA256 (KDE/applications/19.04.3/kiriki-19.04.3.tar.xz) = ccb33616936c879aa61fdbaa87ae130c4f22c34b70cdd9b38b128bace850466e +SIZE (KDE/applications/19.04.3/kiriki-19.04.3.tar.xz) = 372588 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 506434) +++ head/games/kjumpingcube/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621657 -SHA256 (KDE/applications/19.04.2/kjumpingcube-19.04.2.tar.xz) = 0bf8c21420fe5a572a0dc1f2c259da5bd9e790051af1514a9d5fa244f6a5e424 -SIZE (KDE/applications/19.04.2/kjumpingcube-19.04.2.tar.xz) = 288016 +TIMESTAMP = 1562690725 +SHA256 (KDE/applications/19.04.3/kjumpingcube-19.04.3.tar.xz) = 03feb2c3e0f46f1ca4f4d24ce8fd350c607bfaf52f715abbf379709d8d0a6818 +SIZE (KDE/applications/19.04.3/kjumpingcube-19.04.3.tar.xz) = 287628 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 506434) +++ head/games/klickety/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621658 -SHA256 (KDE/applications/19.04.2/klickety-19.04.2.tar.xz) = e2b6863bc5f8286209b1a187205606a375c297d9a3ee6f20b5facde229e0ed9b -SIZE (KDE/applications/19.04.2/klickety-19.04.2.tar.xz) = 1389120 +TIMESTAMP = 1562690725 +SHA256 (KDE/applications/19.04.3/klickety-19.04.3.tar.xz) = 27b05ed8522ff353b4327f79ec069c453fc4545d2a07ca11fc53e53647841fe9 +SIZE (KDE/applications/19.04.3/klickety-19.04.3.tar.xz) = 1389368 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 506434) +++ head/games/klines/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621658 -SHA256 (KDE/applications/19.04.2/klines-19.04.2.tar.xz) = 8d39aa35f74864d9835d795d844c0388f5e6840f2eeed5611e94f4d2aeb18790 -SIZE (KDE/applications/19.04.2/klines-19.04.2.tar.xz) = 1779732 +TIMESTAMP = 1562690725 +SHA256 (KDE/applications/19.04.3/klines-19.04.3.tar.xz) = a0d133a9a08e8f3953ae54b7da187c56cfbc518bfeadac4f32b82c9aa4f33c8b +SIZE (KDE/applications/19.04.3/klines-19.04.3.tar.xz) = 1781072 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 506434) +++ head/games/kmahjongg/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621658 -SHA256 (KDE/applications/19.04.2/kmahjongg-19.04.2.tar.xz) = b5952437a2fba5ef4c40fc21a499e09408c99629ded08bdef04f351d0a997e1a -SIZE (KDE/applications/19.04.2/kmahjongg-19.04.2.tar.xz) = 4063720 +TIMESTAMP = 1562690726 +SHA256 (KDE/applications/19.04.3/kmahjongg-19.04.3.tar.xz) = 41bd533bf8d8b1e04451cb3c9165b08f9135603c0085d8b402d0e8e026b8ed00 +SIZE (KDE/applications/19.04.3/kmahjongg-19.04.3.tar.xz) = 4064396 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 506434) +++ head/games/kmines/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621659 -SHA256 (KDE/applications/19.04.2/kmines-19.04.2.tar.xz) = 0411b74776b694e0ed6c8c301622a16364b93fdfacacb497184693056e9fa660 -SIZE (KDE/applications/19.04.2/kmines-19.04.2.tar.xz) = 897704 +TIMESTAMP = 1562690726 +SHA256 (KDE/applications/19.04.3/kmines-19.04.3.tar.xz) = 34b23a66121183272a58f2cb38b798cab4f290d9f04546418ddb4b2b20e262a1 +SIZE (KDE/applications/19.04.3/kmines-19.04.3.tar.xz) = 897072 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 506434) +++ head/games/knavalbattle/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621659 -SHA256 (KDE/applications/19.04.2/knavalbattle-19.04.2.tar.xz) = b111e54e734581b43d34ffcc4d51286e18fb0d2eecfccb8ce6bc5a6746c919dd -SIZE (KDE/applications/19.04.2/knavalbattle-19.04.2.tar.xz) = 1279948 +TIMESTAMP = 1562690726 +SHA256 (KDE/applications/19.04.3/knavalbattle-19.04.3.tar.xz) = 468e3fc16e17d3cbde2e213a46dcb07d1ea030a1522f40ab10b429254b8249af +SIZE (KDE/applications/19.04.3/knavalbattle-19.04.3.tar.xz) = 1281700 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 506434) +++ head/games/knetwalk/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621659 -SHA256 (KDE/applications/19.04.2/knetwalk-19.04.2.tar.xz) = 4652c39bd7ec65b84b28556548c8cc01cc06462e3eacf20c7ed4af4ba8f31bd3 -SIZE (KDE/applications/19.04.2/knetwalk-19.04.2.tar.xz) = 1038828 +TIMESTAMP = 1562690727 +SHA256 (KDE/applications/19.04.3/knetwalk-19.04.3.tar.xz) = d211a1bbc3a4f57dbea73da11d4ff351150de2ca6bd06251c2775a4e16601489 +SIZE (KDE/applications/19.04.3/knetwalk-19.04.3.tar.xz) = 1037300 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 506434) +++ head/games/knights/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621660 -SHA256 (KDE/applications/19.04.2/knights-19.04.2.tar.xz) = 55a9cf92d8c60abc42a920209ce11abfa14fcb4a2ea5d8186a0b8f85311387e5 -SIZE (KDE/applications/19.04.2/knights-19.04.2.tar.xz) = 3508192 +TIMESTAMP = 1562690727 +SHA256 (KDE/applications/19.04.3/knights-19.04.3.tar.xz) = ab2e01ee6e309bf5221333168b58cf41c20ad5a5e70beeb31520d4076f6153e5 +SIZE (KDE/applications/19.04.3/knights-19.04.3.tar.xz) = 3508644 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 506434) +++ head/games/kolf/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621660 -SHA256 (KDE/applications/19.04.2/kolf-19.04.2.tar.xz) = 70dc1ca5412a0c3f06b488b36c44670c8527986cace82971ee484c0ff63a98f5 -SIZE (KDE/applications/19.04.2/kolf-19.04.2.tar.xz) = 1028680 +TIMESTAMP = 1562690728 +SHA256 (KDE/applications/19.04.3/kolf-19.04.3.tar.xz) = c7a352332a2ff8e856bcf09e3bd0bfa8670e140da2e43e894ecf9f022fcef020 +SIZE (KDE/applications/19.04.3/kolf-19.04.3.tar.xz) = 1031060 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 506434) +++ head/games/kollision/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621660 -SHA256 (KDE/applications/19.04.2/kollision-19.04.2.tar.xz) = 8b99cc97b233cdc5e853f79037547b3a2e8d5a7f1a409819aebbbad4658f7eb7 -SIZE (KDE/applications/19.04.2/kollision-19.04.2.tar.xz) = 281324 +TIMESTAMP = 1562690728 +SHA256 (KDE/applications/19.04.3/kollision-19.04.3.tar.xz) = 8374313b4bf4590ba051051fb6510774862690468719e8425addcdfd9daeff91 +SIZE (KDE/applications/19.04.3/kollision-19.04.3.tar.xz) = 280592 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 506434) +++ head/games/konquest/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621661 -SHA256 (KDE/applications/19.04.2/konquest-19.04.2.tar.xz) = 1b62865f527d23651c6cd8092d37ee5615830518e281a836368c16827c922ab2 -SIZE (KDE/applications/19.04.2/konquest-19.04.2.tar.xz) = 658468 +TIMESTAMP = 1562690728 +SHA256 (KDE/applications/19.04.3/konquest-19.04.3.tar.xz) = cdf061ca7f2a3c30fd24b1bada2c9854ed4cb58232fbd5c999cb66602bc3d15b +SIZE (KDE/applications/19.04.3/konquest-19.04.3.tar.xz) = 658488 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 506434) +++ head/games/kpat/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621661 -SHA256 (KDE/applications/19.04.2/kpat-19.04.2.tar.xz) = fe98bd4bb10d7d94fbef17e67c7b192859a3c858a7a4f7469112401b956c2956 -SIZE (KDE/applications/19.04.2/kpat-19.04.2.tar.xz) = 3575224 +TIMESTAMP = 1562690729 +SHA256 (KDE/applications/19.04.3/kpat-19.04.3.tar.xz) = ca9d53d400a2be3ca421d6d916cafeff3b9dcf220e627a1762f96817e952e8e2 +SIZE (KDE/applications/19.04.3/kpat-19.04.3.tar.xz) = 3576096 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 506434) +++ head/games/kreversi/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621661 -SHA256 (KDE/applications/19.04.2/kreversi-19.04.2.tar.xz) = 868d77bffca4d93bea6bb6b160d7670805b0cb09dd8543e1f46bbb0bab85327f -SIZE (KDE/applications/19.04.2/kreversi-19.04.2.tar.xz) = 942792 +TIMESTAMP = 1562690729 +SHA256 (KDE/applications/19.04.3/kreversi-19.04.3.tar.xz) = 25325dee759916c803f2c43b8f97152257b0fcb90f9687d4f916c132ae956af4 +SIZE (KDE/applications/19.04.3/kreversi-19.04.3.tar.xz) = 942540 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 506434) +++ head/games/kshisen/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621662 -SHA256 (KDE/applications/19.04.2/kshisen-19.04.2.tar.xz) = b578125758cb89bf60d39e521c91c896464e0a7edfc5eea6a385e57ba9ab8508 -SIZE (KDE/applications/19.04.2/kshisen-19.04.2.tar.xz) = 822468 +TIMESTAMP = 1562690729 +SHA256 (KDE/applications/19.04.3/kshisen-19.04.3.tar.xz) = 3109a0bdb8933eebf10b945a75fc8b355aa8c97d5debd28943d8145a80efe2fe +SIZE (KDE/applications/19.04.3/kshisen-19.04.3.tar.xz) = 822640 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 506434) +++ head/games/ksirk/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621662 -SHA256 (KDE/applications/19.04.2/ksirk-19.04.2.tar.xz) = c749a3b32a1c67ee992bbd0dfa60227383fae82066871eb72c10f520f9e0e243 -SIZE (KDE/applications/19.04.2/ksirk-19.04.2.tar.xz) = 6990296 +TIMESTAMP = 1562690730 +SHA256 (KDE/applications/19.04.3/ksirk-19.04.3.tar.xz) = d91e6c34ac284e7f7e95d07d2f94852cb6ef549dd7e00f404ea40e22a4d2802b +SIZE (KDE/applications/19.04.3/ksirk-19.04.3.tar.xz) = 6992524 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 506434) +++ head/games/ksnakeduel/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621662 -SHA256 (KDE/applications/19.04.2/ksnakeduel-19.04.2.tar.xz) = 42f024c36519d9007f0278cd527d8829e25c5c5bb4378c648a59f5c9100785a9 -SIZE (KDE/applications/19.04.2/ksnakeduel-19.04.2.tar.xz) = 604372 +TIMESTAMP = 1562690730 +SHA256 (KDE/applications/19.04.3/ksnakeduel-19.04.3.tar.xz) = 05b5c7f0f4ed21ac2926bbe9d2b3913ed8b512863837c3b83754c1048fe0cd04 +SIZE (KDE/applications/19.04.3/ksnakeduel-19.04.3.tar.xz) = 604740 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 506434) +++ head/games/kspaceduel/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621663 -SHA256 (KDE/applications/19.04.2/kspaceduel-19.04.2.tar.xz) = 33ebb341be76ee385eaa17268a1634f653c10789d51cfb9d953fedb1c85ae771 -SIZE (KDE/applications/19.04.2/kspaceduel-19.04.2.tar.xz) = 611496 +TIMESTAMP = 1562690731 +SHA256 (KDE/applications/19.04.3/kspaceduel-19.04.3.tar.xz) = c6a0e64f6c3149b408d3d11435388b6cd7760c2b1a4ead03a72215ca7fbadae0 +SIZE (KDE/applications/19.04.3/kspaceduel-19.04.3.tar.xz) = 611000 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 506434) +++ head/games/ksquares/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621663 -SHA256 (KDE/applications/19.04.2/ksquares-19.04.2.tar.xz) = c4e69a0024c3ddbae37a2e7cbb87d2fe86dd56d8734684bf6c807f4f7d036259 -SIZE (KDE/applications/19.04.2/ksquares-19.04.2.tar.xz) = 260400 +TIMESTAMP = 1562690731 +SHA256 (KDE/applications/19.04.3/ksquares-19.04.3.tar.xz) = d85c90f883c3ce1559dd0d3ceb20500563704cf6d1824c5fea3ddce0e1ca7563 +SIZE (KDE/applications/19.04.3/ksquares-19.04.3.tar.xz) = 260376 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 506434) +++ head/games/ksudoku/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621673 -SHA256 (KDE/applications/19.04.2/ksudoku-19.04.2.tar.xz) = 91a257a142cabd755fb22b7350f215ad1298fe1506c872b00d275ab7d500a248 -SIZE (KDE/applications/19.04.2/ksudoku-19.04.2.tar.xz) = 1648216 +TIMESTAMP = 1562690741 +SHA256 (KDE/applications/19.04.3/ksudoku-19.04.3.tar.xz) = 608ffcde2d0bad3e2a19d7842c47b41627d009721a4e3161ccf2736f7777e922 +SIZE (KDE/applications/19.04.3/ksudoku-19.04.3.tar.xz) = 1647672 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 506434) +++ head/games/ktuberling/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621674 -SHA256 (KDE/applications/19.04.2/ktuberling-19.04.2.tar.xz) = 18497826db07c8d5dc7b2bc1b0154a1b6f6a3e2b16066a36ff5e2fce7bb92356 -SIZE (KDE/applications/19.04.2/ktuberling-19.04.2.tar.xz) = 32636004 +TIMESTAMP = 1562690742 +SHA256 (KDE/applications/19.04.3/ktuberling-19.04.3.tar.xz) = 7abc2254d7a5c594e021807172486dfd93cfbda827a1b41583f8b1977a1a4f21 +SIZE (KDE/applications/19.04.3/ktuberling-19.04.3.tar.xz) = 32635044 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 506434) +++ head/games/kubrick/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621684 -SHA256 (KDE/applications/19.04.2/kubrick-19.04.2.tar.xz) = 0b448d39453e33cb610249d693da361b3a5c7fc4054b8581be2db71364168bc1 -SIZE (KDE/applications/19.04.2/kubrick-19.04.2.tar.xz) = 312908 +TIMESTAMP = 1562690752 +SHA256 (KDE/applications/19.04.3/kubrick-19.04.3.tar.xz) = ee2932136e6bb7c9b03d0014c6ec845fb789668035ef22b2235dad23e6a5e4c7 +SIZE (KDE/applications/19.04.3/kubrick-19.04.3.tar.xz) = 313252 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 506434) +++ head/games/libkdegames/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621684 -SHA256 (KDE/applications/19.04.2/libkdegames-19.04.2.tar.xz) = 83c79aa05f116b284a9ba3e20eab286822e28a46eb45cad39fcdb357a553cf0a -SIZE (KDE/applications/19.04.2/libkdegames-19.04.2.tar.xz) = 6375324 +TIMESTAMP = 1562690753 +SHA256 (KDE/applications/19.04.3/libkdegames-19.04.3.tar.xz) = 187aa81539113bc6786d861e1f5302fa17533ae1108299bbd1a86be18accfbc4 +SIZE (KDE/applications/19.04.3/libkdegames-19.04.3.tar.xz) = 6378128 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 506434) +++ head/games/libkmahjongg/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621685 -SHA256 (KDE/applications/19.04.2/libkmahjongg-19.04.2.tar.xz) = b5c8b6a9f0109ace20d93fe91d93c3dd7db624759172b5a95f1dfae719e39939 -SIZE (KDE/applications/19.04.2/libkmahjongg-19.04.2.tar.xz) = 1682992 +TIMESTAMP = 1562690753 +SHA256 (KDE/applications/19.04.3/libkmahjongg-19.04.3.tar.xz) = 995f10fc62c506dbbb31bdab635fd52cb08e03eb09c859353aaf3423f48c7381 +SIZE (KDE/applications/19.04.3/libkmahjongg-19.04.3.tar.xz) = 1683960 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 506434) +++ head/games/lskat/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621685 -SHA256 (KDE/applications/19.04.2/lskat-19.04.2.tar.xz) = cd0981c616eabf2fd3fb5d2781c5e649acafd511d12fe9790dfe8e3dbc50223b -SIZE (KDE/applications/19.04.2/lskat-19.04.2.tar.xz) = 1217176 +TIMESTAMP = 1562690753 +SHA256 (KDE/applications/19.04.3/lskat-19.04.3.tar.xz) = 4e31cbad9534838c3fe380fd1326f56158dcc2b3a63a1e4c05529dcc9fc9b703 +SIZE (KDE/applications/19.04.3/lskat-19.04.3.tar.xz) = 1217088 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 506434) +++ head/games/palapeli/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621685 -SHA256 (KDE/applications/19.04.2/palapeli-19.04.2.tar.xz) = 193c734989975cf49b25faef2e0090c3193db499b81c32294f986fba538f017b -SIZE (KDE/applications/19.04.2/palapeli-19.04.2.tar.xz) = 2068896 +TIMESTAMP = 1562690754 +SHA256 (KDE/applications/19.04.3/palapeli-19.04.3.tar.xz) = 7cbf7a1666e16a476de9bdab7155f17f2224baa7db9d80cd77c785dead6f2e10 +SIZE (KDE/applications/19.04.3/palapeli-19.04.3.tar.xz) = 2068716 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 506434) +++ head/games/picmi/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621686 -SHA256 (KDE/applications/19.04.2/picmi-19.04.2.tar.xz) = 2137232b993950d5ea799843c54671274f35aca9bbb5da93ce0cf709fbfea536 -SIZE (KDE/applications/19.04.2/picmi-19.04.2.tar.xz) = 1357928 +TIMESTAMP = 1562690754 +SHA256 (KDE/applications/19.04.3/picmi-19.04.3.tar.xz) = 1e47527b49f8d94da0a6ea492d23215ae7ff3fcb403116abe43665efb567beab +SIZE (KDE/applications/19.04.3/picmi-19.04.3.tar.xz) = 1358412 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 506434) +++ head/graphics/gwenview/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621686 -SHA256 (KDE/applications/19.04.2/gwenview-19.04.2.tar.xz) = a3d768dc3b1d1ccbcb3c5bf4e77f98692a222d89fe25bcaa16386dee56866d81 -SIZE (KDE/applications/19.04.2/gwenview-19.04.2.tar.xz) = 5717536 +TIMESTAMP = 1562690754 +SHA256 (KDE/applications/19.04.3/gwenview-19.04.3.tar.xz) = 1e4c6881674dfcde52a196420eae2fab61dffb05b976125dfbd65c3bf2395035 +SIZE (KDE/applications/19.04.3/gwenview-19.04.3.tar.xz) = 5713352 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 506434) +++ head/graphics/kamera/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621686 -SHA256 (KDE/applications/19.04.2/kamera-19.04.2.tar.xz) = 32c9144922b40604d5f326448b8d431b2bcb0521da495eebc34bcf509249baa1 -SIZE (KDE/applications/19.04.2/kamera-19.04.2.tar.xz) = 98804 +TIMESTAMP = 1562690755 +SHA256 (KDE/applications/19.04.3/kamera-19.04.3.tar.xz) = acf5ecf939fa8f4366d607742dc673a307fd72cfa05f4fedb04547f7d336be43 +SIZE (KDE/applications/19.04.3/kamera-19.04.3.tar.xz) = 98716 Index: head/graphics/kamera/pkg-plist =================================================================== --- head/graphics/kamera/pkg-plist (revision 506434) +++ head/graphics/kamera/pkg-plist (revision 506435) @@ -1,79 +1,80 @@ %%QT_PLUGINDIR%%/kcm_kamera.so %%QT_PLUGINDIR%%/kio_kamera.so share/kservices5/camera.protocol share/kservices5/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo +share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/solid/actions/solid_camera.desktop Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 506434) +++ head/graphics/kcolorchooser/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621687 -SHA256 (KDE/applications/19.04.2/kcolorchooser-19.04.2.tar.xz) = a405dde1a0e0f63a14c9f5aae62a7638374162dcdc394d86412d42036a8441de -SIZE (KDE/applications/19.04.2/kcolorchooser-19.04.2.tar.xz) = 19908 +TIMESTAMP = 1562690755 +SHA256 (KDE/applications/19.04.3/kcolorchooser-19.04.3.tar.xz) = f60ee47baaca59b7df8ce58902ae09d44d2cb5b7f3f5ec7b9a401c7f7e3e5ab4 +SIZE (KDE/applications/19.04.3/kcolorchooser-19.04.3.tar.xz) = 20344 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 506434) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621687 -SHA256 (KDE/applications/19.04.2/kdegraphics-mobipocket-19.04.2.tar.xz) = ac4b486a6e8e015621e5101433f956bc08742e4e85c3179fffba17543bcda6b1 -SIZE (KDE/applications/19.04.2/kdegraphics-mobipocket-19.04.2.tar.xz) = 13468 +TIMESTAMP = 1562690756 +SHA256 (KDE/applications/19.04.3/kdegraphics-mobipocket-19.04.3.tar.xz) = c073730b7f3d468f4e710a67bdb90d794b69bf0f2c149f7fac705b44b912fa94 +SIZE (KDE/applications/19.04.3/kdegraphics-mobipocket-19.04.3.tar.xz) = 13424 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 506434) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621687 -SHA256 (KDE/applications/19.04.2/svgpart-19.04.2.tar.xz) = e84ad5e6a7a3b9266d1e700633172bed22b8ebe3cc6faf1bde89990ddaa96616 -SIZE (KDE/applications/19.04.2/svgpart-19.04.2.tar.xz) = 20772 +TIMESTAMP = 1562690756 +SHA256 (KDE/applications/19.04.3/svgpart-19.04.3.tar.xz) = 5dd870a24f275b6d8e0ec9593da713c29b521234d1eb07415726d57ae3fb8dc5 +SIZE (KDE/applications/19.04.3/svgpart-19.04.3.tar.xz) = 20824 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 506434) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621688 -SHA256 (KDE/applications/19.04.2/kdegraphics-thumbnailers-19.04.2.tar.xz) = f890520e259b8edaf1c240cd3f82fb17188f2136a48a3e7ba5e15f55477e4ca6 -SIZE (KDE/applications/19.04.2/kdegraphics-thumbnailers-19.04.2.tar.xz) = 42928 +TIMESTAMP = 1562690756 +SHA256 (KDE/applications/19.04.3/kdegraphics-thumbnailers-19.04.3.tar.xz) = 1cca91081a97e851156d187794037bdcbffe996f607a1eed59a2ea00049a9f78 +SIZE (KDE/applications/19.04.3/kdegraphics-thumbnailers-19.04.3.tar.xz) = 42992 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 506434) +++ head/graphics/kimagemapeditor/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621688 -SHA256 (KDE/applications/19.04.2/kimagemapeditor-19.04.2.tar.xz) = 5608d3962ef63f050a9092e9ced8deaf607e818ca1bb55e5abc8651aca18e77c -SIZE (KDE/applications/19.04.2/kimagemapeditor-19.04.2.tar.xz) = 1070432 +TIMESTAMP = 1562690757 +SHA256 (KDE/applications/19.04.3/kimagemapeditor-19.04.3.tar.xz) = a7e5ba3d85c09c446e37baeac1c149395381b542fbbb1ab642645f631b5ab2de +SIZE (KDE/applications/19.04.3/kimagemapeditor-19.04.3.tar.xz) = 1070204 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 506434) +++ head/graphics/kolourpaint/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621688 -SHA256 (KDE/applications/19.04.2/kolourpaint-19.04.2.tar.xz) = 75b6deb494b4cbde67835a6500e123b7fe0e55dbd1dbd9b4598627c5d859d11e -SIZE (KDE/applications/19.04.2/kolourpaint-19.04.2.tar.xz) = 5652400 +TIMESTAMP = 1562690757 +SHA256 (KDE/applications/19.04.3/kolourpaint-19.04.3.tar.xz) = 7ba4089fe55c870b54ff44bd423eebe50303b0324c4b421589115c4d1d349cac +SIZE (KDE/applications/19.04.3/kolourpaint-19.04.3.tar.xz) = 5652260 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 506434) +++ head/graphics/libkdcraw/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621689 -SHA256 (KDE/applications/19.04.2/libkdcraw-19.04.2.tar.xz) = 0651d5f60a28b2835698f8c20934743657cdfa378a2035d19f81a957c7ba3b1c -SIZE (KDE/applications/19.04.2/libkdcraw-19.04.2.tar.xz) = 42180 +TIMESTAMP = 1562690757 +SHA256 (KDE/applications/19.04.3/libkdcraw-19.04.3.tar.xz) = 5017a47a76346e183e57617e093d5b61780bf564df55a07d02b1d75e2ff98c2d +SIZE (KDE/applications/19.04.3/libkdcraw-19.04.3.tar.xz) = 42144 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 506434) +++ head/graphics/libkexiv2/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621689 -SHA256 (KDE/applications/19.04.2/libkexiv2-19.04.2.tar.xz) = 905b419403bc7db465586cf423f66b66d7737e59e19d5f554d4250497ddd395a -SIZE (KDE/applications/19.04.2/libkexiv2-19.04.2.tar.xz) = 64492 +TIMESTAMP = 1562690758 +SHA256 (KDE/applications/19.04.3/libkexiv2-19.04.3.tar.xz) = b0c5da0e23e93a218f7e96f98a753b36e2d608e74ac68c687ae868b6de99d1e6 +SIZE (KDE/applications/19.04.3/libkexiv2-19.04.3.tar.xz) = 64144 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 506434) +++ head/graphics/libkipi/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621689 -SHA256 (KDE/applications/19.04.2/libkipi-19.04.2.tar.xz) = 88563d66dbd81e9031030f07dacece96c550ac6bbfd7eb6e2baae7c010518644 -SIZE (KDE/applications/19.04.2/libkipi-19.04.2.tar.xz) = 103600 +TIMESTAMP = 1562690758 +SHA256 (KDE/applications/19.04.3/libkipi-19.04.3.tar.xz) = 7da2a62e719b27221a74232375c907087be9a53b90fce0f7d36cbc11d7c13f7c +SIZE (KDE/applications/19.04.3/libkipi-19.04.3.tar.xz) = 103364 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 506434) +++ head/graphics/libksane/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621690 -SHA256 (KDE/applications/19.04.2/libksane-19.04.2.tar.xz) = 5918e87ef07b5b9e63261e3c6981b9eea1aa27d689d7184ab4d32fefb1d0bff4 -SIZE (KDE/applications/19.04.2/libksane-19.04.2.tar.xz) = 138280 +TIMESTAMP = 1562690759 +SHA256 (KDE/applications/19.04.3/libksane-19.04.3.tar.xz) = ec9c0a969806fefcefc0fda2e227bf0908e2b338fdf3377870a910d7f041e1e0 +SIZE (KDE/applications/19.04.3/libksane-19.04.3.tar.xz) = 137800 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 506434) +++ head/graphics/okular/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621690 -SHA256 (KDE/applications/19.04.2/okular-19.04.2.tar.xz) = 75569d1d14a4fb061c8ab6a692b9cede1bccbab7c2fe65271894aa2f87826bc1 -SIZE (KDE/applications/19.04.2/okular-19.04.2.tar.xz) = 6687324 +TIMESTAMP = 1562690759 +SHA256 (KDE/applications/19.04.3/okular-19.04.3.tar.xz) = 87ab5ffd852109d549d021b8fe94b9a4de212b2f164e9cc796b144732ff94282 +SIZE (KDE/applications/19.04.3/okular-19.04.3.tar.xz) = 7021028 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 506434) +++ head/graphics/spectacle/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621690 -SHA256 (KDE/applications/19.04.2/spectacle-19.04.2.tar.xz) = 6781d42e8ac64386e2944d4f3d8712c7ae3b7ed0bed7b3b29475d1b25081a84c -SIZE (KDE/applications/19.04.2/spectacle-19.04.2.tar.xz) = 957516 +TIMESTAMP = 1562690759 +SHA256 (KDE/applications/19.04.3/spectacle-19.04.3.tar.xz) = bbf2c17298608dc69139f1f0a07de05b724d83cf57e8fe085a376723d83d15d1 +SIZE (KDE/applications/19.04.3/spectacle-19.04.3.tar.xz) = 958272 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 506434) +++ head/japanese/kiten/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621691 -SHA256 (KDE/applications/19.04.2/kiten-19.04.2.tar.xz) = 7ef67af8a9151442e5bc63085b74f299c0c4de999242d5a520e2e42785c5d229 -SIZE (KDE/applications/19.04.2/kiten-19.04.2.tar.xz) = 11281636 +TIMESTAMP = 1562690760 +SHA256 (KDE/applications/19.04.3/kiten-19.04.3.tar.xz) = c2e7fc12e305eeddc031de02254295427117b3a3910b8d5bcfc6ff97855f8fbc +SIZE (KDE/applications/19.04.3/kiten-19.04.3.tar.xz) = 11288144 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 506434) +++ head/lang/kross-interpreters/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621691 -SHA256 (KDE/applications/19.04.2/kross-interpreters-19.04.2.tar.xz) = 9bddea94c8d5c2a45a455996a6ad76da68873f94c54412a607f9624086dce5b8 -SIZE (KDE/applications/19.04.2/kross-interpreters-19.04.2.tar.xz) = 150400 +TIMESTAMP = 1562690760 +SHA256 (KDE/applications/19.04.3/kross-interpreters-19.04.3.tar.xz) = f72e5418c522122bffcc8c8ae28ef912a34b1444b5c3626b74be3452cf92461f +SIZE (KDE/applications/19.04.3/kross-interpreters-19.04.3.tar.xz) = 150404 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 506434) +++ head/lang/kturtle/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621691 -SHA256 (KDE/applications/19.04.2/kturtle-19.04.2.tar.xz) = f9e6befd185350e2c9a5dfbff3dd7ea939c898af208934515e7149accc5a6a0f -SIZE (KDE/applications/19.04.2/kturtle-19.04.2.tar.xz) = 1828144 +TIMESTAMP = 1562690760 +SHA256 (KDE/applications/19.04.3/kturtle-19.04.3.tar.xz) = 811df4d31b920a2b3a6a0420df68e97e68b4226defd97d264f0b0b05c775c469 +SIZE (KDE/applications/19.04.3/kturtle-19.04.3.tar.xz) = 1827296 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 506434) +++ head/math/analitza/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621692 -SHA256 (KDE/applications/19.04.2/analitza-19.04.2.tar.xz) = 571fae06fd719c0078be12785a41218d3ae9ab4cb583d5b0034c7687c4941640 -SIZE (KDE/applications/19.04.2/analitza-19.04.2.tar.xz) = 331516 +TIMESTAMP = 1562690761 +SHA256 (KDE/applications/19.04.3/analitza-19.04.3.tar.xz) = 771cf26918ea09f1597ee95328bdfc1c65b28617b0b312ca609676a718fc2a9e +SIZE (KDE/applications/19.04.3/analitza-19.04.3.tar.xz) = 330112 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 506434) +++ head/math/cantor/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621692 -SHA256 (KDE/applications/19.04.2/cantor-19.04.2.tar.xz) = bbc6d971fcd7aca6d7d9e78bdafdad166bc43b5ea62250deb886f63ff3a331b6 -SIZE (KDE/applications/19.04.2/cantor-19.04.2.tar.xz) = 2523164 +TIMESTAMP = 1562690761 +SHA256 (KDE/applications/19.04.3/cantor-19.04.3.tar.xz) = 6ac01cf576d6ee6292d9656bebe2fa6f1216814148f77d0b9971df6a92ff5a47 +SIZE (KDE/applications/19.04.3/cantor-19.04.3.tar.xz) = 2523496 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 506434) +++ head/math/kalgebra/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621703 -SHA256 (KDE/applications/19.04.2/kalgebra-19.04.2.tar.xz) = 5006b680048eeb51e7c55e18f9a1acd9fd0d3459f1848c35dc8ce06f81764556 -SIZE (KDE/applications/19.04.2/kalgebra-19.04.2.tar.xz) = 1153660 +TIMESTAMP = 1562690772 +SHA256 (KDE/applications/19.04.3/kalgebra-19.04.3.tar.xz) = b63904f2fc5609d8c62b18ae5e8b0f917785d9eaf46357a1045a9de89aa129ea +SIZE (KDE/applications/19.04.3/kalgebra-19.04.3.tar.xz) = 1153428 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 506434) +++ head/math/kbruch/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621703 -SHA256 (KDE/applications/19.04.2/kbruch-19.04.2.tar.xz) = 930ec188356284b622ac478fc502538736b03981ed36011a6e8bd2b38eee413e -SIZE (KDE/applications/19.04.2/kbruch-19.04.2.tar.xz) = 5599732 +TIMESTAMP = 1562690772 +SHA256 (KDE/applications/19.04.3/kbruch-19.04.3.tar.xz) = 131455d024ead96cf2396cf6074a23584799c0793464b83eb3ecc2a455c5d355 +SIZE (KDE/applications/19.04.3/kbruch-19.04.3.tar.xz) = 5600228 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 506434) +++ head/math/kcalc/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621703 -SHA256 (KDE/applications/19.04.2/kcalc-19.04.2.tar.xz) = cd1e4ca0fff1a4b596335fdeb570cf549808be399ff12bced79e4a908c7cf0d0 -SIZE (KDE/applications/19.04.2/kcalc-19.04.2.tar.xz) = 367756 +TIMESTAMP = 1562690772 +SHA256 (KDE/applications/19.04.3/kcalc-19.04.3.tar.xz) = 42da5439af4f59402d27f2c48d4ee9c68d4a84bfda8d16a5ab9d7ab6bdcc02d5 +SIZE (KDE/applications/19.04.3/kcalc-19.04.3.tar.xz) = 366516 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 506434) +++ head/math/kig/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621704 -SHA256 (KDE/applications/19.04.2/kig-19.04.2.tar.xz) = 6c3b627a689f5c14182c868e10b44317dd2c6d618cd219416d9c23d9746e44c8 -SIZE (KDE/applications/19.04.2/kig-19.04.2.tar.xz) = 3497232 +TIMESTAMP = 1562690773 +SHA256 (KDE/applications/19.04.3/kig-19.04.3.tar.xz) = 05566395ce58c6c049d797f579362d52b612ab1718b111f7a054e9e3ae229459 +SIZE (KDE/applications/19.04.3/kig-19.04.3.tar.xz) = 3492840 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 506434) +++ head/math/kmplot/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621704 -SHA256 (KDE/applications/19.04.2/kmplot-19.04.2.tar.xz) = 889205a7bea6ca295a4a568287acdbdf555ad7fa301823d21f7322751b4f64ec -SIZE (KDE/applications/19.04.2/kmplot-19.04.2.tar.xz) = 3061664 +TIMESTAMP = 1562690773 +SHA256 (KDE/applications/19.04.3/kmplot-19.04.3.tar.xz) = 8c312235076fdad431fc68dc3e8be18ab8317e8a6efb6e6170958cb7495ab479 +SIZE (KDE/applications/19.04.3/kmplot-19.04.3.tar.xz) = 3047220 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 506434) +++ head/math/rocs/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621704 -SHA256 (KDE/applications/19.04.2/rocs-19.04.2.tar.xz) = 4a9ae9962b45b9689a63c164203db8f26dc0caf8cd0c065ddad10eb983249998 -SIZE (KDE/applications/19.04.2/rocs-19.04.2.tar.xz) = 1516116 +TIMESTAMP = 1562690773 +SHA256 (KDE/applications/19.04.3/rocs-19.04.3.tar.xz) = eec0f7ab55f81946dafa2e31ee92a2bec5c1727e64bdeb8e7566c61f66e53d01 +SIZE (KDE/applications/19.04.3/rocs-19.04.3.tar.xz) = 1515844 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 506434) +++ head/misc/artikulate/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621705 -SHA256 (KDE/applications/19.04.2/artikulate-19.04.2.tar.xz) = 0bf5496d3b73aff9bb3238b3887127550184b304e69ff6deabba47c791c2c3fc -SIZE (KDE/applications/19.04.2/artikulate-19.04.2.tar.xz) = 3983036 +TIMESTAMP = 1562690774 +SHA256 (KDE/applications/19.04.3/artikulate-19.04.3.tar.xz) = 3f0b811017c59a05260ca43a7e298633a6ac9ef0f9cfb8ec62890da0f3ec1217 +SIZE (KDE/applications/19.04.3/artikulate-19.04.3.tar.xz) = 3986260 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 506434) +++ head/misc/kdeedu-data/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621705 -SHA256 (KDE/applications/19.04.2/kdeedu-data-19.04.2.tar.xz) = bfa6dcbac3f2091c5161ff1cd7797da99f0fcbeb17dd24e1917ac7a4f006f59d -SIZE (KDE/applications/19.04.2/kdeedu-data-19.04.2.tar.xz) = 327272 +TIMESTAMP = 1562690774 +SHA256 (KDE/applications/19.04.3/kdeedu-data-19.04.3.tar.xz) = 03d8e219a3d7f82f92887f200e017eaeb2fc3f9316f0ea63d4caa271c62f7791 +SIZE (KDE/applications/19.04.3/kdeedu-data-19.04.3.tar.xz) = 327396 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 506434) +++ head/misc/kgeography/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621705 -SHA256 (KDE/applications/19.04.2/kgeography-19.04.2.tar.xz) = ed30832457b079540b784aae76d23df65387fd3497b2b6d9c1c58f76de6d9a01 -SIZE (KDE/applications/19.04.2/kgeography-19.04.2.tar.xz) = 10832652 +TIMESTAMP = 1562690775 +SHA256 (KDE/applications/19.04.3/kgeography-19.04.3.tar.xz) = a94742602100e989b4dbbfa37c8bde99054710f28a1679ad458ee65de0db8b7e +SIZE (KDE/applications/19.04.3/kgeography-19.04.3.tar.xz) = 10820872 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 506434) +++ head/misc/klettres/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621706 -SHA256 (KDE/applications/19.04.2/klettres-19.04.2.tar.xz) = c4494a96736d873f429d8d9ffdef09e0684025f6e6e1f00590d026c45e47ecbd -SIZE (KDE/applications/19.04.2/klettres-19.04.2.tar.xz) = 21493292 +TIMESTAMP = 1562690775 +SHA256 (KDE/applications/19.04.3/klettres-19.04.3.tar.xz) = ba8498a28af8534083b2ea3eab5ada7b57deffe49673ef0e4ef278023e8b96af +SIZE (KDE/applications/19.04.3/klettres-19.04.3.tar.xz) = 21463020 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 506434) +++ head/misc/ktouch/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621706 -SHA256 (KDE/applications/19.04.2/ktouch-19.04.2.tar.xz) = 280bd4e0b5ec992d7f87446f2d154a673ee8a127abd0be297bc9c671aac8d16b -SIZE (KDE/applications/19.04.2/ktouch-19.04.2.tar.xz) = 5135528 +TIMESTAMP = 1562690776 +SHA256 (KDE/applications/19.04.3/ktouch-19.04.3.tar.xz) = dce3f72204f43ddde109a39fca65f2936e9d9db686e6b3edf8ae04bc9c1c0e55 +SIZE (KDE/applications/19.04.3/ktouch-19.04.3.tar.xz) = 4947000 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 506434) +++ head/misc/kwordquiz/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621707 -SHA256 (KDE/applications/19.04.2/kwordquiz-19.04.2.tar.xz) = 75622c55fdf31c5c7731f8ca18d6e4303269c3037c65f8f63d6f2687a5689c6b -SIZE (KDE/applications/19.04.2/kwordquiz-19.04.2.tar.xz) = 4165028 +TIMESTAMP = 1562690776 +SHA256 (KDE/applications/19.04.3/kwordquiz-19.04.3.tar.xz) = fc1a5a4780f667a805c17bda05d7024702d20d0e6aa552a0b7b6840b6e6cb381 +SIZE (KDE/applications/19.04.3/kwordquiz-19.04.3.tar.xz) = 4167304 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 506434) +++ head/misc/libkeduvocdocument/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621707 -SHA256 (KDE/applications/19.04.2/libkeduvocdocument-19.04.2.tar.xz) = 18017cc126ba16a34bc8a266630368c3e5a1611ebbc09a29af8184157a161de6 -SIZE (KDE/applications/19.04.2/libkeduvocdocument-19.04.2.tar.xz) = 207668 +TIMESTAMP = 1562690776 +SHA256 (KDE/applications/19.04.3/libkeduvocdocument-19.04.3.tar.xz) = e0e229607c47b5da028588b9a22ffe41cf3e35d7e4f849eb109d9ce6c537277d +SIZE (KDE/applications/19.04.3/libkeduvocdocument-19.04.3.tar.xz) = 206980 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 506434) +++ head/misc/parley/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621717 -SHA256 (KDE/applications/19.04.2/parley-19.04.2.tar.xz) = e035236549714e7b227729d68f0639f7d435f93d8a89e6b1180ff5c1aba901f4 -SIZE (KDE/applications/19.04.2/parley-19.04.2.tar.xz) = 8818104 +TIMESTAMP = 1562690787 +SHA256 (KDE/applications/19.04.3/parley-19.04.3.tar.xz) = 4c4aeaae4f1dd4193c422c5921d9cf02216fc6670f5077fcd92b4d48378fa720 +SIZE (KDE/applications/19.04.3/parley-19.04.3.tar.xz) = 8816536 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 506434) +++ head/multimedia/dragon/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621717 -SHA256 (KDE/applications/19.04.2/dragon-19.04.2.tar.xz) = a11c4510671e49e14878e93b107ff16a7624f9eaf4c5400ed545684d4800d98a -SIZE (KDE/applications/19.04.2/dragon-19.04.2.tar.xz) = 1351072 +TIMESTAMP = 1562690787 +SHA256 (KDE/applications/19.04.3/dragon-19.04.3.tar.xz) = 498bbcf3441a32a588568981ee3ad563b6c4fd88b226d1673d83da09901f117a +SIZE (KDE/applications/19.04.3/dragon-19.04.3.tar.xz) = 1350276 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 506434) +++ head/multimedia/kamoso/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621728 -SHA256 (KDE/applications/19.04.2/kamoso-19.04.2.tar.xz) = 59c17ca0249d8c5988e762162761a8d31903f547f303afb8ed0286952800ac2f -SIZE (KDE/applications/19.04.2/kamoso-19.04.2.tar.xz) = 200564 +TIMESTAMP = 1562690797 +SHA256 (KDE/applications/19.04.3/kamoso-19.04.3.tar.xz) = 19168e5f45762b04254ebf598dfa7f066858ae243a9b7286d7e3e43385018ec6 +SIZE (KDE/applications/19.04.3/kamoso-19.04.3.tar.xz) = 200692 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 506434) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621728 -SHA256 (KDE/applications/19.04.2/ffmpegthumbs-19.04.2.tar.xz) = bd07f3f66a30de0cd942e0c3ffc4688183217d529790587d01ac9794217eb165 -SIZE (KDE/applications/19.04.2/ffmpegthumbs-19.04.2.tar.xz) = 24768 +TIMESTAMP = 1562690798 +SHA256 (KDE/applications/19.04.3/ffmpegthumbs-19.04.3.tar.xz) = ddd6cb3388c1af96a14d611de9575f6f6c22c6acfe52e63e44b746709ac8024b +SIZE (KDE/applications/19.04.3/ffmpegthumbs-19.04.3.tar.xz) = 24820 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 506434) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 506435) @@ -1,24 +1,25 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo share/locale/ca@valencia/LC_MESSAGES/ffmpegthumbs.mo share/locale/cs/LC_MESSAGES/ffmpegthumbs.mo share/locale/en_GB/LC_MESSAGES/ffmpegthumbs.mo share/locale/es/LC_MESSAGES/ffmpegthumbs.mo +share/locale/eu/LC_MESSAGES/ffmpegthumbs.mo share/locale/fi/LC_MESSAGES/ffmpegthumbs.mo share/locale/fr/LC_MESSAGES/ffmpegthumbs.mo share/locale/gl/LC_MESSAGES/ffmpegthumbs.mo share/locale/it/LC_MESSAGES/ffmpegthumbs.mo share/locale/ja/LC_MESSAGES/ffmpegthumbs.mo share/locale/ko/LC_MESSAGES/ffmpegthumbs.mo share/locale/nl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt_BR/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/LC_MESSAGES/ffmpegthumbs.mo share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_CN/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo share/kservices5/ffmpegthumbs.desktop Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 506434) +++ head/net/akonadi-calendar/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621755 -SHA256 (KDE/applications/19.04.2/akonadi-calendar-19.04.2.tar.xz) = e5fba0c1180d1bd5a2b55f77447be53a8619594b984d415db601f569a0b21582 -SIZE (KDE/applications/19.04.2/akonadi-calendar-19.04.2.tar.xz) = 331748 +TIMESTAMP = 1562690824 +SHA256 (KDE/applications/19.04.3/akonadi-calendar-19.04.3.tar.xz) = 939691e3c31993e3708a74759cbab951a51d0b36239426fe09c9ee9ff9622013 +SIZE (KDE/applications/19.04.3/akonadi-calendar-19.04.3.tar.xz) = 332632 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 506434) +++ head/net/akonadi-contacts/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621755 -SHA256 (KDE/applications/19.04.2/akonadi-contacts-19.04.2.tar.xz) = 512c7eb7f67f99ae8863524572d4bb12d2a5bcdb553823988cccff982ac44960 -SIZE (KDE/applications/19.04.2/akonadi-contacts-19.04.2.tar.xz) = 391248 +TIMESTAMP = 1562690825 +SHA256 (KDE/applications/19.04.3/akonadi-contacts-19.04.3.tar.xz) = 9ecae008ccc77ff5982de5152dfc2be62eb1137f24a58aeb74a62291fc2fd93c +SIZE (KDE/applications/19.04.3/akonadi-contacts-19.04.3.tar.xz) = 392564 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 506434) +++ head/net/akonadi-mime/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621756 -SHA256 (KDE/applications/19.04.2/akonadi-mime-19.04.2.tar.xz) = 2d5d8cb3cb463e3b3e41001a9d167135e0f89edee095a3fe6748eec6eb01f54b -SIZE (KDE/applications/19.04.2/akonadi-mime-19.04.2.tar.xz) = 136656 +TIMESTAMP = 1562690825 +SHA256 (KDE/applications/19.04.3/akonadi-mime-19.04.3.tar.xz) = ec4fbd594fb4fc57f1a7e11763b517721fc5e050ffa7bbc2bdddf5e76694d9f9 +SIZE (KDE/applications/19.04.3/akonadi-mime-19.04.3.tar.xz) = 136596 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 506434) +++ head/net/akonadi-notes/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621756 -SHA256 (KDE/applications/19.04.2/akonadi-notes-19.04.2.tar.xz) = 105a687baa61d0522575c9dae113ce902a528d09531f97674fcaba8ecaa944fa -SIZE (KDE/applications/19.04.2/akonadi-notes-19.04.2.tar.xz) = 24332 +TIMESTAMP = 1562690825 +SHA256 (KDE/applications/19.04.3/akonadi-notes-19.04.3.tar.xz) = c95f50c9ab0fc3587d3e1e78073038e3a044f3dc116068b354b2d148d6288dbf +SIZE (KDE/applications/19.04.3/akonadi-notes-19.04.3.tar.xz) = 24460 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 506434) +++ head/net/akonadi-search/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621756 -SHA256 (KDE/applications/19.04.2/akonadi-search-19.04.2.tar.xz) = 46a6b01c363172b5de389f3dbdd9e3518abed381663e6854562dc910d3b4aa45 -SIZE (KDE/applications/19.04.2/akonadi-search-19.04.2.tar.xz) = 82352 +TIMESTAMP = 1562690826 +SHA256 (KDE/applications/19.04.3/akonadi-search-19.04.3.tar.xz) = c5298a5b903373590e63039777c954720aa0bc46b25ec0c48e6409265b38d4ed +SIZE (KDE/applications/19.04.3/akonadi-search-19.04.3.tar.xz) = 82496 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 506434) +++ head/net/calendarsupport/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621757 -SHA256 (KDE/applications/19.04.2/calendarsupport-19.04.2.tar.xz) = e83ab3a2bd0429bfcaefbb980032177802c58ab57a63ebf7930b4e39822977bb -SIZE (KDE/applications/19.04.2/calendarsupport-19.04.2.tar.xz) = 646464 +TIMESTAMP = 1562690826 +SHA256 (KDE/applications/19.04.3/calendarsupport-19.04.3.tar.xz) = 789ae6f2cb75baf239079b11742fbe40353c55eac84b0a396f761f010bc9041c +SIZE (KDE/applications/19.04.3/calendarsupport-19.04.3.tar.xz) = 646352 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 506434) +++ head/net/eventviews/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621757 -SHA256 (KDE/applications/19.04.2/eventviews-19.04.2.tar.xz) = 2afb7c2d096874e9f21aceaa4a9c1bf53bbfcae07d047110a18b28444bd1807a -SIZE (KDE/applications/19.04.2/eventviews-19.04.2.tar.xz) = 443360 +TIMESTAMP = 1562690826 +SHA256 (KDE/applications/19.04.3/eventviews-19.04.3.tar.xz) = 3f479f695756cea5d10ea2ab028dd6a954e677223a5c1ff9f7be208742952f22 +SIZE (KDE/applications/19.04.3/eventviews-19.04.3.tar.xz) = 442584 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 506434) +++ head/net/incidenceeditor/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621757 -SHA256 (KDE/applications/19.04.2/incidenceeditor-19.04.2.tar.xz) = 2a53c4cfd0a77b0f579a581143288bedffc91257fb13c2192bc10d0d1f572814 -SIZE (KDE/applications/19.04.2/incidenceeditor-19.04.2.tar.xz) = 549816 +TIMESTAMP = 1562690827 +SHA256 (KDE/applications/19.04.3/incidenceeditor-19.04.3.tar.xz) = b3a0ac35b04bc7851a32021552369ba5ac5b2e69969c29121d9cb2adfd5ccf70 +SIZE (KDE/applications/19.04.3/incidenceeditor-19.04.3.tar.xz) = 549696 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 506434) +++ head/net/kalarmcal/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621758 -SHA256 (KDE/applications/19.04.2/kalarmcal-19.04.2.tar.xz) = 13b6efe49673488d5b748b77ca6599b81d7986a2c937ab13f187c5a9ad6b1ef4 -SIZE (KDE/applications/19.04.2/kalarmcal-19.04.2.tar.xz) = 572280 +TIMESTAMP = 1562690827 +SHA256 (KDE/applications/19.04.3/kalarmcal-19.04.3.tar.xz) = f0965229600ee962be3db85cfb94105e2734c8e066ff316e216c625c70dd25d7 +SIZE (KDE/applications/19.04.3/kalarmcal-19.04.3.tar.xz) = 571716 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 506434) +++ head/net/kblog/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621758 -SHA256 (KDE/applications/19.04.2/kblog-19.04.2.tar.xz) = ca795e4ab410b293e411f97fdbb54de029c346fc9e73fe1276edc256f79a3261 -SIZE (KDE/applications/19.04.2/kblog-19.04.2.tar.xz) = 72912 +TIMESTAMP = 1562690828 +SHA256 (KDE/applications/19.04.3/kblog-19.04.3.tar.xz) = 5890ae54f85057e22807a7f47681004f521c3558c750ef75b90328118363a07d +SIZE (KDE/applications/19.04.3/kblog-19.04.3.tar.xz) = 72608 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 506434) +++ head/net/kcalcore/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621758 -SHA256 (KDE/applications/19.04.2/kcalcore-19.04.2.tar.xz) = 10e75bd44eca2094f0f952255e1aad00bbc7a509fadd97c75e8c764152db6354 -SIZE (KDE/applications/19.04.2/kcalcore-19.04.2.tar.xz) = 250988 +TIMESTAMP = 1562690828 +SHA256 (KDE/applications/19.04.3/kcalcore-19.04.3.tar.xz) = 335df0ae376b7abfc8274d46bb5a9956fb8ef438c1065d7f79a57db23005ca45 +SIZE (KDE/applications/19.04.3/kcalcore-19.04.3.tar.xz) = 251300 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 506434) +++ head/net/kcalutils/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621759 -SHA256 (KDE/applications/19.04.2/kcalutils-19.04.2.tar.xz) = 47bde8816b71315614b4c83f380cfbab25e577a36d4ae9f62b33ebf7b4cf09a9 -SIZE (KDE/applications/19.04.2/kcalutils-19.04.2.tar.xz) = 328700 +TIMESTAMP = 1562690829 +SHA256 (KDE/applications/19.04.3/kcalutils-19.04.3.tar.xz) = de08972947008fd74fdeb7b2ddf642a356d84009b853a5aeec2ded98b399290e +SIZE (KDE/applications/19.04.3/kcalutils-19.04.3.tar.xz) = 327592 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 506434) +++ head/net/kcontacts/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621759 -SHA256 (KDE/applications/19.04.2/kcontacts-19.04.2.tar.xz) = 82e1c004cb261c75ccb526626f7e7d4e5e9821d66ac64135017e78616ada7f08 -SIZE (KDE/applications/19.04.2/kcontacts-19.04.2.tar.xz) = 603180 +TIMESTAMP = 1562690829 +SHA256 (KDE/applications/19.04.3/kcontacts-19.04.3.tar.xz) = 28f3c61b99f6f6b1264a8373ab9915e6844f4025c74652cd897b7b560067e241 +SIZE (KDE/applications/19.04.3/kcontacts-19.04.3.tar.xz) = 603352 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 506434) +++ head/net/kdav/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621759 -SHA256 (KDE/applications/19.04.2/kdav-19.04.2.tar.xz) = 556c4912cfbd65b810c6a9d23b61dff0f59f70459cf52a81d7142cc750ef130c -SIZE (KDE/applications/19.04.2/kdav-19.04.2.tar.xz) = 49844 +TIMESTAMP = 1562690829 +SHA256 (KDE/applications/19.04.3/kdav-19.04.3.tar.xz) = f182a3ad6e23ff9e8165d11c3d4964e470e5d4d3f0183207cbe380f5c111af85 +SIZE (KDE/applications/19.04.3/kdav-19.04.3.tar.xz) = 49744 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 506434) +++ head/net/kdenetwork-filesharing/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621760 -SHA256 (KDE/applications/19.04.2/kdenetwork-filesharing-19.04.2.tar.xz) = e612e3e1cd85f80e73dbce0fd749506424418d308b0bb3e4aca43aa4436224a3 -SIZE (KDE/applications/19.04.2/kdenetwork-filesharing-19.04.2.tar.xz) = 312980 +TIMESTAMP = 1562690830 +SHA256 (KDE/applications/19.04.3/kdenetwork-filesharing-19.04.3.tar.xz) = bc3763ecf49b85e159503928692c9cb68083c6acc49f2dead27f538fca0e8ab5 +SIZE (KDE/applications/19.04.3/kdenetwork-filesharing-19.04.3.tar.xz) = 312512 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 506434) +++ head/net/kget/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621760 -SHA256 (KDE/applications/19.04.2/kget-19.04.2.tar.xz) = 392c24fd8244ff4bc07723cb0455cb7ffe40be18ea4dfea4ad1c76b28b674404 -SIZE (KDE/applications/19.04.2/kget-19.04.2.tar.xz) = 5234100 +TIMESTAMP = 1562690830 +SHA256 (KDE/applications/19.04.3/kget-19.04.3.tar.xz) = 9620ca07792e8a8d9bcb2069d36b665f2aa21d2428f109d825a663ccb6c12e25 +SIZE (KDE/applications/19.04.3/kget-19.04.3.tar.xz) = 5235812 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 506434) +++ head/net/kidentitymanagement/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621761 -SHA256 (KDE/applications/19.04.2/kidentitymanagement-19.04.2.tar.xz) = c148d21adf85210a769b81862d41587b5b7321512b1fe5ec76a916806792851c -SIZE (KDE/applications/19.04.2/kidentitymanagement-19.04.2.tar.xz) = 149016 +TIMESTAMP = 1562690831 +SHA256 (KDE/applications/19.04.3/kidentitymanagement-19.04.3.tar.xz) = 4bbe8bffe0624b516d102354197c508ff1a83b6280036f5ab100e7897b99e8da +SIZE (KDE/applications/19.04.3/kidentitymanagement-19.04.3.tar.xz) = 149320 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 506434) +++ head/net/kimap/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621761 -SHA256 (KDE/applications/19.04.2/kimap-19.04.2.tar.xz) = 352129ca7aa2de360256392df3fed14b1338fbea1b3d1dda189dffc6629e86e9 -SIZE (KDE/applications/19.04.2/kimap-19.04.2.tar.xz) = 119660 +TIMESTAMP = 1562690831 +SHA256 (KDE/applications/19.04.3/kimap-19.04.3.tar.xz) = 58ed8471dc7e9c43e7bdb61c791e3bb612b2473bf0fb8f67857cb6fa72ddcf35 +SIZE (KDE/applications/19.04.3/kimap-19.04.3.tar.xz) = 119616 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 506434) +++ head/net/kitinerary/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621761 -SHA256 (KDE/applications/19.04.2/kitinerary-19.04.2.tar.xz) = 17c887a2744dbe99a7a12793ec70700a69613d949d06b2dd10bcd0cab223d844 -SIZE (KDE/applications/19.04.2/kitinerary-19.04.2.tar.xz) = 690916 +TIMESTAMP = 1562690831 +SHA256 (KDE/applications/19.04.3/kitinerary-19.04.3.tar.xz) = c2e9d1ae70797968382538da98bc8f9555e0d8d13faeb739bdadb5844c989227 +SIZE (KDE/applications/19.04.3/kitinerary-19.04.3.tar.xz) = 689352 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 506434) +++ head/net/kldap/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621762 -SHA256 (KDE/applications/19.04.2/kldap-19.04.2.tar.xz) = 1e595181520325fa00b857c606befae7b1d670892bcb50e1d92df3527c275a97 -SIZE (KDE/applications/19.04.2/kldap-19.04.2.tar.xz) = 155528 +TIMESTAMP = 1562690832 +SHA256 (KDE/applications/19.04.3/kldap-19.04.3.tar.xz) = 6b4bf8e69e6c372f60f746f2a6c453262283e25643a97192eef3c07c5c8d94df +SIZE (KDE/applications/19.04.3/kldap-19.04.3.tar.xz) = 155680 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 506434) +++ head/net/kmailtransport/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621762 -SHA256 (KDE/applications/19.04.2/kmailtransport-19.04.2.tar.xz) = f1b6faf74900c3d95e8aa1b5ce603ac729d0d970934c4edc90fbd3f6939c36d9 -SIZE (KDE/applications/19.04.2/kmailtransport-19.04.2.tar.xz) = 166220 +TIMESTAMP = 1562690832 +SHA256 (KDE/applications/19.04.3/kmailtransport-19.04.3.tar.xz) = 2a3115a81f2c85c42345ee6380ea1c28129be5dd5a518270c6ec1062ea22abc5 +SIZE (KDE/applications/19.04.3/kmailtransport-19.04.3.tar.xz) = 166028 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 506434) +++ head/net/kmbox/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621762 -SHA256 (KDE/applications/19.04.2/kmbox-19.04.2.tar.xz) = 040e3efc31ec62f57d1ad807d055a982421344778f45ef46eb49fbe06fba500d -SIZE (KDE/applications/19.04.2/kmbox-19.04.2.tar.xz) = 24664 +TIMESTAMP = 1562690832 +SHA256 (KDE/applications/19.04.3/kmbox-19.04.3.tar.xz) = 4025f1ef0288f2c30e64d8eb02bde117f1ee482b760bef52aa71faedc500733f +SIZE (KDE/applications/19.04.3/kmbox-19.04.3.tar.xz) = 24808 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 506434) +++ head/net/kmime/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621763 -SHA256 (KDE/applications/19.04.2/kmime-19.04.2.tar.xz) = 32a38a08d6f7b90e88ae7d022de16bd4b13ad587ed882b1fc3631e22ec29d1b8 -SIZE (KDE/applications/19.04.2/kmime-19.04.2.tar.xz) = 147000 +TIMESTAMP = 1562690833 +SHA256 (KDE/applications/19.04.3/kmime-19.04.3.tar.xz) = a6fe422eddb15eb52fbacde97b45ec6752b60f46149657a3bb7f48dc899e1c02 +SIZE (KDE/applications/19.04.3/kmime-19.04.3.tar.xz) = 147140 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 506434) +++ head/net/kontactinterface/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621763 -SHA256 (KDE/applications/19.04.2/kontactinterface-19.04.2.tar.xz) = b65657f2420b542fa8d81da8c86876f93ff662e7571dfa8e79dda16a64768b98 -SIZE (KDE/applications/19.04.2/kontactinterface-19.04.2.tar.xz) = 33200 +TIMESTAMP = 1562690833 +SHA256 (KDE/applications/19.04.3/kontactinterface-19.04.3.tar.xz) = d541daab32bddd6727b795d280be668be9da801ef7267159ea030f998b52ca74 +SIZE (KDE/applications/19.04.3/kontactinterface-19.04.3.tar.xz) = 33288 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 506434) +++ head/net/kpimtextedit/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621764 -SHA256 (KDE/applications/19.04.2/kpimtextedit-19.04.2.tar.xz) = e1c6ad9c92b50149500c3ba8071842aed53c37a290f2bbdff10030b4aeb4afb4 -SIZE (KDE/applications/19.04.2/kpimtextedit-19.04.2.tar.xz) = 152088 +TIMESTAMP = 1562690834 +SHA256 (KDE/applications/19.04.3/kpimtextedit-19.04.3.tar.xz) = e71e0c4dc666db23a1cfcbe202d37cac3b0c5fd966c3edbdd88c85ed2e983f24 +SIZE (KDE/applications/19.04.3/kpimtextedit-19.04.3.tar.xz) = 152648 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 506434) +++ head/net/krdc/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621764 -SHA256 (KDE/applications/19.04.2/krdc-19.04.2.tar.xz) = b56238fa64efd1724ea86e7b221ca93d42782b52b936a9c54ed181ba660d0a44 -SIZE (KDE/applications/19.04.2/krdc-19.04.2.tar.xz) = 1421952 +TIMESTAMP = 1562690834 +SHA256 (KDE/applications/19.04.3/krdc-19.04.3.tar.xz) = 2458858d3e4d00ca2a95151ff7433d3a1726518f9a28281d5e1bb90855132426 +SIZE (KDE/applications/19.04.3/krdc-19.04.3.tar.xz) = 1420180 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 506434) +++ head/net/krfb/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621764 -SHA256 (KDE/applications/19.04.2/krfb-19.04.2.tar.xz) = e0409db865fdb56377af6d874b35e01a082c8c8e273c02053f2168f23059365b -SIZE (KDE/applications/19.04.2/krfb-19.04.2.tar.xz) = 1256888 +TIMESTAMP = 1562690834 +SHA256 (KDE/applications/19.04.3/krfb-19.04.3.tar.xz) = 6f1fd97b294150c017adebf18cb04dd1d554f5ece0d761e11131ecc549ee35b7 +SIZE (KDE/applications/19.04.3/krfb-19.04.3.tar.xz) = 1256560 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 506434) +++ head/net/ksmtp/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621765 -SHA256 (KDE/applications/19.04.2/ksmtp-19.04.2.tar.xz) = aef6b59789a5ab1525c9e3974c0e117192c4f2659a0b16f8304573b442f2eda2 -SIZE (KDE/applications/19.04.2/ksmtp-19.04.2.tar.xz) = 40284 +TIMESTAMP = 1562690835 +SHA256 (KDE/applications/19.04.3/ksmtp-19.04.3.tar.xz) = 8d5eae342468f128fe1311b4797c9533b6017b9fb0901fb4c0d09bb73e39d02e +SIZE (KDE/applications/19.04.3/ksmtp-19.04.3.tar.xz) = 40428 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 506434) +++ head/net/ktnef/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621765 -SHA256 (KDE/applications/19.04.2/ktnef-19.04.2.tar.xz) = aed9679d789ebf016644475e5450991c4da7a029bb83a1c8853396da14a983fd -SIZE (KDE/applications/19.04.2/ktnef-19.04.2.tar.xz) = 299404 +TIMESTAMP = 1562690835 +SHA256 (KDE/applications/19.04.3/ktnef-19.04.3.tar.xz) = ef0760dc31cad222f73a56d5098ffa9bff0e4c68a26f6f85ad542bb4f8dd3693 +SIZE (KDE/applications/19.04.3/ktnef-19.04.3.tar.xz) = 299676 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 506434) +++ head/net/libgravatar/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621765 -SHA256 (KDE/applications/19.04.2/libgravatar-19.04.2.tar.xz) = e674fb2d80e341d569ac60eb6a3b516a71ddfba11c492fbcc21e61f823c07369 -SIZE (KDE/applications/19.04.2/libgravatar-19.04.2.tar.xz) = 30964 +TIMESTAMP = 1562690835 +SHA256 (KDE/applications/19.04.3/libgravatar-19.04.3.tar.xz) = 23f8d50c5831ec1df995d6d711a590eb4f7de2823971ea5692aea50707c54bea +SIZE (KDE/applications/19.04.3/libgravatar-19.04.3.tar.xz) = 30920 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 506434) +++ head/net/libkgapi/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621766 -SHA256 (KDE/applications/19.04.2/libkgapi-19.04.2.tar.xz) = a9eda4c03ba76653c7b035a532dc53c7042153f18f55bec0166aca258d73217a -SIZE (KDE/applications/19.04.2/libkgapi-19.04.2.tar.xz) = 225020 +TIMESTAMP = 1562690836 +SHA256 (KDE/applications/19.04.3/libkgapi-19.04.3.tar.xz) = 0fa879280979775523f258c80ec17c58045f812cbc6961b994ab78974a75afac +SIZE (KDE/applications/19.04.3/libkgapi-19.04.3.tar.xz) = 224284 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 506434) +++ head/net/libksieve/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621766 -SHA256 (KDE/applications/19.04.2/libksieve-19.04.2.tar.xz) = c26320ee290a270999feef274de1b735908249068f6b17c44e352ece8a2a4f2a -SIZE (KDE/applications/19.04.2/libksieve-19.04.2.tar.xz) = 549788 +TIMESTAMP = 1562690836 +SHA256 (KDE/applications/19.04.3/libksieve-19.04.3.tar.xz) = 5853f1b3764872a26b21064f8c23dd4ec66e453648c1aefa510f22af780e3289 +SIZE (KDE/applications/19.04.3/libksieve-19.04.3.tar.xz) = 549356 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 506434) +++ head/net/mailcommon/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621767 -SHA256 (KDE/applications/19.04.2/mailcommon-19.04.2.tar.xz) = d740166f33bee070fe7c735224335e508614999fb168194edb0500b4ba62026c -SIZE (KDE/applications/19.04.2/mailcommon-19.04.2.tar.xz) = 692432 +TIMESTAMP = 1562690836 +SHA256 (KDE/applications/19.04.3/mailcommon-19.04.3.tar.xz) = b38a23d2d59fed22dfcabeb9430b962c021fd62fd7e48d12ad3610b4d3a162fa +SIZE (KDE/applications/19.04.3/mailcommon-19.04.3.tar.xz) = 691900 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 506434) +++ head/net/mailimporter/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621767 -SHA256 (KDE/applications/19.04.2/mailimporter-19.04.2.tar.xz) = 7b54144713a15a03c1d7a53f85c466945972e1dac540d4644d0ab6386efc22d2 -SIZE (KDE/applications/19.04.2/mailimporter-19.04.2.tar.xz) = 539812 +TIMESTAMP = 1562690837 +SHA256 (KDE/applications/19.04.3/mailimporter-19.04.3.tar.xz) = 17483bf5d57936179f13abcee347aadadcc17d2cf40c1e2a3b5f2b6d85db87ec +SIZE (KDE/applications/19.04.3/mailimporter-19.04.3.tar.xz) = 540420 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 506434) +++ head/net/messagelib/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621767 -SHA256 (KDE/applications/19.04.2/messagelib-19.04.2.tar.xz) = 505e5dad21941540ad3ae986ba76902546806dffd434605752088f0da89299cf -SIZE (KDE/applications/19.04.2/messagelib-19.04.2.tar.xz) = 10420872 +TIMESTAMP = 1562783078 +SHA256 (KDE/applications/19.04.3/messagelib-19.04.3.tar.xz) = c97f88152593a031415148daa31384c56964973d4291aa86a892b2776333e223 +SIZE (KDE/applications/19.04.3/messagelib-19.04.3.tar.xz) = 10476616 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 506434) +++ head/net/pimcommon/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621768 -SHA256 (KDE/applications/19.04.2/pimcommon-19.04.2.tar.xz) = 94cc3da0bc740e3e58f6ad3cc608857afcb6929a153c22d75e5b561cd1b6f484 -SIZE (KDE/applications/19.04.2/pimcommon-19.04.2.tar.xz) = 295112 +TIMESTAMP = 1562690838 +SHA256 (KDE/applications/19.04.3/pimcommon-19.04.3.tar.xz) = b979ba19d0c5c7d4f218992bfe434fdc9b49bd8cfdee0d25e4c44bbddc793fee +SIZE (KDE/applications/19.04.3/pimcommon-19.04.3.tar.xz) = 294420 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 506434) +++ head/net/zeroconf-ioslave/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621768 -SHA256 (KDE/applications/19.04.2/zeroconf-ioslave-19.04.2.tar.xz) = 1ece2aebb546fc645cafda689fe6e8b4da7172e96970e10c19b6cb53eb201e2a -SIZE (KDE/applications/19.04.2/zeroconf-ioslave-19.04.2.tar.xz) = 38684 +TIMESTAMP = 1562690838 +SHA256 (KDE/applications/19.04.3/zeroconf-ioslave-19.04.3.tar.xz) = 83c6fa651c6601c9b5e4f085e34fa0de5e88dda2420f95e88996ffad11303d7f +SIZE (KDE/applications/19.04.3/zeroconf-ioslave-19.04.3.tar.xz) = 38576 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 506434) +++ head/net-im/kaccounts-integration/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621740 -SHA256 (KDE/applications/19.04.2/kaccounts-integration-19.04.2.tar.xz) = 93bea3db03a216d6ec9d86e88aba85f84eff2b6e037e625a31624e661d6faa50 -SIZE (KDE/applications/19.04.2/kaccounts-integration-19.04.2.tar.xz) = 70792 +TIMESTAMP = 1562690809 +SHA256 (KDE/applications/19.04.3/kaccounts-integration-19.04.3.tar.xz) = fea6cc555de2e345079ed576be0c957ff5c7177ff658f31ce3bcb23176174372 +SIZE (KDE/applications/19.04.3/kaccounts-integration-19.04.3.tar.xz) = 71276 Index: head/net-im/kaccounts-integration/pkg-plist =================================================================== --- head/net-im/kaccounts-integration/pkg-plist (revision 506434) +++ head/net-im/kaccounts-integration/pkg-plist (revision 506435) @@ -1,59 +1,60 @@ include/KAccounts/Core include/KAccounts/GetCredentialsJob include/KAccounts/KAccountsDPlugin include/KAccounts/KAccountsUiPlugin include/KAccounts/core.h include/KAccounts/getcredentialsjob.h include/KAccounts/kaccounts_export.h include/KAccounts/kaccounts_version.h include/KAccounts/kaccountsdplugin.h include/KAccounts/kaccountsuiplugin.h lib/cmake/KAccounts/FindAccountsFileDir.cmake lib/cmake/KAccounts/KAccountsConfig.cmake lib/cmake/KAccounts/KAccountsConfigVersion.cmake lib/cmake/KAccounts/KAccountsMacros.cmake lib/cmake/KAccounts/KAccountsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KAccounts/KAccountsTargets.cmake lib/libkaccounts.so lib/libkaccounts.so.1 lib/libkaccounts.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kcm_kaccounts.so %%QT_PLUGINDIR%%/kf5/kded/accounts.so %%QT_QMLDIR%%/org/kde/kaccounts/libkaccountsdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kaccounts/qmldir share/kservices5/kcm_kaccounts.desktop share/locale/ar/LC_MESSAGES/kaccounts-integration.mo share/locale/bs/LC_MESSAGES/kaccounts-integration.mo share/locale/ca/LC_MESSAGES/kaccounts-integration.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-integration.mo share/locale/cs/LC_MESSAGES/kaccounts-integration.mo share/locale/da/LC_MESSAGES/kaccounts-integration.mo share/locale/de/LC_MESSAGES/kaccounts-integration.mo share/locale/el/LC_MESSAGES/kaccounts-integration.mo share/locale/en_GB/LC_MESSAGES/kaccounts-integration.mo share/locale/es/LC_MESSAGES/kaccounts-integration.mo share/locale/et/LC_MESSAGES/kaccounts-integration.mo +share/locale/eu/LC_MESSAGES/kaccounts-integration.mo share/locale/fi/LC_MESSAGES/kaccounts-integration.mo share/locale/fr/LC_MESSAGES/kaccounts-integration.mo share/locale/gl/LC_MESSAGES/kaccounts-integration.mo share/locale/ia/LC_MESSAGES/kaccounts-integration.mo share/locale/it/LC_MESSAGES/kaccounts-integration.mo share/locale/ja/LC_MESSAGES/kaccounts-integration.mo share/locale/ko/LC_MESSAGES/kaccounts-integration.mo share/locale/lt/LC_MESSAGES/kaccounts-integration.mo share/locale/nl/LC_MESSAGES/kaccounts-integration.mo share/locale/nn/LC_MESSAGES/kaccounts-integration.mo share/locale/pa/LC_MESSAGES/kaccounts-integration.mo share/locale/pl/LC_MESSAGES/kaccounts-integration.mo share/locale/pt/LC_MESSAGES/kaccounts-integration.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-integration.mo share/locale/ro/LC_MESSAGES/kaccounts-integration.mo share/locale/ru/LC_MESSAGES/kaccounts-integration.mo share/locale/sk/LC_MESSAGES/kaccounts-integration.mo share/locale/sl/LC_MESSAGES/kaccounts-integration.mo share/locale/sr/LC_MESSAGES/kaccounts-integration.mo share/locale/sv/LC_MESSAGES/kaccounts-integration.mo share/locale/tr/LC_MESSAGES/kaccounts-integration.mo share/locale/uk/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-integration.mo Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 506434) +++ head/net-im/kaccounts-providers/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621740 -SHA256 (KDE/applications/19.04.2/kaccounts-providers-19.04.2.tar.xz) = 05956e3a057ef61800e0ca506d6e9fa3d5ddf1bcc7d93ed7aeac56976c21fbc7 -SIZE (KDE/applications/19.04.2/kaccounts-providers-19.04.2.tar.xz) = 31680 +TIMESTAMP = 1562690809 +SHA256 (KDE/applications/19.04.3/kaccounts-providers-19.04.3.tar.xz) = 483b87dc74913d7ab3b569d64e890d4358d95e2544ec8027cd21232495457636 +SIZE (KDE/applications/19.04.3/kaccounts-providers-19.04.3.tar.xz) = 31984 Index: head/net-im/kaccounts-providers/pkg-plist =================================================================== --- head/net-im/kaccounts-providers/pkg-plist (revision 506434) +++ head/net-im/kaccounts-providers/pkg-plist (revision 506435) @@ -1,48 +1,49 @@ etc/signon-ui/webkit-options.d/accounts.google.com.conf etc/signon-ui/webkit-options.d/api.twitter.com.conf etc/signon-ui/webkit-options.d/identi.ca.conf etc/signon-ui/webkit-options.d/www.facebook.com.conf %%QT_PLUGINDIR%%/kaccounts/ui/owncloud_plugin_kaccounts.so share/accounts/providers/kde/google.provider share/accounts/providers/kde/owncloud.provider share/accounts/providers/kde/twitter.provider share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/BasicInfo.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/Services.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/main.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.desktop share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.json share/locale/ar/LC_MESSAGES/kaccounts-providers.mo share/locale/bs/LC_MESSAGES/kaccounts-providers.mo share/locale/ca/LC_MESSAGES/kaccounts-providers.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-providers.mo share/locale/cs/LC_MESSAGES/kaccounts-providers.mo share/locale/da/LC_MESSAGES/kaccounts-providers.mo share/locale/de/LC_MESSAGES/kaccounts-providers.mo share/locale/el/LC_MESSAGES/kaccounts-providers.mo share/locale/en_GB/LC_MESSAGES/kaccounts-providers.mo share/locale/es/LC_MESSAGES/kaccounts-providers.mo share/locale/et/LC_MESSAGES/kaccounts-providers.mo +share/locale/eu/LC_MESSAGES/kaccounts-providers.mo share/locale/fi/LC_MESSAGES/kaccounts-providers.mo share/locale/fr/LC_MESSAGES/kaccounts-providers.mo share/locale/gl/LC_MESSAGES/kaccounts-providers.mo share/locale/ia/LC_MESSAGES/kaccounts-providers.mo share/locale/it/LC_MESSAGES/kaccounts-providers.mo share/locale/ja/LC_MESSAGES/kaccounts-providers.mo share/locale/ko/LC_MESSAGES/kaccounts-providers.mo share/locale/lt/LC_MESSAGES/kaccounts-providers.mo share/locale/nl/LC_MESSAGES/kaccounts-providers.mo share/locale/nn/LC_MESSAGES/kaccounts-providers.mo share/locale/pl/LC_MESSAGES/kaccounts-providers.mo share/locale/pt/LC_MESSAGES/kaccounts-providers.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-providers.mo share/locale/ro/LC_MESSAGES/kaccounts-providers.mo share/locale/ru/LC_MESSAGES/kaccounts-providers.mo share/locale/sk/LC_MESSAGES/kaccounts-providers.mo share/locale/sl/LC_MESSAGES/kaccounts-providers.mo share/locale/sr/LC_MESSAGES/kaccounts-providers.mo share/locale/sv/LC_MESSAGES/kaccounts-providers.mo share/locale/tr/LC_MESSAGES/kaccounts-providers.mo share/locale/uk/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-providers.mo share/metainfo/org.kde.kaccounts.owncloud.appdata.xml Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 506434) +++ head/net-im/kopete/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621750 -SHA256 (KDE/applications/19.04.2/kopete-19.04.2.tar.xz) = e6e4052ddeb57a37e583b8bf36b3308244a4c62d71e134d6918b3da8828b6236 -SIZE (KDE/applications/19.04.2/kopete-19.04.2.tar.xz) = 9371596 +TIMESTAMP = 1562690820 +SHA256 (KDE/applications/19.04.3/kopete-19.04.3.tar.xz) = 038c6385d6b2b6d1f35c5c337ebd8c492eea3e4a27d6f7236fd2fee219a7f28a +SIZE (KDE/applications/19.04.3/kopete-19.04.3.tar.xz) = 9361392 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 506434) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621751 -SHA256 (KDE/applications/19.04.2/ktp-accounts-kcm-19.04.2.tar.xz) = d572ef87955759bccf2e9d80b280cf2a68ab166dd83d0453b357ff6109fd8bce -SIZE (KDE/applications/19.04.2/ktp-accounts-kcm-19.04.2.tar.xz) = 260088 +TIMESTAMP = 1562690820 +SHA256 (KDE/applications/19.04.3/ktp-accounts-kcm-19.04.3.tar.xz) = 1c2f411bc161bbf08276bd3a12329f11f233e84e3e04cb632a2096c6e4d03afb +SIZE (KDE/applications/19.04.3/ktp-accounts-kcm-19.04.3.tar.xz) = 262348 Index: head/net-im/ktp-accounts-kcm/pkg-plist =================================================================== --- head/net-im/ktp-accounts-kcm/pkg-plist (revision 506434) +++ head/net-im/ktp-accounts-kcm/pkg-plist (revision 506435) @@ -1,509 +1,510 @@ lib/libktpaccountskcminternal.so.%%KDE_APPLICATIONS_VERSION%% lib/libktpaccountskcminternal.so.9 %%QT_PLUGINDIR%%/kaccounts/ui/ktpaccountskcm_plugin_kaccounts.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_gabble.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_haze.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_idle.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_morse.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_salut.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_sipe.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_sunshine.so share/accounts/providers/kde/ktp-gadugadu.provider share/accounts/providers/kde/ktp-generic.provider share/accounts/providers/kde/ktp-haze-aim.provider share/accounts/providers/kde/ktp-haze-icq.provider share/accounts/providers/kde/ktp-haze-sametime.provider share/accounts/providers/kde/ktp-haze-skypeweb.provider share/accounts/providers/kde/ktp-haze-yahoo.provider share/accounts/providers/kde/ktp-jabber.provider share/accounts/providers/kde/ktp-kde-talk.provider share/accounts/providers/kde/ktp-morse-telegram.provider share/accounts/providers/kde/ktp-salut.provider share/accounts/providers/kde/ktp-sipe-haze.provider share/accounts/providers/kde/ktp-sipe.provider share/accounts/services/kde/google-im.service share/accounts/services/kde/ktp-generic-im.service share/accounts/services/kde/ktp-haze-aim-im.service share/accounts/services/kde/ktp-haze-gadugadu-im.service share/accounts/services/kde/ktp-haze-icq-im.service share/accounts/services/kde/ktp-haze-sametime-im.service share/accounts/services/kde/ktp-haze-skypeweb-im.service share/accounts/services/kde/ktp-haze-yahoo-im.service share/accounts/services/kde/ktp-jabber-im.service share/accounts/services/kde/ktp-kde-talk-im.service share/accounts/services/kde/ktp-morse-telegram-im.service share/accounts/services/kde/ktp-salut-im.service share/accounts/services/kde/ktp-sipe-haze-im.service share/accounts/services/kde/ktp-sipe-im.service share/kservices5/ktpaccountskcm_plugin_gabble.desktop share/kservices5/ktpaccountskcm_plugin_haze.desktop share/kservices5/ktpaccountskcm_plugin_idle.desktop share/kservices5/ktpaccountskcm_plugin_morse.desktop share/kservices5/ktpaccountskcm_plugin_salut.desktop share/kservices5/ktpaccountskcm_plugin_sipe.desktop share/kservices5/ktpaccountskcm_plugin_sunshine.desktop share/kservicetypes5/ktpaccountskcminternal-accountuiplugin.desktop share/locale/ar/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/bs/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ca/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/cs/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/da/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/de/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/el/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/eo/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/es/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/et/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo +share/locale/eu/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/fi/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/fr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ga/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/gl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/hu/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ia/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/it/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ja/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/kk/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/km/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ko/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/lt/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/mr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nb/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nds/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nn/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pa/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pt/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ro/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ru/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sk/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sv/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/tr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ug/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/uk/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/wa/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/telepathy/profiles/bigbrownchunx-skype-dbus.profile share/telepathy/profiles/facebook.profile share/telepathy/profiles/gadugadu.profile share/telepathy/profiles/google-talk.profile share/telepathy/profiles/irc.profile share/telepathy/profiles/jabber.profile share/telepathy/profiles/kde-talk.profile share/telepathy/profiles/local-xmpp.profile share/telepathy/profiles/msn-xmpp.profile share/telepathy/profiles/msn.profile share/telepathy/profiles/sipe-haze.profile share/telepathy/profiles/sms.profile share/telepathy/profiles/sofiasip-sip.profile share/telepathy/profiles/steam.profile Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 506434) +++ head/net-im/ktp-approver/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621751 -SHA256 (KDE/applications/19.04.2/ktp-approver-19.04.2.tar.xz) = da3c6e6f1a6c7a7c67ed54079cb49d4dc8841e4a715f68a157236201b0c5b4a5 -SIZE (KDE/applications/19.04.2/ktp-approver-19.04.2.tar.xz) = 36980 +TIMESTAMP = 1562690820 +SHA256 (KDE/applications/19.04.3/ktp-approver-19.04.3.tar.xz) = 40796bfd2644b1d43f6ecd3ce48298240af53967485283fa8d9cd330e8377b74 +SIZE (KDE/applications/19.04.3/ktp-approver-19.04.3.tar.xz) = 37012 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 506434) +++ head/net-im/ktp-auth-handler/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621751 -SHA256 (KDE/applications/19.04.2/ktp-auth-handler-19.04.2.tar.xz) = 25bb0b6a66ae6ddadd4f1894c2354204bca7b6367172f6510c1a15df57897fbc -SIZE (KDE/applications/19.04.2/ktp-auth-handler-19.04.2.tar.xz) = 45900 +TIMESTAMP = 1562690821 +SHA256 (KDE/applications/19.04.3/ktp-auth-handler-19.04.3.tar.xz) = f65ceba1958b846f24894d57e180cf80f94ddad289713965f2abfd1ec8d91292 +SIZE (KDE/applications/19.04.3/ktp-auth-handler-19.04.3.tar.xz) = 46016 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 506434) +++ head/net-im/ktp-call-ui/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621752 -SHA256 (KDE/applications/19.04.2/ktp-call-ui-19.04.2.tar.xz) = 9416ae9694c4e8e303afb01bcbb0d9dc65a4ff8e872b66be0e184cf749c7f875 -SIZE (KDE/applications/19.04.2/ktp-call-ui-19.04.2.tar.xz) = 95908 +TIMESTAMP = 1562690821 +SHA256 (KDE/applications/19.04.3/ktp-call-ui-19.04.3.tar.xz) = e747049eefe80f7fccf4639c2bb1ed294538dc79e17a2ed395003d213a64821c +SIZE (KDE/applications/19.04.3/ktp-call-ui-19.04.3.tar.xz) = 95968 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 506434) +++ head/net-im/ktp-common-internals/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621752 -SHA256 (KDE/applications/19.04.2/ktp-common-internals-19.04.2.tar.xz) = a954bf7a66b6025163e51379f730f1465a1fe62993244c703a38ac8280939a9f -SIZE (KDE/applications/19.04.2/ktp-common-internals-19.04.2.tar.xz) = 441184 +TIMESTAMP = 1562690821 +SHA256 (KDE/applications/19.04.3/ktp-common-internals-19.04.3.tar.xz) = 43bcf817c3269251578e16fb9519668683e6efe4e33f453e13f5ef95fd96a9aa +SIZE (KDE/applications/19.04.3/ktp-common-internals-19.04.3.tar.xz) = 442052 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 506434) +++ head/net-im/ktp-contact-list/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621752 -SHA256 (KDE/applications/19.04.2/ktp-contact-list-19.04.2.tar.xz) = c774f76489215bea1cddd02ff4401b359e2865f40efbbee2c813273814fc5770 -SIZE (KDE/applications/19.04.2/ktp-contact-list-19.04.2.tar.xz) = 145944 +TIMESTAMP = 1562690822 +SHA256 (KDE/applications/19.04.3/ktp-contact-list-19.04.3.tar.xz) = c74903c4d099f4a138fa3cb4758460b2fdf49292070439e4da6194c0cc486c2f +SIZE (KDE/applications/19.04.3/ktp-contact-list-19.04.3.tar.xz) = 145776 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 506434) +++ head/net-im/ktp-contact-runner/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621753 -SHA256 (KDE/applications/19.04.2/ktp-contact-runner-19.04.2.tar.xz) = feaba5d7863452b00029c20ebfa88bf9a8f0718fad35b103d45edbfc607e6cb6 -SIZE (KDE/applications/19.04.2/ktp-contact-runner-19.04.2.tar.xz) = 42060 +TIMESTAMP = 1562690822 +SHA256 (KDE/applications/19.04.3/ktp-contact-runner-19.04.3.tar.xz) = 30551ec0419e978f43d25f1a9b48d07429a14cde0feba58a08ad452a2f2d3b0e +SIZE (KDE/applications/19.04.3/ktp-contact-runner-19.04.3.tar.xz) = 42020 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 506434) +++ head/net-im/ktp-desktop-applets/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621753 -SHA256 (KDE/applications/19.04.2/ktp-desktop-applets-19.04.2.tar.xz) = 2f9903e6b012e7867cd0a74e75ff3262b005edbb41537630224e7e1f9602fd67 -SIZE (KDE/applications/19.04.2/ktp-desktop-applets-19.04.2.tar.xz) = 42716 +TIMESTAMP = 1562690823 +SHA256 (KDE/applications/19.04.3/ktp-desktop-applets-19.04.3.tar.xz) = 826dd1e28e3fc7f730dbbe465183fc5df3bc1be67c89ccc8615607de783cc91d +SIZE (KDE/applications/19.04.3/ktp-desktop-applets-19.04.3.tar.xz) = 42836 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 506434) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621753 -SHA256 (KDE/applications/19.04.2/ktp-filetransfer-handler-19.04.2.tar.xz) = 3350cab1e5b7d7781030395b07d9f8c04d841dce04a1652c1cf9380aa98cc478 -SIZE (KDE/applications/19.04.2/ktp-filetransfer-handler-19.04.2.tar.xz) = 45560 +TIMESTAMP = 1562690823 +SHA256 (KDE/applications/19.04.3/ktp-filetransfer-handler-19.04.3.tar.xz) = a2408806c9a3a50a7f04bb9106d27ba62e4b0e670957e6630a7841a191b5ca9c +SIZE (KDE/applications/19.04.3/ktp-filetransfer-handler-19.04.3.tar.xz) = 45960 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 506434) +++ head/net-im/ktp-kded-module/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621754 -SHA256 (KDE/applications/19.04.2/ktp-kded-module-19.04.2.tar.xz) = bd886d97511434bda9691eec5164382090ca39ff65da62e7157789d7c0d51eec -SIZE (KDE/applications/19.04.2/ktp-kded-module-19.04.2.tar.xz) = 94768 +TIMESTAMP = 1562690823 +SHA256 (KDE/applications/19.04.3/ktp-kded-module-19.04.3.tar.xz) = dbbb1876c55e8bef22cde4bb59395ae6d4d01dd851368a5f293c5f7e2aed25e4 +SIZE (KDE/applications/19.04.3/ktp-kded-module-19.04.3.tar.xz) = 94500 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 506434) +++ head/net-im/ktp-send-file/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621754 -SHA256 (KDE/applications/19.04.2/ktp-send-file-19.04.2.tar.xz) = 83bb9a344cefe20bc9b94953b620a40411e086837c8d792ca7211b9e6ce051c9 -SIZE (KDE/applications/19.04.2/ktp-send-file-19.04.2.tar.xz) = 28524 +TIMESTAMP = 1562690824 +SHA256 (KDE/applications/19.04.3/ktp-send-file-19.04.3.tar.xz) = 1ef4f7099e571e2a1f5fbaaf802d1002f14f5a644d5054b4b850a292bbb676c6 +SIZE (KDE/applications/19.04.3/ktp-send-file-19.04.3.tar.xz) = 28608 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 506434) +++ head/net-im/ktp-text-ui/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621754 -SHA256 (KDE/applications/19.04.2/ktp-text-ui-19.04.2.tar.xz) = f2393974299afa2a5471437ae22565d740e9fb39027e60b636d35a2c2360e117 -SIZE (KDE/applications/19.04.2/ktp-text-ui-19.04.2.tar.xz) = 464468 +TIMESTAMP = 1562690824 +SHA256 (KDE/applications/19.04.3/ktp-text-ui-19.04.3.tar.xz) = cf21be1ee61e5b4703feacab093f89aa66f126aba248b71111281513ba65661a +SIZE (KDE/applications/19.04.3/ktp-text-ui-19.04.3.tar.xz) = 464932 Index: head/net-im/ktp-text-ui/pkg-plist =================================================================== --- head/net-im/ktp-text-ui/pkg-plist (revision 506434) +++ head/net-im/ktp-text-ui/pkg-plist (revision 506435) @@ -1,585 +1,586 @@ bin/ktp-log-viewer lib/libexec/ktp-adiumxtra-protocol-handler lib/libexec/ktp-text-ui lib/libktpchat.so lib/libktpimagesharer.so %%QT_PLUGINDIR%%/kcm_ktp_chat_appearance.so %%QT_PLUGINDIR%%/kcm_ktp_chat_behavior.so %%QT_PLUGINDIR%%/kcm_ktp_chat_messages.so %%QT_PLUGINDIR%%/kcm_ktp_chat_otr.so %%QT_PLUGINDIR%%/kcm_ktp_logviewer_behavior.so %%QT_PLUGINDIR%%/kcm_ktptextui_message_filter_emoticons.so %%QT_PLUGINDIR%%/kcm_ktptextui_message_filter_latex.so %%QT_PLUGINDIR%%/ktptextui_message_filter_bugzilla.so %%QT_PLUGINDIR%%/ktptextui_message_filter_emoticons.so %%QT_PLUGINDIR%%/ktptextui_message_filter_formatting.so %%QT_PLUGINDIR%%/ktptextui_message_filter_geopoint.so %%QT_PLUGINDIR%%/ktptextui_message_filter_highlight.so %%QT_PLUGINDIR%%/ktptextui_message_filter_images.so %%QT_PLUGINDIR%%/ktptextui_message_filter_latex.so %%QT_PLUGINDIR%%/ktptextui_message_filter_otr.so %%QT_PLUGINDIR%%/ktptextui_message_filter_searchexpansion.so %%QT_PLUGINDIR%%/ktptextui_message_filter_tts.so %%QT_PLUGINDIR%%/ktptextui_message_filter_urlexpansion.so %%QT_PLUGINDIR%%/ktptextui_message_filter_youtube.so share/applications/org.kde.ktplogviewer.desktop share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.TextUi.service share/kservices5/adiumxtra.protocol share/kservices5/kcm_ktp_chat_appearance.desktop share/kservices5/kcm_ktp_chat_behavior.desktop share/kservices5/kcm_ktp_chat_messages.desktop share/kservices5/kcm_ktp_chat_otr.desktop share/kservices5/kcm_ktp_logviewer_behavior.desktop share/kservices5/kcm_ktptextui_message_filter_emoticons.desktop share/kservices5/kcm_ktptextui_message_filter_latex.desktop share/kservices5/ktptextui_message_filter_bugzilla.desktop share/kservices5/ktptextui_message_filter_emoticons.desktop share/kservices5/ktptextui_message_filter_formatting.desktop share/kservices5/ktptextui_message_filter_geopoint.desktop share/kservices5/ktptextui_message_filter_highlight.desktop share/kservices5/ktptextui_message_filter_images.desktop share/kservices5/ktptextui_message_filter_latex.desktop share/kservices5/ktptextui_message_filter_otr.desktop share/kservices5/ktptextui_message_filter_searchexpansion.desktop share/kservices5/ktptextui_message_filter_tts.desktop share/kservices5/ktptextui_message_filter_urlexpansion.desktop share/kservices5/ktptextui_message_filter_youtube.desktop share/kservicetypes5/ktptxtui_message_filter.desktop share/ktelepathy/Template.html share/ktelepathy/longurl.js share/ktelepathy/longurlServices.json share/ktelepathy/showBugzillaInfo.js share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Info.plist share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Footer.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Header.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Incoming/Content.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Incoming/SenderColors.txt share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Status.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/main.css share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Info.plist share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Footer.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Header.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Incoming/Content.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Status.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Styles/Header.css share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Template.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Topic.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/img/sidebar_header_bg.png share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/lib/jquery.js share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/lib/livepipe.js share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/lib/scrollbar.js share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/main.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Info.plist share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Demo.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Footer.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Header.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/Content.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/Context.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/NextContext.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/buddy_icon.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/NextContext.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/buddy_icon.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Status.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/Header.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/Topic.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/main.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/noname.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Topic.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/DummyContact.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/alert.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/silverBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/silverCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelHeading.jpg share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/typing-left.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/typing-right.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowHeading.jpg share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowTL.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowTR.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/incoming_icon.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/outgoing_icon.png share/ktp-log-viewer/log-viewer.rc share/kxmlgui5/ktp-text-ui/chatwindow.rc share/locale/ar/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ar/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ar/LC_MESSAGES/ktp-filters.mo share/locale/ar/LC_MESSAGES/ktp-log-viewer.mo share/locale/ar/LC_MESSAGES/ktpchat.mo share/locale/bs/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/bs/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/bs/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/bs/LC_MESSAGES/ktp-filters.mo share/locale/bs/LC_MESSAGES/ktp-log-viewer.mo share/locale/bs/LC_MESSAGES/ktp-text-ui.mo share/locale/bs/LC_MESSAGES/ktpchat.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ca/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ca/LC_MESSAGES/ktp-filters.mo share/locale/ca/LC_MESSAGES/ktp-log-viewer.mo share/locale/ca/LC_MESSAGES/ktp-text-ui.mo share/locale/ca/LC_MESSAGES/ktpchat.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ca@valencia/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ca@valencia/LC_MESSAGES/ktp-filters.mo share/locale/ca@valencia/LC_MESSAGES/ktp-log-viewer.mo share/locale/ca@valencia/LC_MESSAGES/ktp-text-ui.mo share/locale/ca@valencia/LC_MESSAGES/ktpchat.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/cs/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/cs/LC_MESSAGES/ktp-filters.mo share/locale/cs/LC_MESSAGES/ktp-log-viewer.mo share/locale/cs/LC_MESSAGES/ktp-text-ui.mo share/locale/cs/LC_MESSAGES/ktpchat.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/da/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/da/LC_MESSAGES/ktp-filters.mo share/locale/da/LC_MESSAGES/ktp-log-viewer.mo share/locale/da/LC_MESSAGES/ktp-text-ui.mo share/locale/da/LC_MESSAGES/ktpchat.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/de/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/de/LC_MESSAGES/ktp-filters.mo share/locale/de/LC_MESSAGES/ktp-log-viewer.mo share/locale/de/LC_MESSAGES/ktp-text-ui.mo share/locale/de/LC_MESSAGES/ktpchat.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/el/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/el/LC_MESSAGES/ktp-filters.mo share/locale/el/LC_MESSAGES/ktp-log-viewer.mo share/locale/el/LC_MESSAGES/ktp-text-ui.mo share/locale/el/LC_MESSAGES/ktpchat.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/en_GB/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/en_GB/LC_MESSAGES/ktp-filters.mo share/locale/en_GB/LC_MESSAGES/ktp-log-viewer.mo share/locale/en_GB/LC_MESSAGES/ktp-text-ui.mo share/locale/en_GB/LC_MESSAGES/ktpchat.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/es/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/es/LC_MESSAGES/ktp-filters.mo share/locale/es/LC_MESSAGES/ktp-log-viewer.mo share/locale/es/LC_MESSAGES/ktp-text-ui.mo share/locale/es/LC_MESSAGES/ktpchat.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/et/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/et/LC_MESSAGES/ktp-filters.mo share/locale/et/LC_MESSAGES/ktp-log-viewer.mo share/locale/et/LC_MESSAGES/ktp-text-ui.mo share/locale/et/LC_MESSAGES/ktpchat.mo +share/locale/eu/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/fi/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/fi/LC_MESSAGES/ktp-filters.mo share/locale/fi/LC_MESSAGES/ktp-log-viewer.mo share/locale/fi/LC_MESSAGES/ktp-text-ui.mo share/locale/fi/LC_MESSAGES/ktpchat.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/fr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/fr/LC_MESSAGES/ktp-filters.mo share/locale/fr/LC_MESSAGES/ktp-log-viewer.mo share/locale/fr/LC_MESSAGES/ktp-text-ui.mo share/locale/fr/LC_MESSAGES/ktpchat.mo share/locale/ga/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ga/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ga/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ga/LC_MESSAGES/ktp-text-ui.mo share/locale/ga/LC_MESSAGES/ktpchat.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/gl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/gl/LC_MESSAGES/ktp-filters.mo share/locale/gl/LC_MESSAGES/ktp-log-viewer.mo share/locale/gl/LC_MESSAGES/ktp-text-ui.mo share/locale/gl/LC_MESSAGES/ktpchat.mo share/locale/hu/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/hu/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/hu/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/hu/LC_MESSAGES/ktp-filters.mo share/locale/hu/LC_MESSAGES/ktp-text-ui.mo share/locale/hu/LC_MESSAGES/ktpchat.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ia/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ia/LC_MESSAGES/ktp-filters.mo share/locale/ia/LC_MESSAGES/ktp-log-viewer.mo share/locale/ia/LC_MESSAGES/ktp-text-ui.mo share/locale/ia/LC_MESSAGES/ktpchat.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/it/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/it/LC_MESSAGES/ktp-filters.mo share/locale/it/LC_MESSAGES/ktp-log-viewer.mo share/locale/it/LC_MESSAGES/ktp-text-ui.mo share/locale/it/LC_MESSAGES/ktpchat.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ja/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ja/LC_MESSAGES/ktp-filters.mo share/locale/ja/LC_MESSAGES/ktp-log-viewer.mo share/locale/ja/LC_MESSAGES/ktp-text-ui.mo share/locale/ja/LC_MESSAGES/ktpchat.mo share/locale/kk/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/kk/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/kk/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/kk/LC_MESSAGES/ktp-filters.mo share/locale/kk/LC_MESSAGES/ktp-text-ui.mo share/locale/kk/LC_MESSAGES/ktpchat.mo share/locale/km/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/km/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/km/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/km/LC_MESSAGES/ktp-text-ui.mo share/locale/km/LC_MESSAGES/ktpchat.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ko/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ko/LC_MESSAGES/ktp-filters.mo share/locale/ko/LC_MESSAGES/ktp-log-viewer.mo share/locale/ko/LC_MESSAGES/ktp-text-ui.mo share/locale/ko/LC_MESSAGES/ktpchat.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/lt/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/lt/LC_MESSAGES/ktp-filters.mo share/locale/lt/LC_MESSAGES/ktp-log-viewer.mo share/locale/lt/LC_MESSAGES/ktp-text-ui.mo share/locale/lt/LC_MESSAGES/ktpchat.mo share/locale/mr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/mr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/mr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/mr/LC_MESSAGES/ktp-filters.mo share/locale/mr/LC_MESSAGES/ktp-text-ui.mo share/locale/mr/LC_MESSAGES/ktpchat.mo share/locale/nb/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nb/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nb/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nb/LC_MESSAGES/ktp-filters.mo share/locale/nb/LC_MESSAGES/ktp-log-viewer.mo share/locale/nb/LC_MESSAGES/ktp-text-ui.mo share/locale/nb/LC_MESSAGES/ktpchat.mo share/locale/nds/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nds/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nds/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nds/LC_MESSAGES/ktp-filters.mo share/locale/nds/LC_MESSAGES/ktp-log-viewer.mo share/locale/nds/LC_MESSAGES/ktp-text-ui.mo share/locale/nds/LC_MESSAGES/ktpchat.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/nl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nl/LC_MESSAGES/ktp-filters.mo share/locale/nl/LC_MESSAGES/ktp-log-viewer.mo share/locale/nl/LC_MESSAGES/ktp-text-ui.mo share/locale/nl/LC_MESSAGES/ktpchat.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/nn/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nn/LC_MESSAGES/ktp-filters.mo share/locale/nn/LC_MESSAGES/ktp-log-viewer.mo share/locale/nn/LC_MESSAGES/ktp-text-ui.mo share/locale/nn/LC_MESSAGES/ktpchat.mo share/locale/pa/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pa/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pa/LC_MESSAGES/ktp-filters.mo share/locale/pa/LC_MESSAGES/ktp-text-ui.mo share/locale/pa/LC_MESSAGES/ktpchat.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/pl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/pl/LC_MESSAGES/ktp-filters.mo share/locale/pl/LC_MESSAGES/ktp-log-viewer.mo share/locale/pl/LC_MESSAGES/ktp-text-ui.mo share/locale/pl/LC_MESSAGES/ktpchat.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/pt/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/pt/LC_MESSAGES/ktp-filters.mo share/locale/pt/LC_MESSAGES/ktp-log-viewer.mo share/locale/pt/LC_MESSAGES/ktp-text-ui.mo share/locale/pt/LC_MESSAGES/ktpchat.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/pt_BR/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/pt_BR/LC_MESSAGES/ktp-filters.mo share/locale/pt_BR/LC_MESSAGES/ktp-log-viewer.mo share/locale/pt_BR/LC_MESSAGES/ktp-text-ui.mo share/locale/pt_BR/LC_MESSAGES/ktpchat.mo share/locale/ro/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ro/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ro/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ro/LC_MESSAGES/ktp-filters.mo share/locale/ro/LC_MESSAGES/ktp-log-viewer.mo share/locale/ro/LC_MESSAGES/ktp-text-ui.mo share/locale/ro/LC_MESSAGES/ktpchat.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ru/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ru/LC_MESSAGES/ktp-filters.mo share/locale/ru/LC_MESSAGES/ktp-log-viewer.mo share/locale/ru/LC_MESSAGES/ktp-text-ui.mo share/locale/ru/LC_MESSAGES/ktpchat.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sk/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sk/LC_MESSAGES/ktp-filters.mo share/locale/sk/LC_MESSAGES/ktp-log-viewer.mo share/locale/sk/LC_MESSAGES/ktp-text-ui.mo share/locale/sk/LC_MESSAGES/ktpchat.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sl/LC_MESSAGES/ktp-filters.mo share/locale/sl/LC_MESSAGES/ktp-log-viewer.mo share/locale/sl/LC_MESSAGES/ktp-text-ui.mo share/locale/sl/LC_MESSAGES/ktpchat.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sr/LC_MESSAGES/ktp-filters.mo share/locale/sr/LC_MESSAGES/ktp-log-viewer.mo share/locale/sr/LC_MESSAGES/ktp-text-ui.mo share/locale/sr/LC_MESSAGES/ktpchat.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sv/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sv/LC_MESSAGES/ktp-filters.mo share/locale/sv/LC_MESSAGES/ktp-log-viewer.mo share/locale/sv/LC_MESSAGES/ktp-text-ui.mo share/locale/sv/LC_MESSAGES/ktpchat.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/tr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/tr/LC_MESSAGES/ktp-filters.mo share/locale/tr/LC_MESSAGES/ktp-log-viewer.mo share/locale/tr/LC_MESSAGES/ktp-text-ui.mo share/locale/tr/LC_MESSAGES/ktpchat.mo share/locale/ug/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ug/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ug/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ug/LC_MESSAGES/ktp-filters.mo share/locale/ug/LC_MESSAGES/ktp-text-ui.mo share/locale/ug/LC_MESSAGES/ktpchat.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/uk/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/uk/LC_MESSAGES/ktp-filters.mo share/locale/uk/LC_MESSAGES/ktp-log-viewer.mo share/locale/uk/LC_MESSAGES/ktp-text-ui.mo share/locale/uk/LC_MESSAGES/ktpchat.mo share/locale/wa/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/zh_CN/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/zh_CN/LC_MESSAGES/ktp-filters.mo share/locale/zh_CN/LC_MESSAGES/ktp-log-viewer.mo share/locale/zh_CN/LC_MESSAGES/ktp-text-ui.mo share/locale/zh_CN/LC_MESSAGES/ktpchat.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/zh_TW/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/zh_TW/LC_MESSAGES/ktp-filters.mo share/locale/zh_TW/LC_MESSAGES/ktp-log-viewer.mo share/locale/zh_TW/LC_MESSAGES/ktp-text-ui.mo share/locale/zh_TW/LC_MESSAGES/ktpchat.mo share/telepathy/clients/KTp.TextUi.client Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 506434) +++ head/print/print-manager/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621768 -SHA256 (KDE/applications/19.04.2/print-manager-19.04.2.tar.xz) = c889c6f96c854bb0ec1e37d99d907dbe425b72f6b4221d6e65fa9b83a173c81c -SIZE (KDE/applications/19.04.2/print-manager-19.04.2.tar.xz) = 240472 +TIMESTAMP = 1562690838 +SHA256 (KDE/applications/19.04.3/print-manager-19.04.3.tar.xz) = 5ab32527d6916c1063bf175a1515a0cebb0dfb93844881c4339b2ee690697907 +SIZE (KDE/applications/19.04.3/print-manager-19.04.3.tar.xz) = 240784 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 506434) +++ head/science/kalzium/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621779 -SHA256 (KDE/applications/19.04.2/kalzium-19.04.2.tar.xz) = 9fad6ce4351922be8aa20c588240ad3d17517d4df27a7522cb99126f24aa941c -SIZE (KDE/applications/19.04.2/kalzium-19.04.2.tar.xz) = 26545144 +TIMESTAMP = 1562690849 +SHA256 (KDE/applications/19.04.3/kalzium-19.04.3.tar.xz) = 2a7bf84021be5013aa1e2b14d0c97e6c80b1b7b9e2c78c8df50c0a94925699d1 +SIZE (KDE/applications/19.04.3/kalzium-19.04.3.tar.xz) = 26404792 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 506434) +++ head/science/step/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621779 -SHA256 (KDE/applications/19.04.2/step-19.04.2.tar.xz) = 042269e19e4d417869464c28e0ec24997e671d8272b4ad2e2fe57564b698b677 -SIZE (KDE/applications/19.04.2/step-19.04.2.tar.xz) = 860480 +TIMESTAMP = 1562690849 +SHA256 (KDE/applications/19.04.3/step-19.04.3.tar.xz) = a9b2daff1c9821e9c0fa79d39fc15b96753a3d0c61863d76d07e4e3222b0a4a2 +SIZE (KDE/applications/19.04.3/step-19.04.3.tar.xz) = 862920 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 506434) +++ head/security/kgpg/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621780 -SHA256 (KDE/applications/19.04.2/kgpg-19.04.2.tar.xz) = 74b82377c381d8e03e09205a54a870508c33c866251b52eaa52831fbd33da45a -SIZE (KDE/applications/19.04.2/kgpg-19.04.2.tar.xz) = 2864224 +TIMESTAMP = 1562690849 +SHA256 (KDE/applications/19.04.3/kgpg-19.04.3.tar.xz) = 740ad342cfa1edf1c7cbbe8d15789533d5003dda5bf3899687eb4182b582236d +SIZE (KDE/applications/19.04.3/kgpg-19.04.3.tar.xz) = 2786024 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 506434) +++ head/security/kleopatra/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621780 -SHA256 (KDE/applications/19.04.2/kleopatra-19.04.2.tar.xz) = 8536ebdae2d0fe6fa8ac4bb39756e6aff1fc1b8459163b39efc2a32d25fa41c3 -SIZE (KDE/applications/19.04.2/kleopatra-19.04.2.tar.xz) = 1925732 +TIMESTAMP = 1562690850 +SHA256 (KDE/applications/19.04.3/kleopatra-19.04.3.tar.xz) = a6265e182d480a146464751bf34e3430804dfbc954c09ff85bac15273aa1c033 +SIZE (KDE/applications/19.04.3/kleopatra-19.04.3.tar.xz) = 1922504 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 506434) +++ head/security/kpkpass/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621780 -SHA256 (KDE/applications/19.04.2/kpkpass-19.04.2.tar.xz) = 7d009a8441b5132460c1ad95812a4dded32f93e54eabccac236e7f2aeb20d828 -SIZE (KDE/applications/19.04.2/kpkpass-19.04.2.tar.xz) = 23184 +TIMESTAMP = 1562690850 +SHA256 (KDE/applications/19.04.3/kpkpass-19.04.3.tar.xz) = ee602c3176f141bf83d20d0ab277d26306a8b13ac105ec5594cfc8835d838a55 +SIZE (KDE/applications/19.04.3/kpkpass-19.04.3.tar.xz) = 23320 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 506434) +++ head/security/kwalletmanager/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621781 -SHA256 (KDE/applications/19.04.2/kwalletmanager-19.04.2.tar.xz) = fe54cc90795bd4d8cb19b61fab011833dce1754c597eda4cda0f59be40c01868 -SIZE (KDE/applications/19.04.2/kwalletmanager-19.04.2.tar.xz) = 785376 +TIMESTAMP = 1562690850 +SHA256 (KDE/applications/19.04.3/kwalletmanager-19.04.3.tar.xz) = b7eafd7ce252396bba0609d4114f88e0d1956e9f0f7f9703000eadda0cd7cc0e +SIZE (KDE/applications/19.04.3/kwalletmanager-19.04.3.tar.xz) = 786548 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 506434) +++ head/security/libkleo/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621781 -SHA256 (KDE/applications/19.04.2/libkleo-19.04.2.tar.xz) = 9eb0b1d25ccd086e8a8db98d35dac975d90dd56c3d670560d603b630ef3faed7 -SIZE (KDE/applications/19.04.2/libkleo-19.04.2.tar.xz) = 333868 +TIMESTAMP = 1562690851 +SHA256 (KDE/applications/19.04.3/libkleo-19.04.3.tar.xz) = 6c4ad79234c8a3cbe5cb0b5a6e7a11ccec98c5c5058bd970e44419ccab8663de +SIZE (KDE/applications/19.04.3/libkleo-19.04.3.tar.xz) = 332212 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 506434) +++ head/sysutils/baloo-widgets/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621781 -SHA256 (KDE/applications/19.04.2/baloo-widgets-19.04.2.tar.xz) = 7cc52e9f1e4c4104802a8276ddac7bc0d2563086a20a48c47d6fde619d2509ab -SIZE (KDE/applications/19.04.2/baloo-widgets-19.04.2.tar.xz) = 248948 +TIMESTAMP = 1562690851 +SHA256 (KDE/applications/19.04.3/baloo-widgets-19.04.3.tar.xz) = ee14c03ac8254a0d0680bce856178a2110f0339b9dd5021927c59ff2df90606f +SIZE (KDE/applications/19.04.3/baloo-widgets-19.04.3.tar.xz) = 249112 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 506434) +++ head/sysutils/baloo-widgets/pkg-plist (revision 506435) @@ -1,65 +1,65 @@ 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.4.2 +lib/libKF5BalooWidgets.so.19.4.3 %%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/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 506434) +++ head/sysutils/filelight/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621782 -SHA256 (KDE/applications/19.04.2/filelight-19.04.2.tar.xz) = 3b00dcf08455080fa5e519647c3cae319a935c4c95fac48d41199619f6429cb7 -SIZE (KDE/applications/19.04.2/filelight-19.04.2.tar.xz) = 660796 +TIMESTAMP = 1562690852 +SHA256 (KDE/applications/19.04.3/filelight-19.04.3.tar.xz) = 4ad45db886f06afdff1e5c580261eea18f2c0cf3bcde92ecdc626583641d6c88 +SIZE (KDE/applications/19.04.3/filelight-19.04.3.tar.xz) = 660700 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 506434) +++ head/sysutils/k3b/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621782 -SHA256 (KDE/applications/19.04.2/k3b-19.04.2.tar.xz) = 179978f2402117ac5461dba126cdedf2eb3c7065558d8484fb4ef08601448405 -SIZE (KDE/applications/19.04.2/k3b-19.04.2.tar.xz) = 10515616 +TIMESTAMP = 1562690852 +SHA256 (KDE/applications/19.04.3/k3b-19.04.3.tar.xz) = c92b7b811f47d31b107aa14fb1e21d01a8635c208c1503f4ddf183522501df61 +SIZE (KDE/applications/19.04.3/k3b-19.04.3.tar.xz) = 10496576 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 506434) +++ head/sysutils/kbackup/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621782 -SHA256 (KDE/applications/19.04.2/kbackup-19.04.2.tar.xz) = bc7747be985c1ba8b620b5985b5b82930e883d4f1e7c0f3669e879f7641e1765 -SIZE (KDE/applications/19.04.2/kbackup-19.04.2.tar.xz) = 357984 +TIMESTAMP = 1562690852 +SHA256 (KDE/applications/19.04.3/kbackup-19.04.3.tar.xz) = 421e05fbc7b6332cfdca08faa65e74def2c5fa40a6211e6623e03cc4ec568019 +SIZE (KDE/applications/19.04.3/kbackup-19.04.3.tar.xz) = 357424 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 506434) +++ head/sysutils/kcron/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621783 -SHA256 (KDE/applications/19.04.2/kcron-19.04.2.tar.xz) = 6adf8056996f62099f3a9f8818a79ddc0cbb1be24076b6c0101c40c4d0b25e90 -SIZE (KDE/applications/19.04.2/kcron-19.04.2.tar.xz) = 925964 +TIMESTAMP = 1562690853 +SHA256 (KDE/applications/19.04.3/kcron-19.04.3.tar.xz) = 24f6f36d058c3e0587a7a70cc2d2df77eb593efa642833cfb17bc671e97c9cd6 +SIZE (KDE/applications/19.04.3/kcron-19.04.3.tar.xz) = 887528 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 506434) +++ head/sysutils/kdebugsettings/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621783 -SHA256 (KDE/applications/19.04.2/kdebugsettings-19.04.2.tar.xz) = 1754f171269e03da675cc0c0be4321ead3cd11058ade42d531cb87e55e62a044 -SIZE (KDE/applications/19.04.2/kdebugsettings-19.04.2.tar.xz) = 55124 +TIMESTAMP = 1562690853 +SHA256 (KDE/applications/19.04.3/kdebugsettings-19.04.3.tar.xz) = 0f3f2afafad0cfb312b51b15de6615359ba5ccd7bee6b35ce48a40e3a58368c5 +SIZE (KDE/applications/19.04.3/kdebugsettings-19.04.3.tar.xz) = 55324 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 506434) +++ head/sysutils/kdf/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621783 -SHA256 (KDE/applications/19.04.2/kdf-19.04.2.tar.xz) = 6328e582b5b2c03355a78072d3cd71607668d38d20973e0498b528159d666ee8 -SIZE (KDE/applications/19.04.2/kdf-19.04.2.tar.xz) = 541204 +TIMESTAMP = 1562690853 +SHA256 (KDE/applications/19.04.3/kdf-19.04.3.tar.xz) = 4d3d3218cee73238e9be73db131062f186ede393bbe0115e4df633c7d21f2572 +SIZE (KDE/applications/19.04.3/kdf-19.04.3.tar.xz) = 461476 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 506434) +++ head/sysutils/kdialog/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621784 -SHA256 (KDE/applications/19.04.2/kdialog-19.04.2.tar.xz) = 648b134b253f5717aad8e0b4de911013b787e2dd0496732dce5857e47bb09645 -SIZE (KDE/applications/19.04.2/kdialog-19.04.2.tar.xz) = 97940 +TIMESTAMP = 1562690854 +SHA256 (KDE/applications/19.04.3/kdialog-19.04.3.tar.xz) = 647c5eac9d34f2cc8011f6214bc5a8ddc1eca8f0b381c66eaf20848eccdf9823 +SIZE (KDE/applications/19.04.3/kdialog-19.04.3.tar.xz) = 98192 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 506434) +++ head/sysutils/kfloppy/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621784 -SHA256 (KDE/applications/19.04.2/kfloppy-19.04.2.tar.xz) = a9ad3e0fe3c478cccced1a6aafd229fb986a1e7f847ce878023dc18d0886bdff -SIZE (KDE/applications/19.04.2/kfloppy-19.04.2.tar.xz) = 198856 +TIMESTAMP = 1562690854 +SHA256 (KDE/applications/19.04.3/kfloppy-19.04.3.tar.xz) = 7f3a206b6f4cd03771d8fba94423bf749a2b8e6bb4dfd01f30502d1ab08f1d8e +SIZE (KDE/applications/19.04.3/kfloppy-19.04.3.tar.xz) = 198868 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 506434) +++ head/sysutils/khelpcenter/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621795 -SHA256 (KDE/applications/19.04.2/khelpcenter-19.04.2.tar.xz) = b5fc56692145a5b10bdba7ab47dad130e91bd0e0e4dca28d22415d0334c01cb7 -SIZE (KDE/applications/19.04.2/khelpcenter-19.04.2.tar.xz) = 3850980 +TIMESTAMP = 1562690865 +SHA256 (KDE/applications/19.04.3/khelpcenter-19.04.3.tar.xz) = d18e0960859d72d9c2ebf187a9f5b1b65a8c78032e32df0d6eb0cce73921e972 +SIZE (KDE/applications/19.04.3/khelpcenter-19.04.3.tar.xz) = 3851316 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 506434) +++ head/sysutils/ksystemlog/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621795 -SHA256 (KDE/applications/19.04.2/ksystemlog-19.04.2.tar.xz) = 0a875c5ec3b8cc4fc68a26804906993f37e4fbcdf0b2966f6a06c5d7ded0bad4 -SIZE (KDE/applications/19.04.2/ksystemlog-19.04.2.tar.xz) = 1921396 +TIMESTAMP = 1562690865 +SHA256 (KDE/applications/19.04.3/ksystemlog-19.04.3.tar.xz) = 7d155c91d57e253c00f038100e136e4bf6eb4d709549d689608ee0026354a965 +SIZE (KDE/applications/19.04.3/ksystemlog-19.04.3.tar.xz) = 1922176 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 506434) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621795 -SHA256 (KDE/applications/19.04.2/signon-kwallet-extension-19.04.2.tar.xz) = 70f99d0c3b2351bc865456676839a7632b1cc5566f477a2e611857f12095a0ba -SIZE (KDE/applications/19.04.2/signon-kwallet-extension-19.04.2.tar.xz) = 10624 +TIMESTAMP = 1562690865 +SHA256 (KDE/applications/19.04.3/signon-kwallet-extension-19.04.3.tar.xz) = bddf5fe036b95769ad9ff02a9583b7f96280e9a48db4abc92f98e4d163f7daa9 +SIZE (KDE/applications/19.04.3/signon-kwallet-extension-19.04.3.tar.xz) = 10624 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 506434) +++ head/sysutils/sweeper/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621795 -SHA256 (KDE/applications/19.04.2/sweeper-19.04.2.tar.xz) = 694cb6e8e032a6a6548e86a1f40dade59178f8d67983ad75d49a80cdf10892a4 -SIZE (KDE/applications/19.04.2/sweeper-19.04.2.tar.xz) = 368084 +TIMESTAMP = 1562690866 +SHA256 (KDE/applications/19.04.3/sweeper-19.04.3.tar.xz) = 03b0ed0006da9a9ee02b9e3201e4974444fba00a5a59fc14ca179656eeb86aaf +SIZE (KDE/applications/19.04.3/sweeper-19.04.3.tar.xz) = 368208 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 506434) +++ head/textproc/kompare/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621796 -SHA256 (KDE/applications/19.04.2/kompare-19.04.2.tar.xz) = 854383faf1a0132d0977be98bd07ee1ef55fa226f884bba994396d0b5ccef44b -SIZE (KDE/applications/19.04.2/kompare-19.04.2.tar.xz) = 800992 +TIMESTAMP = 1562690866 +SHA256 (KDE/applications/19.04.3/kompare-19.04.3.tar.xz) = 4dcb419336826ac1b8d37135ec153da585f8cebfdc9b6574c6abb866c277c8d0 +SIZE (KDE/applications/19.04.3/kompare-19.04.3.tar.xz) = 801804 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 506434) +++ head/textproc/libkomparediff2/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621796 -SHA256 (KDE/applications/19.04.2/libkomparediff2-19.04.2.tar.xz) = 2a86d6218f22bc0f89aea0ea7bc782d6e0d77a4d45718b0a50643233742da4f6 -SIZE (KDE/applications/19.04.2/libkomparediff2-19.04.2.tar.xz) = 173376 +TIMESTAMP = 1562690866 +SHA256 (KDE/applications/19.04.3/libkomparediff2-19.04.3.tar.xz) = 35f45f48c9c6afb32ade11985ca9e886e8f77a7428e2ce6650e119c3f29ce9b7 +SIZE (KDE/applications/19.04.3/libkomparediff2-19.04.3.tar.xz) = 173244 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 506434) +++ head/x11/konsole/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621798 -SHA256 (KDE/applications/19.04.2/konsole-19.04.2.tar.xz) = e17dc750ee4c345765deac8978b9a49af9cddd570ee5af2d06cde03d69554fcd -SIZE (KDE/applications/19.04.2/konsole-19.04.2.tar.xz) = 1117304 +TIMESTAMP = 1562690868 +SHA256 (KDE/applications/19.04.3/konsole-19.04.3.tar.xz) = 20cadcda75a22ce7b4cb19240a16c9b286fa6ed836f352b8b337fb418e9a3b4c +SIZE (KDE/applications/19.04.3/konsole-19.04.3.tar.xz) = 1117408 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 506434) +++ head/x11-clocks/kteatime/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621796 -SHA256 (KDE/applications/19.04.2/kteatime-19.04.2.tar.xz) = 629601d8ff7aaebf407582413c9aec07356dbb11cb34004f37e59a8c2b9246e1 -SIZE (KDE/applications/19.04.2/kteatime-19.04.2.tar.xz) = 298144 +TIMESTAMP = 1562690867 +SHA256 (KDE/applications/19.04.3/kteatime-19.04.3.tar.xz) = 49a404223896bd3df976e0c155a6907936f52721fc7da14289998b9d1ea372ba +SIZE (KDE/applications/19.04.3/kteatime-19.04.3.tar.xz) = 284864 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 506434) +++ head/x11-clocks/ktimer/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621797 -SHA256 (KDE/applications/19.04.2/ktimer-19.04.2.tar.xz) = fce731cd83eb1ef4cf0b5f2f8a414b6fa7930849b122c0e8afabecba7d47c3cc -SIZE (KDE/applications/19.04.2/ktimer-19.04.2.tar.xz) = 376856 +TIMESTAMP = 1562690867 +SHA256 (KDE/applications/19.04.3/ktimer-19.04.3.tar.xz) = c282a02019f7b1f69eae09b564481ed7526c7c836155b1eed2b22fb01fcaf563 +SIZE (KDE/applications/19.04.3/ktimer-19.04.3.tar.xz) = 376784 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 506434) +++ head/x11-fm/dolphin/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621797 -SHA256 (KDE/applications/19.04.2/dolphin-19.04.2.tar.xz) = 1aacf622e1830ac458e3ab706b1a895eec467b9e0401c9bc88f1eb381205df79 -SIZE (KDE/applications/19.04.2/dolphin-19.04.2.tar.xz) = 5127876 +TIMESTAMP = 1562690867 +SHA256 (KDE/applications/19.04.3/dolphin-19.04.3.tar.xz) = 67a2b283049591fa0f00304b4da6532e9d59d9dc9067916e0ffe8aa19d93f579 +SIZE (KDE/applications/19.04.3/dolphin-19.04.3.tar.xz) = 5128016 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 506434) +++ head/x11-fm/konqueror/distinfo (revision 506435) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559621798 -SHA256 (KDE/applications/19.04.2/konqueror-19.04.2.tar.xz) = dbaa9eb4f5c801a090685f9563aaef408723ceb33ec85cbb941e878e8ea1cedc -SIZE (KDE/applications/19.04.2/konqueror-19.04.2.tar.xz) = 7748316 +TIMESTAMP = 1562690868 +SHA256 (KDE/applications/19.04.3/konqueror-19.04.3.tar.xz) = 257488e521c024fb6c8fdbef71aaccd9315505c8b14c6ffde0ce4060a48579b4 +SIZE (KDE/applications/19.04.3/konqueror-19.04.3.tar.xz) = 7578812