Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 517111) +++ head/Mk/Uses/kde.mk (revision 517112) @@ -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.17.2 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.63.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.08.2 -KDE_APPLICATIONS_SHLIB_VER?= 5.12.2 +KDE_APPLICATIONS_VERSION?= 19.08.3 +KDE_APPLICATIONS_SHLIB_VER?= 5.12.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 kdesignerplugin kdewebkit khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # 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= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_LIB= libkdeinit5_kded5.so kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 517111) +++ head/accessibility/kmag/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544196 -SHA256 (KDE/applications/19.08.2/kmag-19.08.2.tar.xz) = 6e8ecfab87dca12804a5a8d0a8adf1545e9e17039e0f9667b10a8f2832512e71 -SIZE (KDE/applications/19.08.2/kmag-19.08.2.tar.xz) = 674000 +TIMESTAMP = 1572930673 +SHA256 (KDE/applications/19.08.3/kmag-19.08.3.tar.xz) = 216e5db763f72ff1f4ada339912dc686fa7a6cea0dafc8b9eab35601edabc950 +SIZE (KDE/applications/19.08.3/kmag-19.08.3.tar.xz) = 673556 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 517111) +++ head/accessibility/kmousetool/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544217 -SHA256 (KDE/applications/19.08.2/kmousetool-19.08.2.tar.xz) = 7cdc327e82548bf70c4ef4feab7a30938f3aefa1e80fccb343ce0d5ca8976ccb -SIZE (KDE/applications/19.08.2/kmousetool-19.08.2.tar.xz) = 113528 +TIMESTAMP = 1572930674 +SHA256 (KDE/applications/19.08.3/kmousetool-19.08.3.tar.xz) = 0434d4883d5478168c696ec1a43164ff09a15999416ff198b749d45981983399 +SIZE (KDE/applications/19.08.3/kmousetool-19.08.3.tar.xz) = 113556 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 517111) +++ head/accessibility/kmouth/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544217 -SHA256 (KDE/applications/19.08.2/kmouth-19.08.2.tar.xz) = 7a71d9d15d6a5f72c86f41e874f7cb3b45d8edaae2b3bd5409b20bd7bad4a0d3 -SIZE (KDE/applications/19.08.2/kmouth-19.08.2.tar.xz) = 1964932 +TIMESTAMP = 1572930675 +SHA256 (KDE/applications/19.08.3/kmouth-19.08.3.tar.xz) = b962dec13a0fa610b4e9fa03f4f0c9ce28cb8c45e8fc18243c26452783ebf2a9 +SIZE (KDE/applications/19.08.3/kmouth-19.08.3.tar.xz) = 1965320 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 517111) +++ head/archivers/ark/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544218 -SHA256 (KDE/applications/19.08.2/ark-19.08.2.tar.xz) = 63fcec0a32d806cfc82fb1c136b5e037bfe75459b148ac08c00be7e45ac70c50 -SIZE (KDE/applications/19.08.2/ark-19.08.2.tar.xz) = 2584864 +TIMESTAMP = 1572930675 +SHA256 (KDE/applications/19.08.3/ark-19.08.3.tar.xz) = bc1fcd84632c628a10e8536d56b65a7acbd4235ed0e034fec864b78bdc36f8f1 +SIZE (KDE/applications/19.08.3/ark-19.08.3.tar.xz) = 2585196 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 517111) +++ head/archivers/ark/pkg-plist (revision 517112) @@ -1,95 +1,95 @@ bin/ark share/qlogging-categories5/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.19.8.2 +lib/libkerfuffle.so.19.8.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 517111) +++ head/astro/libkgeomap/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544219 -SHA256 (KDE/applications/19.08.2/libkgeomap-19.08.2.tar.xz) = 145692b900d87a84b74507b53ddc05947e6c1cce46381d8960559b5907296219 -SIZE (KDE/applications/19.08.2/libkgeomap-19.08.2.tar.xz) = 150664 +TIMESTAMP = 1572930676 +SHA256 (KDE/applications/19.08.3/libkgeomap-19.08.3.tar.xz) = 858a6327fe45b67bd31e1f592412a30e0c0f64eb353279480f62b19e51df9576 +SIZE (KDE/applications/19.08.3/libkgeomap-19.08.3.tar.xz) = 150620 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 517111) +++ head/astro/marble/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544220 -SHA256 (KDE/applications/19.08.2/marble-19.08.2.tar.xz) = 4add63522a51fdea7b425f29bd3d35c558a0b881336ff6a90bfc07483acbf6a6 -SIZE (KDE/applications/19.08.2/marble-19.08.2.tar.xz) = 52327484 +TIMESTAMP = 1572930677 +SHA256 (KDE/applications/19.08.3/marble-19.08.3.tar.xz) = cd5d7f758d2234dc8e2fa638b9e1326461655e10dbe21910dbef029e80ef7a68 +SIZE (KDE/applications/19.08.3/marble-19.08.3.tar.xz) = 52406676 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 517111) +++ head/audio/audiocd-kio/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544221 -SHA256 (KDE/applications/19.08.2/audiocd-kio-19.08.2.tar.xz) = 383c0e9055b0093661b589395288bb8d173372572490a4ba4960d214b2746b3a -SIZE (KDE/applications/19.08.2/audiocd-kio-19.08.2.tar.xz) = 356008 +TIMESTAMP = 1572930678 +SHA256 (KDE/applications/19.08.3/audiocd-kio-19.08.3.tar.xz) = 98d836def762b839b9636acc540158d5b4789a84d1bdb535ae139b10e9e144a4 +SIZE (KDE/applications/19.08.3/audiocd-kio-19.08.3.tar.xz) = 355684 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 517111) +++ head/audio/juk/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544221 -SHA256 (KDE/applications/19.08.2/juk-19.08.2.tar.xz) = b3f0e006d6defa58e0724088a1c99c1c412bc5764f8d1bebadf31b5f331d51d3 -SIZE (KDE/applications/19.08.2/juk-19.08.2.tar.xz) = 1866212 +TIMESTAMP = 1572930679 +SHA256 (KDE/applications/19.08.3/juk-19.08.3.tar.xz) = 6ef343b31b4b996d3a576e91a8a0b57b55b61ed76e9ddc51c5072a6243cb3030 +SIZE (KDE/applications/19.08.3/juk-19.08.3.tar.xz) = 1867552 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 517111) +++ head/audio/kmix/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544242 -SHA256 (KDE/applications/19.08.2/kmix-19.08.2.tar.xz) = 5d852df8b54d3abca98db4aa2b259973231fed0a597d511d54fb41c6389ce61a -SIZE (KDE/applications/19.08.2/kmix-19.08.2.tar.xz) = 1005640 +TIMESTAMP = 1572930700 +SHA256 (KDE/applications/19.08.3/kmix-19.08.3.tar.xz) = cf71abee1ab35423b0daeaf1fbddbcdcb2f40fd946dfabf0cb19b8762b8582bc +SIZE (KDE/applications/19.08.3/kmix-19.08.3.tar.xz) = 1005308 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 517111) +++ head/audio/kwave/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544243 -SHA256 (KDE/applications/19.08.2/kwave-19.08.2.tar.xz) = 7836b7737d3f578f6d44b40dddf8b3abae53eaa84b3352bfed242eb6ef3d5604 -SIZE (KDE/applications/19.08.2/kwave-19.08.2.tar.xz) = 6194828 +TIMESTAMP = 1572930700 +SHA256 (KDE/applications/19.08.3/kwave-19.08.3.tar.xz) = bde8d2c3805b52bdcf0371c28e870d20fdfdd8b69831a9ba4e59ee9ae0a863ef +SIZE (KDE/applications/19.08.3/kwave-19.08.3.tar.xz) = 6196324 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 517111) +++ head/audio/libkcddb/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544244 -SHA256 (KDE/applications/19.08.2/libkcddb-19.08.2.tar.xz) = f3e4c650b0abe10f281037bd6c805243a656fecdfc046a8586324c760ba90e48 -SIZE (KDE/applications/19.08.2/libkcddb-19.08.2.tar.xz) = 423708 +TIMESTAMP = 1572930701 +SHA256 (KDE/applications/19.08.3/libkcddb-19.08.3.tar.xz) = 56fe09cfab0455581057aa1681cec01777159a51af1871419cd1b5fb9d4e8ae6 +SIZE (KDE/applications/19.08.3/libkcddb-19.08.3.tar.xz) = 424108 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 517111) +++ head/audio/libkcompactdisc/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544244 -SHA256 (KDE/applications/19.08.2/libkcompactdisc-19.08.2.tar.xz) = e185f528a4c6fea1b789186fe64a183197afc447c8cb939c9b6b9957f60d04e0 -SIZE (KDE/applications/19.08.2/libkcompactdisc-19.08.2.tar.xz) = 89016 +TIMESTAMP = 1572930702 +SHA256 (KDE/applications/19.08.3/libkcompactdisc-19.08.3.tar.xz) = 912b885badf6aff6b0378fba993633c9fb5cf026dc6791e4cda0c4c27913f425 +SIZE (KDE/applications/19.08.3/libkcompactdisc-19.08.3.tar.xz) = 88900 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 517111) +++ head/databases/akonadi/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544265 -SHA256 (KDE/applications/19.08.2/akonadi-19.08.2.tar.xz) = f67f0fac07d480739b2d6715862ee47a93fd38f057ac7ef888ed8ddfdc99934f -SIZE (KDE/applications/19.08.2/akonadi-19.08.2.tar.xz) = 1578452 +TIMESTAMP = 1572930723 +SHA256 (KDE/applications/19.08.3/akonadi-19.08.3.tar.xz) = cfdfa4767b1bd420c7979cf5125cc56d3926181f8484dc39ecd84a9e0808ee6c +SIZE (KDE/applications/19.08.3/akonadi-19.08.3.tar.xz) = 1579468 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 517111) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544266 -SHA256 (KDE/applications/19.08.2/akonadi-calendar-tools-19.08.2.tar.xz) = a352c2bf8659ad7939f31009b8e35e8b1e629162f681a70999e5e88f9aaf6cbb -SIZE (KDE/applications/19.08.2/akonadi-calendar-tools-19.08.2.tar.xz) = 224508 +TIMESTAMP = 1572930724 +SHA256 (KDE/applications/19.08.3/akonadi-calendar-tools-19.08.3.tar.xz) = 539bef47c9586f1edb87cedf63cce140dab4f19b6a94fbe08b0cd4c083cf6ffc +SIZE (KDE/applications/19.08.3/akonadi-calendar-tools-19.08.3.tar.xz) = 223564 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 517111) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544266 -SHA256 (KDE/applications/19.08.2/akonadi-import-wizard-19.08.2.tar.xz) = 038713e7d30686eb1b8e49c595ec853ffa52d335e435a5b0bdf2f2a2448cae45 -SIZE (KDE/applications/19.08.2/akonadi-import-wizard-19.08.2.tar.xz) = 438220 +TIMESTAMP = 1572930724 +SHA256 (KDE/applications/19.08.3/akonadi-import-wizard-19.08.3.tar.xz) = 1a11207826ecc59af73ca2dae1b6299a6cd9c71c093e634043295747ba8f6553 +SIZE (KDE/applications/19.08.3/akonadi-import-wizard-19.08.3.tar.xz) = 438896 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 517111) +++ head/deskutils/akonadiconsole/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544267 -SHA256 (KDE/applications/19.08.2/akonadiconsole-19.08.2.tar.xz) = 273b8f3d56ea65bd71a51103867b0e718d883478432bb971a262df1ea4c6df6c -SIZE (KDE/applications/19.08.2/akonadiconsole-19.08.2.tar.xz) = 193672 +TIMESTAMP = 1572930725 +SHA256 (KDE/applications/19.08.3/akonadiconsole-19.08.3.tar.xz) = 37253a4b56afc34e52a05b58f63d1cdce221a11432c713f159b5c033a6018947 +SIZE (KDE/applications/19.08.3/akonadiconsole-19.08.3.tar.xz) = 193848 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 517111) +++ head/deskutils/akregator/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544268 -SHA256 (KDE/applications/19.08.2/akregator-19.08.2.tar.xz) = cefc0785f40508a80fbf4534eef4d1164e349cfd50455483cef044945d1888c4 -SIZE (KDE/applications/19.08.2/akregator-19.08.2.tar.xz) = 2193612 +TIMESTAMP = 1572930726 +SHA256 (KDE/applications/19.08.3/akregator-19.08.3.tar.xz) = c3aab6ebba25eab8c76b113a900af33a90222257f957650d0bbc0c47d5cf4bc9 +SIZE (KDE/applications/19.08.3/akregator-19.08.3.tar.xz) = 2193472 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 517111) +++ head/deskutils/grantlee-editor/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544268 -SHA256 (KDE/applications/19.08.2/grantlee-editor-19.08.2.tar.xz) = 8e65ca3d949dcdd2b6c2edd582351b123eef49eb104a2dd6c027028315c2d502 -SIZE (KDE/applications/19.08.2/grantlee-editor-19.08.2.tar.xz) = 111056 +TIMESTAMP = 1572930727 +SHA256 (KDE/applications/19.08.3/grantlee-editor-19.08.3.tar.xz) = 4d81e56ee89bf8ff19ba112b2ecaf6080b7fbc6768030b4dbb4f15a1099a5bce +SIZE (KDE/applications/19.08.3/grantlee-editor-19.08.3.tar.xz) = 111720 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 517111) +++ head/deskutils/grantleetheme/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544269 -SHA256 (KDE/applications/19.08.2/grantleetheme-19.08.2.tar.xz) = a9d4e70089debdfaffb4af881cf2064ba68a0ad3fe007985c8e5997f0cf0e836 -SIZE (KDE/applications/19.08.2/grantleetheme-19.08.2.tar.xz) = 52400 +TIMESTAMP = 1572930728 +SHA256 (KDE/applications/19.08.3/grantleetheme-19.08.3.tar.xz) = ab1b0f55399c520191cf1241d85881e3f5b441ee82b387e7fbef55e77dc0e748 +SIZE (KDE/applications/19.08.3/grantleetheme-19.08.3.tar.xz) = 52260 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 517111) +++ head/deskutils/kaddressbook/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544270 -SHA256 (KDE/applications/19.08.2/kaddressbook-19.08.2.tar.xz) = 4d67480ebf8ee96fcde85e66f8ad32119b006e36c87f4e4ac20ecfa967599260 -SIZE (KDE/applications/19.08.2/kaddressbook-19.08.2.tar.xz) = 475268 +TIMESTAMP = 1572930728 +SHA256 (KDE/applications/19.08.3/kaddressbook-19.08.3.tar.xz) = e343187628af4b6142cc7177ea67a3460b6f2b96c608a5b4bd469f2d314bf4ae +SIZE (KDE/applications/19.08.3/kaddressbook-19.08.3.tar.xz) = 473792 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 517111) +++ head/deskutils/kalarm/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544291 -SHA256 (KDE/applications/19.08.2/kalarm-19.08.2.tar.xz) = 54d61b469042d27b8df903c5fc95dd68c1d108218f1402a733d974ab02576d24 -SIZE (KDE/applications/19.08.2/kalarm-19.08.2.tar.xz) = 1824632 +TIMESTAMP = 1572930729 +SHA256 (KDE/applications/19.08.3/kalarm-19.08.3.tar.xz) = 34d73be35b0cdf6189bf3792e939fa9557bffff8271966d9fc49217e488317e8 +SIZE (KDE/applications/19.08.3/kalarm-19.08.3.tar.xz) = 1823656 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 517111) +++ head/deskutils/kcharselect/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544291 -SHA256 (KDE/applications/19.08.2/kcharselect-19.08.2.tar.xz) = ff2a8c78fc4a12dd727e8ad8677216d5a480a8c82aff97269397ee8ae01e36df -SIZE (KDE/applications/19.08.2/kcharselect-19.08.2.tar.xz) = 334740 +TIMESTAMP = 1572930730 +SHA256 (KDE/applications/19.08.3/kcharselect-19.08.3.tar.xz) = f294965fc7cf8b1063b611233a98fab13a00263f1d4fd254fb8b53b3f125bc52 +SIZE (KDE/applications/19.08.3/kcharselect-19.08.3.tar.xz) = 334588 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 517111) +++ head/deskutils/kdepim-addons/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544292 -SHA256 (KDE/applications/19.08.2/kdepim-addons-19.08.2.tar.xz) = 1e7d647689d2bfa243a2f4583df7030238409fb05bbcda5b168ef024e6accc89 -SIZE (KDE/applications/19.08.2/kdepim-addons-19.08.2.tar.xz) = 2088884 +TIMESTAMP = 1572930731 +SHA256 (KDE/applications/19.08.3/kdepim-addons-19.08.3.tar.xz) = 8c85cec6b827da6025364ec6bbccdf2ab22c73380933aed69cf3c86be52cff24 +SIZE (KDE/applications/19.08.3/kdepim-addons-19.08.3.tar.xz) = 2091080 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 517111) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544293 -SHA256 (KDE/applications/19.08.2/kdepim-apps-libs-19.08.2.tar.xz) = d542b1d532d3ce3d9f1c63f4455175c7e855cd1e095a1addf1322074afc11923 -SIZE (KDE/applications/19.08.2/kdepim-apps-libs-19.08.2.tar.xz) = 82684 +TIMESTAMP = 1572930731 +SHA256 (KDE/applications/19.08.3/kdepim-apps-libs-19.08.3.tar.xz) = 3c478455a0f4704aa4f8a42e92f0657e01b749c568dc6e89bfae5496eefeab83 +SIZE (KDE/applications/19.08.3/kdepim-apps-libs-19.08.3.tar.xz) = 82380 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 517111) +++ head/deskutils/kdepim-runtime/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544294 -SHA256 (KDE/applications/19.08.2/kdepim-runtime-19.08.2.tar.xz) = 9b98980003d2d107596e9acc9482dfc3ea26a2485c75a700bd82b53b9be72ebf -SIZE (KDE/applications/19.08.2/kdepim-runtime-19.08.2.tar.xz) = 1731932 +TIMESTAMP = 1572930732 +SHA256 (KDE/applications/19.08.3/kdepim-runtime-19.08.3.tar.xz) = 2673967456b7eacbd69ca678761e479bfa65a0ec6455c86b3a83c76d766a71ea +SIZE (KDE/applications/19.08.3/kdepim-runtime-19.08.3.tar.xz) = 1733348 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 517111) +++ head/deskutils/keditbookmarks/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544294 -SHA256 (KDE/applications/19.08.2/keditbookmarks-19.08.2.tar.xz) = 6a22c3ccdd89d07ad13b34b89704afcc9bf3b5a177d4dc137dcb5eaf1580f6dd -SIZE (KDE/applications/19.08.2/keditbookmarks-19.08.2.tar.xz) = 187636 +TIMESTAMP = 1572930733 +SHA256 (KDE/applications/19.08.3/keditbookmarks-19.08.3.tar.xz) = ce2e90f24cac8dabe3e3804232715b47e247d51c86699162e2f7f63d1f290b05 +SIZE (KDE/applications/19.08.3/keditbookmarks-19.08.3.tar.xz) = 187176 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 517111) +++ head/deskutils/kfind/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544295 -SHA256 (KDE/applications/19.08.2/kfind-19.08.2.tar.xz) = 7ce5255fa4ef3e98db937eb23e8cdc89bd6b5e5429ccb5fea769e99da2bc424a -SIZE (KDE/applications/19.08.2/kfind-19.08.2.tar.xz) = 270488 +TIMESTAMP = 1572930734 +SHA256 (KDE/applications/19.08.3/kfind-19.08.3.tar.xz) = 6ebb7d361a8456e3a3bc7bac995a0224cd76eefd724ff62ba0d6348f7eb1f4f2 +SIZE (KDE/applications/19.08.3/kfind-19.08.3.tar.xz) = 269316 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 517111) +++ head/deskutils/kmail/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544296 -SHA256 (KDE/applications/19.08.2/kmail-19.08.2.tar.xz) = 0ad2a5439da7f255923eeb4c4cf267ece721619aa046a04439f56763aeabac85 -SIZE (KDE/applications/19.08.2/kmail-19.08.2.tar.xz) = 4733752 +TIMESTAMP = 1572930735 +SHA256 (KDE/applications/19.08.3/kmail-19.08.3.tar.xz) = d39d40ed61fc6828af06ad2a713b4c741685cec68471c57e18001277d3be4d3f +SIZE (KDE/applications/19.08.3/kmail-19.08.3.tar.xz) = 4728620 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 517111) +++ head/deskutils/kmail-account-wizard/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544296 -SHA256 (KDE/applications/19.08.2/kmail-account-wizard-19.08.2.tar.xz) = 769b151d0de47d49e41eaeca501526de41c174f9df99b46418e955163c38e9a8 -SIZE (KDE/applications/19.08.2/kmail-account-wizard-19.08.2.tar.xz) = 158592 +TIMESTAMP = 1572930735 +SHA256 (KDE/applications/19.08.3/kmail-account-wizard-19.08.3.tar.xz) = eb998583eb99f9e06eda35c7d44819ffac33fbe1a068c597bc43db271f194f68 +SIZE (KDE/applications/19.08.3/kmail-account-wizard-19.08.3.tar.xz) = 158132 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 517111) +++ head/deskutils/knotes/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544317 -SHA256 (KDE/applications/19.08.2/knotes-19.08.2.tar.xz) = aa0aa4d215507750b055e9af91f552e723aee8163b36f65a3dd19786cf327cf3 -SIZE (KDE/applications/19.08.2/knotes-19.08.2.tar.xz) = 319280 +TIMESTAMP = 1572930736 +SHA256 (KDE/applications/19.08.3/knotes-19.08.3.tar.xz) = 07ad3c7c8f5e7429c1f112aca10c164468dbbd5c356b504aa1fc172bb1bb1889 +SIZE (KDE/applications/19.08.3/knotes-19.08.3.tar.xz) = 319336 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 517111) +++ head/deskutils/kontact/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544318 -SHA256 (KDE/applications/19.08.2/kontact-19.08.2.tar.xz) = d24023381304fbe388a0840921599d13c86912a1285acfc0a7d607962e37c5cf -SIZE (KDE/applications/19.08.2/kontact-19.08.2.tar.xz) = 794412 +TIMESTAMP = 1572930737 +SHA256 (KDE/applications/19.08.3/kontact-19.08.3.tar.xz) = 2bc81b4c051856894d5405532e9663a59abf25bfed1cf0394ee24e219b4752d5 +SIZE (KDE/applications/19.08.3/kontact-19.08.3.tar.xz) = 794920 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 517111) +++ head/deskutils/korganizer/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544319 -SHA256 (KDE/applications/19.08.2/korganizer-19.08.2.tar.xz) = 969930b66a445873a28bfe2e67876388259e35e89ffce45607583b4a668d9194 -SIZE (KDE/applications/19.08.2/korganizer-19.08.2.tar.xz) = 2225808 +TIMESTAMP = 1572930738 +SHA256 (KDE/applications/19.08.3/korganizer-19.08.3.tar.xz) = b675b6c7a2a28a51bd377872c69795157825fd04fbef6dd4c97c33f659adadc7 +SIZE (KDE/applications/19.08.3/korganizer-19.08.3.tar.xz) = 2222956 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 517111) +++ head/deskutils/kruler/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544340 -SHA256 (KDE/applications/19.08.2/kruler-19.08.2.tar.xz) = 2a3c51a60f503807694cf49796b3bf82c6992ec4c0c15cf38adae92a8dbc24cc -SIZE (KDE/applications/19.08.2/kruler-19.08.2.tar.xz) = 249424 +TIMESTAMP = 1572930738 +SHA256 (KDE/applications/19.08.3/kruler-19.08.3.tar.xz) = 1825ec4b7f6a0ffc00f1ed09d2879a8d9925da49e62bad0a7484d4e90903df79 +SIZE (KDE/applications/19.08.3/kruler-19.08.3.tar.xz) = 249500 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 517111) +++ head/deskutils/libkdepim/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544340 -SHA256 (KDE/applications/19.08.2/libkdepim-19.08.2.tar.xz) = 67578e4c98e7e5d94249144e3720ae5fbc17231d4ecc46cb0e1be6e7ced4a71b -SIZE (KDE/applications/19.08.2/libkdepim-19.08.2.tar.xz) = 333548 +TIMESTAMP = 1572930739 +SHA256 (KDE/applications/19.08.3/libkdepim-19.08.3.tar.xz) = 36c9457868fd98648a911304a485e8509689bfc280f9d4ad2631ba15f849b059 +SIZE (KDE/applications/19.08.3/libkdepim-19.08.3.tar.xz) = 333408 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 517111) +++ head/deskutils/mbox-importer/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544341 -SHA256 (KDE/applications/19.08.2/mbox-importer-19.08.2.tar.xz) = 644175d6fcb66b878309de899f4a3e060e29d4f31ce337d44ee6e1af5901044f -SIZE (KDE/applications/19.08.2/mbox-importer-19.08.2.tar.xz) = 33420 +TIMESTAMP = 1572930740 +SHA256 (KDE/applications/19.08.3/mbox-importer-19.08.3.tar.xz) = 77fadf4d2dc14830704135237fb7c5f0285204acb9822277944cc03f70b8dc3c +SIZE (KDE/applications/19.08.3/mbox-importer-19.08.3.tar.xz) = 33320 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 517111) +++ head/deskutils/pim-data-exporter/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544342 -SHA256 (KDE/applications/19.08.2/pim-data-exporter-19.08.2.tar.xz) = e4703d7a10935814738394a38c5ad54f9923c58e43c397e2e78a4b1b1176f4c2 -SIZE (KDE/applications/19.08.2/pim-data-exporter-19.08.2.tar.xz) = 203804 +TIMESTAMP = 1572930741 +SHA256 (KDE/applications/19.08.3/pim-data-exporter-19.08.3.tar.xz) = f89b6588822dd5501e1b93ed3abd9b822725944246ab834777ed0f91f5ab6b91 +SIZE (KDE/applications/19.08.3/pim-data-exporter-19.08.3.tar.xz) = 203340 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 517111) +++ head/deskutils/pim-sieve-editor/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544342 -SHA256 (KDE/applications/19.08.2/pim-sieve-editor-19.08.2.tar.xz) = ae9f7de78ab9adffe2575bf1367b1ae4928afee1fd299bb91ca2d26b3bb86c03 -SIZE (KDE/applications/19.08.2/pim-sieve-editor-19.08.2.tar.xz) = 451444 +TIMESTAMP = 1572930741 +SHA256 (KDE/applications/19.08.3/pim-sieve-editor-19.08.3.tar.xz) = 5e8aa5d71ea923baf4376986db77b6dee16d6e281caf22855e97cfeebfb4c1fe +SIZE (KDE/applications/19.08.3/pim-sieve-editor-19.08.3.tar.xz) = 451160 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 517111) +++ head/devel/cervisia/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544343 -SHA256 (KDE/applications/19.08.2/cervisia-19.08.2.tar.xz) = 7cbff9d32e2721f6f594a84b42feef6dd76f830e2cc27c6d442d9b6ccbe7fceb -SIZE (KDE/applications/19.08.2/cervisia-19.08.2.tar.xz) = 1894912 +TIMESTAMP = 1572930743 +SHA256 (KDE/applications/19.08.3/cervisia-19.08.3.tar.xz) = bf156c080f000b342f81e7a8450d6ca942627e5a08cc5ac9c02fc5b44d1f37a7 +SIZE (KDE/applications/19.08.3/cervisia-19.08.3.tar.xz) = 1894440 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 517111) +++ head/devel/dolphin-plugins/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544344 -SHA256 (KDE/applications/19.08.2/dolphin-plugins-19.08.2.tar.xz) = da2114bd8ed0a70fba3c3cba82a5543cce2f91af7e1dc12bc7457eeffc03099d -SIZE (KDE/applications/19.08.2/dolphin-plugins-19.08.2.tar.xz) = 193652 +TIMESTAMP = 1572930743 +SHA256 (KDE/applications/19.08.3/dolphin-plugins-19.08.3.tar.xz) = 82860ef615954e94f3f382ad60fb144fcfcf7777b8a890f281c0cce55da13a55 +SIZE (KDE/applications/19.08.3/dolphin-plugins-19.08.3.tar.xz) = 192608 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 517111) +++ head/devel/kapptemplate/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544345 -SHA256 (KDE/applications/19.08.2/kapptemplate-19.08.2.tar.xz) = 2b719cf75bf8e9b495a8d9aa8288ddb528617c2e76bd1312cfdb2a43b27d6208 -SIZE (KDE/applications/19.08.2/kapptemplate-19.08.2.tar.xz) = 316568 +TIMESTAMP = 1572930744 +SHA256 (KDE/applications/19.08.3/kapptemplate-19.08.3.tar.xz) = 23776b6b56e97fac0d8372d856a6fc9014b057f98ad5a96298b0685943c3da2a +SIZE (KDE/applications/19.08.3/kapptemplate-19.08.3.tar.xz) = 316724 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 517111) +++ head/devel/kcachegrind/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544345 -SHA256 (KDE/applications/19.08.2/kcachegrind-19.08.2.tar.xz) = baf17a5c11f21deb7b019a7e3a9819348ec8d20af5c8c4a6108b96266e425b46 -SIZE (KDE/applications/19.08.2/kcachegrind-19.08.2.tar.xz) = 808412 +TIMESTAMP = 1572930745 +SHA256 (KDE/applications/19.08.3/kcachegrind-19.08.3.tar.xz) = 8fc5e0643bb826b07cb5d283b8bd6fd5da4979f6125b43b1db3a9db60b02a36a +SIZE (KDE/applications/19.08.3/kcachegrind-19.08.3.tar.xz) = 808788 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 517111) +++ head/devel/kde-dev-scripts/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544346 -SHA256 (KDE/applications/19.08.2/kde-dev-scripts-19.08.2.tar.xz) = 9a47b048cec42eedcec05602eb84d4124a1f67d451c22095e688cb24f7057327 -SIZE (KDE/applications/19.08.2/kde-dev-scripts-19.08.2.tar.xz) = 377524 +TIMESTAMP = 1572930745 +SHA256 (KDE/applications/19.08.3/kde-dev-scripts-19.08.3.tar.xz) = c7998753f67c6efbe818ca1f96c5681c7abe3078ce6beeb307562309ca243c28 +SIZE (KDE/applications/19.08.3/kde-dev-scripts-19.08.3.tar.xz) = 378160 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 517111) +++ head/devel/kde-dev-utils/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544346 -SHA256 (KDE/applications/19.08.2/kde-dev-utils-19.08.2.tar.xz) = 30bbcfa632cbf76a2b3a27f1044ff9708509921882b91a5623cc2a30d40acb32 -SIZE (KDE/applications/19.08.2/kde-dev-utils-19.08.2.tar.xz) = 61840 +TIMESTAMP = 1572930746 +SHA256 (KDE/applications/19.08.3/kde-dev-utils-19.08.3.tar.xz) = 82a573941c1a99480294fe3e8658440da64e652eb62e2a7354751894a6a899e2 +SIZE (KDE/applications/19.08.3/kde-dev-utils-19.08.3.tar.xz) = 61556 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 517111) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544347 -SHA256 (KDE/applications/19.08.2/kdesdk-thumbnailers-19.08.2.tar.xz) = d607f956e9c62ee9e9aa000d5444d33e68621e0741072d0d8c14e52bd4cc96be -SIZE (KDE/applications/19.08.2/kdesdk-thumbnailers-19.08.2.tar.xz) = 17324 +TIMESTAMP = 1572930747 +SHA256 (KDE/applications/19.08.3/kdesdk-thumbnailers-19.08.3.tar.xz) = 62757c71653d9a9541410104f13035b024e8bab7b21b729a306cb2ac445db8ac +SIZE (KDE/applications/19.08.3/kdesdk-thumbnailers-19.08.3.tar.xz) = 17292 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 517111) +++ head/devel/kio-extras/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544348 -SHA256 (KDE/applications/19.08.2/kio-extras-19.08.2.tar.xz) = a0b8f08ab8f9d36cfdc950470f75726e90e9fba159bc2035931cfa6efbfe4394 -SIZE (KDE/applications/19.08.2/kio-extras-19.08.2.tar.xz) = 578324 +TIMESTAMP = 1572930748 +SHA256 (KDE/applications/19.08.3/kio-extras-19.08.3.tar.xz) = e38e872f78ff24fe512ec7ff9ed4f6b6a8e1fef6111fdb0222c133bed0a8861f +SIZE (KDE/applications/19.08.3/kio-extras-19.08.3.tar.xz) = 577520 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 517111) +++ head/devel/lokalize/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544349 -SHA256 (KDE/applications/19.08.2/lokalize-19.08.2.tar.xz) = 3fe3af9f647bcda7f89eab5c3ebb7bce4e9ceb0b7cfb5206c2f6ecdf9cdbe3ee -SIZE (KDE/applications/19.08.2/lokalize-19.08.2.tar.xz) = 1693048 +TIMESTAMP = 1572930749 +SHA256 (KDE/applications/19.08.3/lokalize-19.08.3.tar.xz) = e25de54944ca32b32b4eeddd85e8ca9764a04de7c1d7a2d350d41cbda8105aef +SIZE (KDE/applications/19.08.3/lokalize-19.08.3.tar.xz) = 1694144 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 517111) +++ head/devel/poxml/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544349 -SHA256 (KDE/applications/19.08.2/poxml-19.08.2.tar.xz) = c5e36bd10d3a8d0474f903eebd45e026ca306beb74829c43a1e7be4ed34ca9e8 -SIZE (KDE/applications/19.08.2/poxml-19.08.2.tar.xz) = 43396 +TIMESTAMP = 1572930749 +SHA256 (KDE/applications/19.08.3/poxml-19.08.3.tar.xz) = be5feaf46d424a4a4edc5936924f9a8a6d1d5467ecedd0e415aa88e2c3170502 +SIZE (KDE/applications/19.08.3/poxml-19.08.3.tar.xz) = 43192 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 517111) +++ head/devel/umbrello/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544350 -SHA256 (KDE/applications/19.08.2/umbrello-19.08.2.tar.xz) = 69a721d27ecedbe694d232e04469002dcf2319dd320982aacc2a02e32430c382 -SIZE (KDE/applications/19.08.2/umbrello-19.08.2.tar.xz) = 3702092 +TIMESTAMP = 1572930750 +SHA256 (KDE/applications/19.08.3/umbrello-19.08.3.tar.xz) = c4c56354d2765c0d03ffda02cc098cc3e9d72b0c7c22bb0c1cc03dcf5ac31a6a +SIZE (KDE/applications/19.08.3/umbrello-19.08.3.tar.xz) = 3703784 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 517111) +++ head/editors/kate/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544351 -SHA256 (KDE/applications/19.08.2/kate-19.08.2.tar.xz) = 9897f652996e3ebca8a749562cc2d609d704c80b08ec4716622def38f5980b47 -SIZE (KDE/applications/19.08.2/kate-19.08.2.tar.xz) = 5846748 +TIMESTAMP = 1572930751 +SHA256 (KDE/applications/19.08.3/kate-19.08.3.tar.xz) = ab9f076e7e825fca64252b366e637e34157f1f875aa573bdae333fc240e0ec71 +SIZE (KDE/applications/19.08.3/kate-19.08.3.tar.xz) = 5844532 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 517111) +++ head/editors/kate/pkg-plist (revision 517112) @@ -1,1253 +1,1254 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/kterustcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditor_lumen.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svgz share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kterustcompletion.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/kterustcompletion.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/kterustcompletion.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/kterustcompletion.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/kterustcompletion.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/kterustcompletion.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/kterustcompletion.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/kterustcompletion.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/kterustcompletion.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/kterustcompletion.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/kterustcompletion.mo share/locale/et/LC_MESSAGES/kwrite.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/kterustcompletion.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/kterustcompletion.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo +share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/kterustcompletion.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/kterustcompletion.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kterustcompletion.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kterustcompletion.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/kterustcompletion.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/kterustcompletion.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/kterustcompletion.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/kterustcompletion.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/kterustcompletion.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/kterustcompletion.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kterustcompletion.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/kterustcompletion.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/kterustcompletion.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/kterustcompletion.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/kterustcompletion.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/kterustcompletion.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/kterustcompletion.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/kterustcompletion.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/kterustcompletion.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kterustcompletion.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/kterustcompletion.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kterustcompletion.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/kterustcompletion.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/kterustcompletion.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/kterustcompletion.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo share/locale/zh_TW/LC_MESSAGES/lspclient.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 517111) +++ head/games/blinken/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544351 -SHA256 (KDE/applications/19.08.2/blinken-19.08.2.tar.xz) = 7f9d909bb845c365dbf49388b79687e7491c271dd7d2f9481a20397153a670f6 -SIZE (KDE/applications/19.08.2/blinken-19.08.2.tar.xz) = 2820068 +TIMESTAMP = 1572930752 +SHA256 (KDE/applications/19.08.3/blinken-19.08.3.tar.xz) = 620fe5ffb656f829a7ca72a2df40c19ff0562e3700f51bd66b7d8a6a486ed3c9 +SIZE (KDE/applications/19.08.3/blinken-19.08.3.tar.xz) = 2820600 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 517111) +++ head/games/bomber/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544352 -SHA256 (KDE/applications/19.08.2/bomber-19.08.2.tar.xz) = 26285fe9e510cd334bb933281c615c2971084bfa787618ba0190175c36ada741 -SIZE (KDE/applications/19.08.2/bomber-19.08.2.tar.xz) = 821136 +TIMESTAMP = 1572930752 +SHA256 (KDE/applications/19.08.3/bomber-19.08.3.tar.xz) = 3a0ef6ca5a05253b1554218a1dc699c5547a073da5cecdf75445e0f72b687fd3 +SIZE (KDE/applications/19.08.3/bomber-19.08.3.tar.xz) = 821164 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 517111) +++ head/games/bovo/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544353 -SHA256 (KDE/applications/19.08.2/bovo-19.08.2.tar.xz) = 63f7a3860de2344be69366f636e841cd3db19743a8a29c42e14402256ed3122b -SIZE (KDE/applications/19.08.2/bovo-19.08.2.tar.xz) = 200400 +TIMESTAMP = 1572930753 +SHA256 (KDE/applications/19.08.3/bovo-19.08.3.tar.xz) = 2f950820ebdb52f1c81476b36b5ea07808fe8da154e7757a85ca8ac2c1b37735 +SIZE (KDE/applications/19.08.3/bovo-19.08.3.tar.xz) = 200164 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 517111) +++ head/games/granatier/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544353 -SHA256 (KDE/applications/19.08.2/granatier-19.08.2.tar.xz) = 81a0c288edd0be6d7c994a8ad1469679b7e78174d641f9c4f90d31613bad4b47 -SIZE (KDE/applications/19.08.2/granatier-19.08.2.tar.xz) = 1944368 +TIMESTAMP = 1572930754 +SHA256 (KDE/applications/19.08.3/granatier-19.08.3.tar.xz) = eac24bb0b0bcf7e12e4059187e0fd542503bae620637a4f35a339e6f63ab3890 +SIZE (KDE/applications/19.08.3/granatier-19.08.3.tar.xz) = 1945196 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 517111) +++ head/games/kanagram/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544354 -SHA256 (KDE/applications/19.08.2/kanagram-19.08.2.tar.xz) = 251d08a8b73e85af4b90ed429d873b17f56c1e094c4a62116eee3b6bffc96388 -SIZE (KDE/applications/19.08.2/kanagram-19.08.2.tar.xz) = 8030192 +TIMESTAMP = 1572930755 +SHA256 (KDE/applications/19.08.3/kanagram-19.08.3.tar.xz) = 74f7daaed8db4f2b445479307dbe974d3f3f1c8197ab8604712e109c8a4d36d2 +SIZE (KDE/applications/19.08.3/kanagram-19.08.3.tar.xz) = 8031760 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 517111) +++ head/games/kapman/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544355 -SHA256 (KDE/applications/19.08.2/kapman-19.08.2.tar.xz) = 240d7b0c611728bd1974230227c669bdcfe80081cff2ddae6278d5393bab7a4e -SIZE (KDE/applications/19.08.2/kapman-19.08.2.tar.xz) = 2526212 +TIMESTAMP = 1572930756 +SHA256 (KDE/applications/19.08.3/kapman-19.08.3.tar.xz) = 0edc811df5d4e729851e4af980fb414d70af66218091c017c16054a5181af80e +SIZE (KDE/applications/19.08.3/kapman-19.08.3.tar.xz) = 2525336 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 517111) +++ head/games/katomic/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544355 -SHA256 (KDE/applications/19.08.2/katomic-19.08.2.tar.xz) = 822963024107e122a3f53f55ae6863a10d92ca59eef5966cded6c9daf5f989b3 -SIZE (KDE/applications/19.08.2/katomic-19.08.2.tar.xz) = 1422816 +TIMESTAMP = 1572930756 +SHA256 (KDE/applications/19.08.3/katomic-19.08.3.tar.xz) = a02df5d0d03fdd478ead1ba705089514b6debfae553be8d814edfb6952149eac +SIZE (KDE/applications/19.08.3/katomic-19.08.3.tar.xz) = 1423744 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 517111) +++ head/games/kblackbox/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544356 -SHA256 (KDE/applications/19.08.2/kblackbox-19.08.2.tar.xz) = 4ed8e2fe00e4d2ce0b194f85491f46ceaeec28114ff2dc667c0b112f8237a9ca -SIZE (KDE/applications/19.08.2/kblackbox-19.08.2.tar.xz) = 446988 +TIMESTAMP = 1572930757 +SHA256 (KDE/applications/19.08.3/kblackbox-19.08.3.tar.xz) = 16f885a5baa0ee593c85f745246f2b3af9106a3befb0c9b7aa8695e3aed382f4 +SIZE (KDE/applications/19.08.3/kblackbox-19.08.3.tar.xz) = 446396 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 517111) +++ head/games/kblocks/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544357 -SHA256 (KDE/applications/19.08.2/kblocks-19.08.2.tar.xz) = 8b52c949e2d446a4ccf81b09818fc90234f2f55d8722c385491ee67e1f2abf93 -SIZE (KDE/applications/19.08.2/kblocks-19.08.2.tar.xz) = 1908852 +TIMESTAMP = 1572930758 +SHA256 (KDE/applications/19.08.3/kblocks-19.08.3.tar.xz) = 9d2553472a3f61e1be584bed2d9295a60b8074fdcd264213d67dc20f63033563 +SIZE (KDE/applications/19.08.3/kblocks-19.08.3.tar.xz) = 1906952 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 517111) +++ head/games/kbounce/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544358 -SHA256 (KDE/applications/19.08.2/kbounce-19.08.2.tar.xz) = 8436ba58bb88360b08c2d220c1a92c924b15587769103f04881ac17583cc93c8 -SIZE (KDE/applications/19.08.2/kbounce-19.08.2.tar.xz) = 3466600 +TIMESTAMP = 1572930759 +SHA256 (KDE/applications/19.08.3/kbounce-19.08.3.tar.xz) = 21e4bc2e2f3c23d4b954c8b336aab9faa5ba6021ca1487baf39595ff31d82e0b +SIZE (KDE/applications/19.08.3/kbounce-19.08.3.tar.xz) = 3470400 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 517111) +++ head/games/kbreakout/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544358 -SHA256 (KDE/applications/19.08.2/kbreakout-19.08.2.tar.xz) = 9550d3ee6f6d412816bd12686272c3f0f0b5b9194242f9b22e2085c39d9720a9 -SIZE (KDE/applications/19.08.2/kbreakout-19.08.2.tar.xz) = 2277680 +TIMESTAMP = 1572930759 +SHA256 (KDE/applications/19.08.3/kbreakout-19.08.3.tar.xz) = 1c49d80dcbaa7745932c6b64c520072099e66767e8d1f725a332f79a7ee89f3f +SIZE (KDE/applications/19.08.3/kbreakout-19.08.3.tar.xz) = 2276292 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 517111) +++ head/games/kdiamond/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544380 -SHA256 (KDE/applications/19.08.2/kdiamond-19.08.2.tar.xz) = e0e6104a34711864bc00d12acc5d4ac0143acfaefc5fec8a7f9ec5f7242d32e7 -SIZE (KDE/applications/19.08.2/kdiamond-19.08.2.tar.xz) = 4694124 +TIMESTAMP = 1572930781 +SHA256 (KDE/applications/19.08.3/kdiamond-19.08.3.tar.xz) = 6a433c8b628f105d210efd5b5532763e09a4e7190d71f8cf11931ab1605abeec +SIZE (KDE/applications/19.08.3/kdiamond-19.08.3.tar.xz) = 4694440 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 517111) +++ head/games/kfourinline/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544381 -SHA256 (KDE/applications/19.08.2/kfourinline-19.08.2.tar.xz) = 14d1cd1be7f1524758697f79d55c0c40e8e6359f2039929349e017a97acdc4dc -SIZE (KDE/applications/19.08.2/kfourinline-19.08.2.tar.xz) = 638236 +TIMESTAMP = 1572930782 +SHA256 (KDE/applications/19.08.3/kfourinline-19.08.3.tar.xz) = c35b52b41398616798d75e62fa77488bf84e924e91a432cd1b96b1c09ad1f9ee +SIZE (KDE/applications/19.08.3/kfourinline-19.08.3.tar.xz) = 638368 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 517111) +++ head/games/kgoldrunner/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544381 -SHA256 (KDE/applications/19.08.2/kgoldrunner-19.08.2.tar.xz) = fc719386cd1f0784c9be9813326e3fded8eb2951096abf7fcc4d577e5ed5501a -SIZE (KDE/applications/19.08.2/kgoldrunner-19.08.2.tar.xz) = 4414844 +TIMESTAMP = 1572930782 +SHA256 (KDE/applications/19.08.3/kgoldrunner-19.08.3.tar.xz) = 44aec483cbd9d0bffb4eb9606d456ba375cb772fe72ab2c9d76a64930ede2c9b +SIZE (KDE/applications/19.08.3/kgoldrunner-19.08.3.tar.xz) = 4435920 Index: head/games/kgoldrunner/pkg-plist =================================================================== --- head/games/kgoldrunner/pkg-plist (revision 517111) +++ head/games/kgoldrunner/pkg-plist (revision 517112) @@ -1,126 +1,127 @@ bin/kgoldrunner share/qlogging-categories5/kgoldrunner.categories etc/xdg/kgoldrunner.knsrc share/applications/org.kde.kgoldrunner.desktop share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png share/icons/hicolor/32x32/apps/kgoldrunner.png share/icons/hicolor/48x48/apps/kgoldrunner.png share/icons/hicolor/64x64/apps/kgoldrunner.png %%DATADIR%%/system/game_CM.txt %%DATADIR%%/system/game_GMEP.txt %%DATADIR%%/system/game_GMGR.txt %%DATADIR%%/system/game_GRII.txt %%DATADIR%%/system/game_MAZ.txt %%DATADIR%%/system/game_blb.txt %%DATADIR%%/system/game_cnt.txt %%DATADIR%%/system/game_ende.txt %%DATADIR%%/system/game_fd.txt %%DATADIR%%/system/game_kgr.txt %%DATADIR%%/system/game_lars.txt %%DATADIR%%/system/game_plws.txt %%DATADIR%%/system/game_plwv.txt %%DATADIR%%/system/game_sot.txt %%DATADIR%%/system/game_tute.txt %%DATADIR%%/system/game_tutea.txt %%DATADIR%%/system/game_wad.txt %%DATADIR%%/system/hi_kgr.dat %%DATADIR%%/system/hi_plws.dat %%DATADIR%%/system/hi_plwv.dat %%DATADIR%%/system/hi_wad.dat %%DATADIR%%/system/rec_GMGR.txt %%DATADIR%%/system/rec_GRII.txt %%DATADIR%%/system/rec_demo.txt %%DATADIR%%/system/sol_blb.txt %%DATADIR%%/system/sol_fd.txt %%DATADIR%%/system/sol_kgr.txt %%DATADIR%%/system/sol_plws.txt %%DATADIR%%/system/sol_tute.txt %%DATADIR%%/system/sol_tutea.txt %%DATADIR%%/themes/README %%DATADIR%%/themes/accessible/black-on-white-actors.svg %%DATADIR%%/themes/accessible/black-on-white-set.svg %%DATADIR%%/themes/accessible/black-on-white.png %%DATADIR%%/themes/black-on-white.desktop %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default/actors.svg %%DATADIR%%/themes/default/climb.wav %%DATADIR%%/themes/default/completed.ogg %%DATADIR%%/themes/default/death.ogg %%DATADIR%%/themes/default/default.png %%DATADIR%%/themes/default/dig.ogg %%DATADIR%%/themes/default/falling.ogg %%DATADIR%%/themes/default/gameover.ogg %%DATADIR%%/themes/default/gold.ogg %%DATADIR%%/themes/default/ladder.ogg %%DATADIR%%/themes/default/set.svg %%DATADIR%%/themes/default/step.wav %%DATADIR%%/themes/default/victory.ogg %%DATADIR%%/themes/egypt.desktop %%DATADIR%%/themes/egypt/actors.svgz %%DATADIR%%/themes/egypt/egypt.png %%DATADIR%%/themes/egypt/egypt_kgr.svgz %%DATADIR%%/themes/kgr_geek.desktop %%DATADIR%%/themes/kgr_geek/actors.svgz %%DATADIR%%/themes/kgr_geek/kgr_geek.png %%DATADIR%%/themes/kgr_geek/set.svgz %%DATADIR%%/themes/nostalgia-blues.desktop %%DATADIR%%/themes/nostalgia.desktop %%DATADIR%%/themes/nostalgia/actors.svg %%DATADIR%%/themes/nostalgia/blue-actors.svg %%DATADIR%%/themes/nostalgia/blue-set.svg %%DATADIR%%/themes/nostalgia/nostalgia-blues.png %%DATADIR%%/themes/nostalgia/nostalgia.png %%DATADIR%%/themes/nostalgia/set.svg share/kxmlgui5/kgoldrunner/kgoldrunnerui.rc share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/bg/LC_MESSAGES/kgoldrunner.mo share/locale/bs/LC_MESSAGES/kgoldrunner.mo share/locale/ca/LC_MESSAGES/kgoldrunner.mo share/locale/ca@valencia/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo share/locale/da/LC_MESSAGES/kgoldrunner.mo share/locale/de/LC_MESSAGES/kgoldrunner.mo share/locale/el/LC_MESSAGES/kgoldrunner.mo share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo share/locale/eo/LC_MESSAGES/kgoldrunner.mo share/locale/es/LC_MESSAGES/kgoldrunner.mo share/locale/et/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/fa/LC_MESSAGES/kgoldrunner.mo share/locale/fi/LC_MESSAGES/kgoldrunner.mo share/locale/fr/LC_MESSAGES/kgoldrunner.mo share/locale/ga/LC_MESSAGES/kgoldrunner.mo share/locale/gl/LC_MESSAGES/kgoldrunner.mo share/locale/hi/LC_MESSAGES/kgoldrunner.mo share/locale/hr/LC_MESSAGES/kgoldrunner.mo share/locale/hu/LC_MESSAGES/kgoldrunner.mo +share/locale/id/LC_MESSAGES/kgoldrunner.mo share/locale/is/LC_MESSAGES/kgoldrunner.mo share/locale/it/LC_MESSAGES/kgoldrunner.mo share/locale/ja/LC_MESSAGES/kgoldrunner.mo share/locale/kk/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo share/locale/lt/LC_MESSAGES/kgoldrunner.mo share/locale/lv/LC_MESSAGES/kgoldrunner.mo share/locale/mr/LC_MESSAGES/kgoldrunner.mo share/locale/nb/LC_MESSAGES/kgoldrunner.mo share/locale/nds/LC_MESSAGES/kgoldrunner.mo share/locale/nl/LC_MESSAGES/kgoldrunner.mo share/locale/nn/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pl/LC_MESSAGES/kgoldrunner.mo share/locale/pt/LC_MESSAGES/kgoldrunner.mo share/locale/pt_BR/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ru/LC_MESSAGES/kgoldrunner.mo share/locale/sk/LC_MESSAGES/kgoldrunner.mo share/locale/sl/LC_MESSAGES/kgoldrunner.mo share/locale/sr/LC_MESSAGES/kgoldrunner.mo share/locale/sv/LC_MESSAGES/kgoldrunner.mo share/locale/tr/LC_MESSAGES/kgoldrunner.mo share/locale/ug/LC_MESSAGES/kgoldrunner.mo share/locale/uk/LC_MESSAGES/kgoldrunner.mo share/locale/zh_CN/LC_MESSAGES/kgoldrunner.mo share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo share/metainfo/org.kde.kgoldrunner.appdata.xml Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 517111) +++ head/games/khangman/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544382 -SHA256 (KDE/applications/19.08.2/khangman-19.08.2.tar.xz) = dfa7d2f19ab7cd7aa90d91bab1818d48e6df88ddebf729732cca8d6aca15d1f3 -SIZE (KDE/applications/19.08.2/khangman-19.08.2.tar.xz) = 7121644 +TIMESTAMP = 1572930783 +SHA256 (KDE/applications/19.08.3/khangman-19.08.3.tar.xz) = 82e34738f34efef5f03bf98a3a99a0590a5a265cce016b4a2f25ca05e9d078c3 +SIZE (KDE/applications/19.08.3/khangman-19.08.3.tar.xz) = 7116224 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 517111) +++ head/games/kigo/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544383 -SHA256 (KDE/applications/19.08.2/kigo-19.08.2.tar.xz) = c53a85b312e4acfcc35905a7e5602f3d623e45227fbd3644410b3fd962a9f1a0 -SIZE (KDE/applications/19.08.2/kigo-19.08.2.tar.xz) = 5227088 +TIMESTAMP = 1572930784 +SHA256 (KDE/applications/19.08.3/kigo-19.08.3.tar.xz) = 2e20837b52550c7c33bd2e5f741a2395a8a1666b793e4b034bd27714177b8502 +SIZE (KDE/applications/19.08.3/kigo-19.08.3.tar.xz) = 5227988 Index: head/games/kigo/pkg-plist =================================================================== --- head/games/kigo/pkg-plist (revision 517111) +++ head/games/kigo/pkg-plist (revision 517112) @@ -1,65 +1,66 @@ bin/kigo etc/xdg/kigo-games.knsrc etc/xdg/kigo.knsrc share/applications/org.kde.kigo.desktop share/config.kcfg/kigo.kcfg share/icons/hicolor/128x128/apps/kigo.png share/icons/hicolor/16x16/apps/kigo.png share/icons/hicolor/22x22/apps/kigo.png share/icons/hicolor/32x32/apps/kigo.png share/icons/hicolor/48x48/apps/kigo.png share/icons/hicolor/64x64/apps/kigo.png %%DATADIR%%/games/Honinbo-51-5.sgf %%DATADIR%%/games/Mehin-21-2.sgf %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/kigo_default.png %%DATADIR%%/themes/kigo_default.svgz %%DATADIR%%/themes/kigo_plain.png %%DATADIR%%/themes/kigo_plain.svgz %%DATADIR%%/themes/plain.desktop share/kxmlgui5/kigo/kigoui.rc share/locale/bs/LC_MESSAGES/kigo.mo share/locale/ca/LC_MESSAGES/kigo.mo share/locale/ca@valencia/LC_MESSAGES/kigo.mo share/locale/cs/LC_MESSAGES/kigo.mo share/locale/da/LC_MESSAGES/kigo.mo share/locale/de/LC_MESSAGES/kigo.mo share/locale/el/LC_MESSAGES/kigo.mo share/locale/en_GB/LC_MESSAGES/kigo.mo share/locale/eo/LC_MESSAGES/kigo.mo share/locale/es/LC_MESSAGES/kigo.mo share/locale/et/LC_MESSAGES/kigo.mo share/locale/fi/LC_MESSAGES/kigo.mo share/locale/fr/LC_MESSAGES/kigo.mo share/locale/ga/LC_MESSAGES/kigo.mo share/locale/gl/LC_MESSAGES/kigo.mo share/locale/hr/LC_MESSAGES/kigo.mo share/locale/hu/LC_MESSAGES/kigo.mo +share/locale/id/LC_MESSAGES/kigo.mo share/locale/is/LC_MESSAGES/kigo.mo share/locale/it/LC_MESSAGES/kigo.mo share/locale/ja/LC_MESSAGES/kigo.mo share/locale/kk/LC_MESSAGES/kigo.mo share/locale/km/LC_MESSAGES/kigo.mo share/locale/ko/LC_MESSAGES/kigo.mo share/locale/lt/LC_MESSAGES/kigo.mo share/locale/lv/LC_MESSAGES/kigo.mo share/locale/mr/LC_MESSAGES/kigo.mo share/locale/nb/LC_MESSAGES/kigo.mo share/locale/nds/LC_MESSAGES/kigo.mo share/locale/nl/LC_MESSAGES/kigo.mo share/locale/nn/LC_MESSAGES/kigo.mo share/locale/pl/LC_MESSAGES/kigo.mo share/locale/pt/LC_MESSAGES/kigo.mo share/locale/pt_BR/LC_MESSAGES/kigo.mo share/locale/ro/LC_MESSAGES/kigo.mo share/locale/ru/LC_MESSAGES/kigo.mo share/locale/sk/LC_MESSAGES/kigo.mo share/locale/sl/LC_MESSAGES/kigo.mo share/locale/sr/LC_MESSAGES/kigo.mo share/locale/sv/LC_MESSAGES/kigo.mo share/locale/tr/LC_MESSAGES/kigo.mo share/locale/ug/LC_MESSAGES/kigo.mo share/locale/uk/LC_MESSAGES/kigo.mo share/locale/zh_CN/LC_MESSAGES/kigo.mo share/locale/zh_TW/LC_MESSAGES/kigo.mo share/metainfo/org.kde.kigo.appdata.xml Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 517111) +++ head/games/killbots/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544383 -SHA256 (KDE/applications/19.08.2/killbots-19.08.2.tar.xz) = c4407bf534dc9de604d6c169cf278b8cb9ca03055d96b71cbfe3916dbafea479 -SIZE (KDE/applications/19.08.2/killbots-19.08.2.tar.xz) = 1171644 +TIMESTAMP = 1572930785 +SHA256 (KDE/applications/19.08.3/killbots-19.08.3.tar.xz) = 75f5d53eda4dbe96250caa2faa16514d7c68538d7e8c9deea4eff0d80e3628e2 +SIZE (KDE/applications/19.08.3/killbots-19.08.3.tar.xz) = 1175900 Index: head/games/killbots/pkg-plist =================================================================== --- head/games/killbots/pkg-plist (revision 517111) +++ head/games/killbots/pkg-plist (revision 517112) @@ -1,71 +1,72 @@ bin/killbots share/applications/org.kde.killbots.desktop share/config.kcfg/killbots.kcfg share/icons/hicolor/128x128/apps/killbots.png share/icons/hicolor/16x16/apps/killbots.png share/icons/hicolor/22x22/apps/killbots.png share/icons/hicolor/32x32/apps/killbots.png share/icons/hicolor/48x48/apps/killbots.png share/icons/hicolor/64x64/apps/killbots.png %%DATADIR%%/rulesets/classic.desktop %%DATADIR%%/rulesets/daleks.desktop %%DATADIR%%/rulesets/default.desktop %%DATADIR%%/rulesets/easy.desktop %%DATADIR%%/rulesets/energycrisis.desktop %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic.png %%DATADIR%%/themes/classic.svgz %%DATADIR%%/themes/mountainadventure.desktop %%DATADIR%%/themes/mountainadventure.png %%DATADIR%%/themes/mountainadventure.svgz %%DATADIR%%/themes/mummymadness.desktop %%DATADIR%%/themes/mummymadness.png %%DATADIR%%/themes/mummymadness.svgz %%DATADIR%%/themes/robotkill.desktop %%DATADIR%%/themes/robotkill.png %%DATADIR%%/themes/robotkill.svgz share/locale/bs/LC_MESSAGES/killbots.mo share/locale/ca/LC_MESSAGES/killbots.mo share/locale/ca@valencia/LC_MESSAGES/killbots.mo share/locale/cs/LC_MESSAGES/killbots.mo share/locale/da/LC_MESSAGES/killbots.mo share/locale/de/LC_MESSAGES/killbots.mo share/locale/el/LC_MESSAGES/killbots.mo share/locale/en_GB/LC_MESSAGES/killbots.mo share/locale/eo/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/killbots.mo share/locale/fi/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/killbots.mo share/locale/gl/LC_MESSAGES/killbots.mo share/locale/hr/LC_MESSAGES/killbots.mo share/locale/hu/LC_MESSAGES/killbots.mo +share/locale/id/LC_MESSAGES/killbots.mo share/locale/is/LC_MESSAGES/killbots.mo share/locale/it/LC_MESSAGES/killbots.mo share/locale/ja/LC_MESSAGES/killbots.mo share/locale/kk/LC_MESSAGES/killbots.mo share/locale/km/LC_MESSAGES/killbots.mo share/locale/ko/LC_MESSAGES/killbots.mo share/locale/lt/LC_MESSAGES/killbots.mo share/locale/lv/LC_MESSAGES/killbots.mo share/locale/mr/LC_MESSAGES/killbots.mo share/locale/nb/LC_MESSAGES/killbots.mo share/locale/nds/LC_MESSAGES/killbots.mo share/locale/nl/LC_MESSAGES/killbots.mo share/locale/nn/LC_MESSAGES/killbots.mo share/locale/pl/LC_MESSAGES/killbots.mo share/locale/pt/LC_MESSAGES/killbots.mo share/locale/pt_BR/LC_MESSAGES/killbots.mo share/locale/ro/LC_MESSAGES/killbots.mo share/locale/ru/LC_MESSAGES/killbots.mo share/locale/sk/LC_MESSAGES/killbots.mo share/locale/sl/LC_MESSAGES/killbots.mo share/locale/sr/LC_MESSAGES/killbots.mo share/locale/sv/LC_MESSAGES/killbots.mo share/locale/tr/LC_MESSAGES/killbots.mo share/locale/ug/LC_MESSAGES/killbots.mo share/locale/uk/LC_MESSAGES/killbots.mo share/locale/zh_CN/LC_MESSAGES/killbots.mo share/locale/zh_TW/LC_MESSAGES/killbots.mo share/metainfo/org.kde.killbots.appdata.xml Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 517111) +++ head/games/kiriki/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544384 -SHA256 (KDE/applications/19.08.2/kiriki-19.08.2.tar.xz) = 8aa1749e2b14dbb4b508515a0b1f5164243ee793141ec2af7bfc6be1f6eb67da -SIZE (KDE/applications/19.08.2/kiriki-19.08.2.tar.xz) = 372868 +TIMESTAMP = 1572930785 +SHA256 (KDE/applications/19.08.3/kiriki-19.08.3.tar.xz) = 1ceaea286294d8a5371d0792ee38cf4b8922495587cc430b6b01bd92642be2f5 +SIZE (KDE/applications/19.08.3/kiriki-19.08.3.tar.xz) = 373104 Index: head/games/kiriki/pkg-plist =================================================================== --- head/games/kiriki/pkg-plist (revision 517111) +++ head/games/kiriki/pkg-plist (revision 517112) @@ -1,63 +1,64 @@ bin/kiriki share/applications/org.kde.kiriki.desktop share/icons/hicolor/128x128/apps/kiriki.png share/icons/hicolor/16x16/apps/kiriki.png share/icons/hicolor/22x22/apps/kiriki.png share/icons/hicolor/32x32/apps/kiriki.png share/icons/hicolor/48x48/apps/kiriki.png share/icons/hicolor/64x64/apps/kiriki.png %%DATADIR%%/images/dice-1.png %%DATADIR%%/images/dice-2.png %%DATADIR%%/images/dice-3.png %%DATADIR%%/images/dice-4.png %%DATADIR%%/images/dice-5.png %%DATADIR%%/images/dice-6.png %%DATADIR%%/images/dice-none.png share/kxmlgui5/kiriki/kirikiui.rc share/locale/ar/LC_MESSAGES/kiriki.mo share/locale/bs/LC_MESSAGES/kiriki.mo share/locale/ca/LC_MESSAGES/kiriki.mo share/locale/ca@valencia/LC_MESSAGES/kiriki.mo share/locale/cs/LC_MESSAGES/kiriki.mo share/locale/da/LC_MESSAGES/kiriki.mo share/locale/de/LC_MESSAGES/kiriki.mo share/locale/el/LC_MESSAGES/kiriki.mo share/locale/en_GB/LC_MESSAGES/kiriki.mo share/locale/eo/LC_MESSAGES/kiriki.mo share/locale/es/LC_MESSAGES/kiriki.mo share/locale/et/LC_MESSAGES/kiriki.mo share/locale/fi/LC_MESSAGES/kiriki.mo share/locale/fr/LC_MESSAGES/kiriki.mo share/locale/ga/LC_MESSAGES/kiriki.mo share/locale/gl/LC_MESSAGES/kiriki.mo share/locale/hi/LC_MESSAGES/kiriki.mo share/locale/hr/LC_MESSAGES/kiriki.mo share/locale/hu/LC_MESSAGES/kiriki.mo +share/locale/id/LC_MESSAGES/kiriki.mo share/locale/is/LC_MESSAGES/kiriki.mo share/locale/it/LC_MESSAGES/kiriki.mo share/locale/ja/LC_MESSAGES/kiriki.mo share/locale/kk/LC_MESSAGES/kiriki.mo share/locale/km/LC_MESSAGES/kiriki.mo share/locale/ko/LC_MESSAGES/kiriki.mo share/locale/lt/LC_MESSAGES/kiriki.mo share/locale/lv/LC_MESSAGES/kiriki.mo share/locale/mr/LC_MESSAGES/kiriki.mo share/locale/nb/LC_MESSAGES/kiriki.mo share/locale/nds/LC_MESSAGES/kiriki.mo share/locale/nl/LC_MESSAGES/kiriki.mo share/locale/nn/LC_MESSAGES/kiriki.mo share/locale/pl/LC_MESSAGES/kiriki.mo share/locale/pt/LC_MESSAGES/kiriki.mo share/locale/pt_BR/LC_MESSAGES/kiriki.mo share/locale/ro/LC_MESSAGES/kiriki.mo share/locale/ru/LC_MESSAGES/kiriki.mo share/locale/sk/LC_MESSAGES/kiriki.mo share/locale/sl/LC_MESSAGES/kiriki.mo share/locale/sr/LC_MESSAGES/kiriki.mo share/locale/sv/LC_MESSAGES/kiriki.mo share/locale/tr/LC_MESSAGES/kiriki.mo share/locale/ug/LC_MESSAGES/kiriki.mo share/locale/uk/LC_MESSAGES/kiriki.mo share/locale/zh_CN/LC_MESSAGES/kiriki.mo share/locale/zh_TW/LC_MESSAGES/kiriki.mo share/metainfo/org.kde.kiriki.appdata.xml Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 517111) +++ head/games/kjumpingcube/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544385 -SHA256 (KDE/applications/19.08.2/kjumpingcube-19.08.2.tar.xz) = 7ff90a22670818eee7d02fd8119923761e003e059d0666873d5299cd31c96eb3 -SIZE (KDE/applications/19.08.2/kjumpingcube-19.08.2.tar.xz) = 287988 +TIMESTAMP = 1572930786 +SHA256 (KDE/applications/19.08.3/kjumpingcube-19.08.3.tar.xz) = a1e6147105a0d467629118bf6cac974a1a698d15f48563e494ce75e126fec734 +SIZE (KDE/applications/19.08.3/kjumpingcube-19.08.3.tar.xz) = 288612 Index: head/games/kjumpingcube/pkg-plist =================================================================== --- head/games/kjumpingcube/pkg-plist (revision 517111) +++ head/games/kjumpingcube/pkg-plist (revision 517112) @@ -1,64 +1,65 @@ bin/kjumpingcube share/qlogging-categories5/kjumpingcube.categories share/applications/org.kde.kjumpingcube.desktop share/config.kcfg/kjumpingcube.kcfg share/icons/hicolor/128x128/apps/kjumpingcube.png share/icons/hicolor/16x16/apps/kjumpingcube.png share/icons/hicolor/22x22/apps/kjumpingcube.png share/icons/hicolor/32x32/apps/kjumpingcube.png share/icons/hicolor/48x48/apps/kjumpingcube.png share/icons/hicolor/64x64/apps/kjumpingcube.png %%DATADIR%%/pics/default.desktop %%DATADIR%%/pics/default.svg share/locale/ar/LC_MESSAGES/kjumpingcube.mo share/locale/bg/LC_MESSAGES/kjumpingcube.mo share/locale/bs/LC_MESSAGES/kjumpingcube.mo share/locale/ca/LC_MESSAGES/kjumpingcube.mo share/locale/ca@valencia/LC_MESSAGES/kjumpingcube.mo share/locale/cs/LC_MESSAGES/kjumpingcube.mo share/locale/da/LC_MESSAGES/kjumpingcube.mo share/locale/de/LC_MESSAGES/kjumpingcube.mo share/locale/el/LC_MESSAGES/kjumpingcube.mo share/locale/en_GB/LC_MESSAGES/kjumpingcube.mo share/locale/eo/LC_MESSAGES/kjumpingcube.mo share/locale/es/LC_MESSAGES/kjumpingcube.mo share/locale/et/LC_MESSAGES/kjumpingcube.mo share/locale/eu/LC_MESSAGES/kjumpingcube.mo share/locale/fa/LC_MESSAGES/kjumpingcube.mo share/locale/fi/LC_MESSAGES/kjumpingcube.mo share/locale/fr/LC_MESSAGES/kjumpingcube.mo share/locale/ga/LC_MESSAGES/kjumpingcube.mo share/locale/gl/LC_MESSAGES/kjumpingcube.mo share/locale/he/LC_MESSAGES/kjumpingcube.mo share/locale/hi/LC_MESSAGES/kjumpingcube.mo share/locale/hr/LC_MESSAGES/kjumpingcube.mo share/locale/hu/LC_MESSAGES/kjumpingcube.mo +share/locale/id/LC_MESSAGES/kjumpingcube.mo share/locale/is/LC_MESSAGES/kjumpingcube.mo share/locale/it/LC_MESSAGES/kjumpingcube.mo share/locale/ja/LC_MESSAGES/kjumpingcube.mo share/locale/kk/LC_MESSAGES/kjumpingcube.mo share/locale/km/LC_MESSAGES/kjumpingcube.mo share/locale/ko/LC_MESSAGES/kjumpingcube.mo share/locale/lt/LC_MESSAGES/kjumpingcube.mo share/locale/lv/LC_MESSAGES/kjumpingcube.mo share/locale/mr/LC_MESSAGES/kjumpingcube.mo share/locale/nb/LC_MESSAGES/kjumpingcube.mo share/locale/nds/LC_MESSAGES/kjumpingcube.mo share/locale/nl/LC_MESSAGES/kjumpingcube.mo share/locale/nn/LC_MESSAGES/kjumpingcube.mo share/locale/pa/LC_MESSAGES/kjumpingcube.mo share/locale/pl/LC_MESSAGES/kjumpingcube.mo share/locale/pt/LC_MESSAGES/kjumpingcube.mo share/locale/pt_BR/LC_MESSAGES/kjumpingcube.mo share/locale/ro/LC_MESSAGES/kjumpingcube.mo share/locale/ru/LC_MESSAGES/kjumpingcube.mo share/locale/sk/LC_MESSAGES/kjumpingcube.mo share/locale/sl/LC_MESSAGES/kjumpingcube.mo share/locale/sr/LC_MESSAGES/kjumpingcube.mo share/locale/sv/LC_MESSAGES/kjumpingcube.mo share/locale/tr/LC_MESSAGES/kjumpingcube.mo share/locale/ug/LC_MESSAGES/kjumpingcube.mo share/locale/uk/LC_MESSAGES/kjumpingcube.mo share/locale/zh_CN/LC_MESSAGES/kjumpingcube.mo share/locale/zh_TW/LC_MESSAGES/kjumpingcube.mo share/metainfo/org.kde.kjumpingcube.appdata.xml Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 517111) +++ head/games/klickety/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544385 -SHA256 (KDE/applications/19.08.2/klickety-19.08.2.tar.xz) = 97e165d250d88a5a9f00fc5e111f641c43bed8e1445fd9d7c59f986cf5517271 -SIZE (KDE/applications/19.08.2/klickety-19.08.2.tar.xz) = 1389260 +TIMESTAMP = 1572930787 +SHA256 (KDE/applications/19.08.3/klickety-19.08.3.tar.xz) = 7e4509d47c363173630d536b401d8f1ccb7db4c62d75dd4a449e89dc56c9632e +SIZE (KDE/applications/19.08.3/klickety-19.08.3.tar.xz) = 1389972 Index: head/games/klickety/pkg-plist =================================================================== --- head/games/klickety/pkg-plist (revision 517111) +++ head/games/klickety/pkg-plist (revision 517112) @@ -1,73 +1,74 @@ bin/klickety share/applications/org.kde.klickety.desktop share/applications/org.kde.ksame.desktop share/icons/hicolor/128x128/apps/klickety.png share/icons/hicolor/128x128/apps/ksame.png share/icons/hicolor/16x16/apps/klickety.png share/icons/hicolor/16x16/apps/ksame.png share/icons/hicolor/22x22/apps/klickety.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/32x32/apps/klickety.png share/icons/hicolor/32x32/apps/ksame.png share/icons/hicolor/48x48/apps/klickety.png share/icons/hicolor/48x48/apps/ksame.png share/icons/hicolor/64x64/apps/klickety.png share/icons/hicolor/64x64/apps/ksame.png share/kconf_update/klickety-2.0-inherit-ksame-highscore.pl share/kconf_update/klickety.upd %%DATADIR%%/klickety.kcfg %%DATADIR%%/themes/classic.svg %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/ksame.desktop %%DATADIR%%/themes/ksame.svg %%DATADIR%%/themes/ksame_old.desktop %%DATADIR%%/themes/ksame_old.svg %%DATADIR%%/themes/ksame_old_preview.png %%DATADIR%%/themes/ksame_preview.png share/kxmlgui5/klickety/klicketyui.rc share/locale/bs/LC_MESSAGES/klickety.mo share/locale/ca/LC_MESSAGES/klickety.mo share/locale/ca@valencia/LC_MESSAGES/klickety.mo share/locale/cs/LC_MESSAGES/klickety.mo share/locale/da/LC_MESSAGES/klickety.mo share/locale/de/LC_MESSAGES/klickety.mo share/locale/el/LC_MESSAGES/klickety.mo share/locale/en_GB/LC_MESSAGES/klickety.mo share/locale/es/LC_MESSAGES/klickety.mo share/locale/et/LC_MESSAGES/klickety.mo share/locale/fi/LC_MESSAGES/klickety.mo share/locale/fr/LC_MESSAGES/klickety.mo share/locale/ga/LC_MESSAGES/klickety.mo share/locale/gl/LC_MESSAGES/klickety.mo share/locale/hu/LC_MESSAGES/klickety.mo +share/locale/id/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klickety.mo share/locale/it/LC_MESSAGES/klickety.mo share/locale/ja/LC_MESSAGES/klickety.mo share/locale/kk/LC_MESSAGES/klickety.mo share/locale/ko/LC_MESSAGES/klickety.mo share/locale/lt/LC_MESSAGES/klickety.mo share/locale/lv/LC_MESSAGES/klickety.mo share/locale/mr/LC_MESSAGES/klickety.mo share/locale/nb/LC_MESSAGES/klickety.mo share/locale/nds/LC_MESSAGES/klickety.mo share/locale/nl/LC_MESSAGES/klickety.mo share/locale/nn/LC_MESSAGES/klickety.mo share/locale/pl/LC_MESSAGES/klickety.mo share/locale/pt/LC_MESSAGES/klickety.mo share/locale/pt_BR/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ru/LC_MESSAGES/klickety.mo share/locale/sk/LC_MESSAGES/klickety.mo share/locale/sl/LC_MESSAGES/klickety.mo share/locale/sr/LC_MESSAGES/klickety.mo share/locale/sv/LC_MESSAGES/klickety.mo share/locale/tr/LC_MESSAGES/klickety.mo share/locale/ug/LC_MESSAGES/klickety.mo share/locale/uk/LC_MESSAGES/klickety.mo share/locale/zh_CN/LC_MESSAGES/klickety.mo share/locale/zh_TW/LC_MESSAGES/klickety.mo share/metainfo/org.kde.klickety.appdata.xml share/metainfo/org.kde.ksame.appdata.xml share/sounds/klickety/game-finished.ogg share/sounds/klickety/remove.ogg Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 517111) +++ head/games/klines/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544386 -SHA256 (KDE/applications/19.08.2/klines-19.08.2.tar.xz) = 1e7f5600b32a43ed4e5b7490430fb20309837e35aceb6b9b904951f23beec86f -SIZE (KDE/applications/19.08.2/klines-19.08.2.tar.xz) = 1780672 +TIMESTAMP = 1572930788 +SHA256 (KDE/applications/19.08.3/klines-19.08.3.tar.xz) = aaa7825b4bfd61b650ddf28dd975b04cebdb7c09c9b137f17d686570a5212ebc +SIZE (KDE/applications/19.08.3/klines-19.08.3.tar.xz) = 1781396 Index: head/games/klines/pkg-plist =================================================================== --- head/games/klines/pkg-plist (revision 517111) +++ head/games/klines/pkg-plist (revision 517112) @@ -1,76 +1,77 @@ bin/klines share/applications/org.kde.klines.desktop share/config.kcfg/klines.kcfg share/icons/hicolor/128x128/apps/klines.png share/icons/hicolor/16x16/apps/klines.png share/icons/hicolor/22x22/apps/klines.png share/icons/hicolor/32x32/apps/klines.png share/icons/hicolor/48x48/apps/klines.png share/icons/hicolor/64x64/apps/klines.png %%DATADIR%%/themes/crystal.desktop %%DATADIR%%/themes/crystal.png %%DATADIR%%/themes/egyptian.desktop %%DATADIR%%/themes/egyptian.png %%DATADIR%%/themes/egyptian.svgz %%DATADIR%%/themes/klines-gems.desktop %%DATADIR%%/themes/klines-gems.png %%DATADIR%%/themes/klines-gems.svgz %%DATADIR%%/themes/klines_crystal.svgz %%DATADIR%%/themes/metal.desktop %%DATADIR%%/themes/metal.png %%DATADIR%%/themes/metal.svgz %%DATADIR%%/themes/pool.desktop %%DATADIR%%/themes/pool.png %%DATADIR%%/themes/pool.svgz share/locale/ar/LC_MESSAGES/klines.mo share/locale/bg/LC_MESSAGES/klines.mo share/locale/bs/LC_MESSAGES/klines.mo share/locale/ca/LC_MESSAGES/klines.mo share/locale/ca@valencia/LC_MESSAGES/klines.mo share/locale/cs/LC_MESSAGES/klines.mo share/locale/da/LC_MESSAGES/klines.mo share/locale/de/LC_MESSAGES/klines.mo share/locale/el/LC_MESSAGES/klines.mo share/locale/en_GB/LC_MESSAGES/klines.mo share/locale/eo/LC_MESSAGES/klines.mo share/locale/es/LC_MESSAGES/klines.mo share/locale/et/LC_MESSAGES/klines.mo share/locale/eu/LC_MESSAGES/klines.mo share/locale/fa/LC_MESSAGES/klines.mo share/locale/fi/LC_MESSAGES/klines.mo share/locale/fr/LC_MESSAGES/klines.mo share/locale/ga/LC_MESSAGES/klines.mo share/locale/gl/LC_MESSAGES/klines.mo share/locale/he/LC_MESSAGES/klines.mo share/locale/hi/LC_MESSAGES/klines.mo share/locale/hr/LC_MESSAGES/klines.mo share/locale/hu/LC_MESSAGES/klines.mo +share/locale/id/LC_MESSAGES/klines.mo share/locale/is/LC_MESSAGES/klines.mo share/locale/it/LC_MESSAGES/klines.mo share/locale/ja/LC_MESSAGES/klines.mo share/locale/kk/LC_MESSAGES/klines.mo share/locale/km/LC_MESSAGES/klines.mo share/locale/ko/LC_MESSAGES/klines.mo share/locale/lt/LC_MESSAGES/klines.mo share/locale/lv/LC_MESSAGES/klines.mo share/locale/mr/LC_MESSAGES/klines.mo share/locale/nb/LC_MESSAGES/klines.mo share/locale/nds/LC_MESSAGES/klines.mo share/locale/nl/LC_MESSAGES/klines.mo share/locale/nn/LC_MESSAGES/klines.mo share/locale/pa/LC_MESSAGES/klines.mo share/locale/pl/LC_MESSAGES/klines.mo share/locale/pt/LC_MESSAGES/klines.mo share/locale/pt_BR/LC_MESSAGES/klines.mo share/locale/ro/LC_MESSAGES/klines.mo share/locale/ru/LC_MESSAGES/klines.mo share/locale/sk/LC_MESSAGES/klines.mo share/locale/sl/LC_MESSAGES/klines.mo share/locale/sr/LC_MESSAGES/klines.mo share/locale/sv/LC_MESSAGES/klines.mo share/locale/tr/LC_MESSAGES/klines.mo share/locale/ug/LC_MESSAGES/klines.mo share/locale/uk/LC_MESSAGES/klines.mo share/locale/zh_CN/LC_MESSAGES/klines.mo share/locale/zh_TW/LC_MESSAGES/klines.mo share/metainfo/org.kde.klines.appdata.xml Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 517111) +++ head/games/kmahjongg/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544387 -SHA256 (KDE/applications/19.08.2/kmahjongg-19.08.2.tar.xz) = 8b2c4b0e3cb9bb85fa6d5f0fc5c55fcca96149e510cde25be2bcd688834a8d08 -SIZE (KDE/applications/19.08.2/kmahjongg-19.08.2.tar.xz) = 3378064 +TIMESTAMP = 1572930789 +SHA256 (KDE/applications/19.08.3/kmahjongg-19.08.3.tar.xz) = d74446083f6ead6d7571e0ca4ff37af3f8167cc16ed7f67576155a000b41ca22 +SIZE (KDE/applications/19.08.3/kmahjongg-19.08.3.tar.xz) = 3379632 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 517111) +++ head/games/kmines/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544387 -SHA256 (KDE/applications/19.08.2/kmines-19.08.2.tar.xz) = 735a3b7b844fbfc970187ddc9d4fe312a5dd6c037e8ad87712388578482d12d8 -SIZE (KDE/applications/19.08.2/kmines-19.08.2.tar.xz) = 898628 +TIMESTAMP = 1572930789 +SHA256 (KDE/applications/19.08.3/kmines-19.08.3.tar.xz) = 4ebb5d932ab43f11f81d0fa64aef871ffecaab4a2c3a5c4dbf10416a86fa8329 +SIZE (KDE/applications/19.08.3/kmines-19.08.3.tar.xz) = 898548 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 517111) +++ head/games/knavalbattle/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544388 -SHA256 (KDE/applications/19.08.2/knavalbattle-19.08.2.tar.xz) = 31f25b5397c36434c1910bf8968f92548019ad172b4d5399e6c01939389915ba -SIZE (KDE/applications/19.08.2/knavalbattle-19.08.2.tar.xz) = 1280500 +TIMESTAMP = 1572930790 +SHA256 (KDE/applications/19.08.3/knavalbattle-19.08.3.tar.xz) = e4a50d3873865e8ab4803a9d7350bfc56ee3d59fd718b8abe860ac89e995ae69 +SIZE (KDE/applications/19.08.3/knavalbattle-19.08.3.tar.xz) = 1281260 Index: head/games/knavalbattle/pkg-plist =================================================================== --- head/games/knavalbattle/pkg-plist (revision 517111) +++ head/games/knavalbattle/pkg-plist (revision 517112) @@ -1,69 +1,70 @@ bin/knavalbattle share/applications/org.kde.knavalbattle.desktop share/icons/hicolor/128x128/apps/knavalbattle.png share/icons/hicolor/16x16/apps/knavalbattle.png share/icons/hicolor/22x22/apps/knavalbattle.png share/icons/hicolor/32x32/apps/knavalbattle.png share/icons/hicolor/48x48/apps/knavalbattle.png share/icons/hicolor/64x64/apps/knavalbattle.png share/kconf_update/knavalbattle.upd %%DATADIR%%/pictures/default.desktop %%DATADIR%%/pictures/default_theme.svgz %%DATADIR%%/sounds/ship-player-shoot-water.ogg %%DATADIR%%/sounds/ship-player1-shoot.ogg %%DATADIR%%/sounds/ship-player2-shoot.ogg %%DATADIR%%/sounds/ship-sink.ogg share/kservices5/knavalbattle.protocol share/kxmlgui5/knavalbattle/knavalbattleui.rc share/locale/ar/LC_MESSAGES/knavalbattle.mo share/locale/bg/LC_MESSAGES/knavalbattle.mo share/locale/bs/LC_MESSAGES/knavalbattle.mo share/locale/ca/LC_MESSAGES/knavalbattle.mo share/locale/ca@valencia/LC_MESSAGES/knavalbattle.mo share/locale/cs/LC_MESSAGES/knavalbattle.mo share/locale/da/LC_MESSAGES/knavalbattle.mo share/locale/de/LC_MESSAGES/knavalbattle.mo share/locale/el/LC_MESSAGES/knavalbattle.mo share/locale/en_GB/LC_MESSAGES/knavalbattle.mo share/locale/eo/LC_MESSAGES/knavalbattle.mo share/locale/es/LC_MESSAGES/knavalbattle.mo share/locale/et/LC_MESSAGES/knavalbattle.mo share/locale/eu/LC_MESSAGES/knavalbattle.mo share/locale/fa/LC_MESSAGES/knavalbattle.mo share/locale/fi/LC_MESSAGES/knavalbattle.mo share/locale/fr/LC_MESSAGES/knavalbattle.mo share/locale/ga/LC_MESSAGES/knavalbattle.mo share/locale/gl/LC_MESSAGES/knavalbattle.mo share/locale/he/LC_MESSAGES/knavalbattle.mo share/locale/hi/LC_MESSAGES/knavalbattle.mo share/locale/hr/LC_MESSAGES/knavalbattle.mo share/locale/hu/LC_MESSAGES/knavalbattle.mo +share/locale/id/LC_MESSAGES/knavalbattle.mo share/locale/is/LC_MESSAGES/knavalbattle.mo share/locale/it/LC_MESSAGES/knavalbattle.mo share/locale/ja/LC_MESSAGES/knavalbattle.mo share/locale/kk/LC_MESSAGES/knavalbattle.mo share/locale/km/LC_MESSAGES/knavalbattle.mo share/locale/ko/LC_MESSAGES/knavalbattle.mo share/locale/lt/LC_MESSAGES/knavalbattle.mo share/locale/lv/LC_MESSAGES/knavalbattle.mo share/locale/mr/LC_MESSAGES/knavalbattle.mo share/locale/nb/LC_MESSAGES/knavalbattle.mo share/locale/nds/LC_MESSAGES/knavalbattle.mo share/locale/nl/LC_MESSAGES/knavalbattle.mo share/locale/nn/LC_MESSAGES/knavalbattle.mo share/locale/pa/LC_MESSAGES/knavalbattle.mo share/locale/pl/LC_MESSAGES/knavalbattle.mo share/locale/pt/LC_MESSAGES/knavalbattle.mo share/locale/pt_BR/LC_MESSAGES/knavalbattle.mo share/locale/ro/LC_MESSAGES/knavalbattle.mo share/locale/ru/LC_MESSAGES/knavalbattle.mo share/locale/sk/LC_MESSAGES/knavalbattle.mo share/locale/sl/LC_MESSAGES/knavalbattle.mo share/locale/sr/LC_MESSAGES/knavalbattle.mo share/locale/sv/LC_MESSAGES/knavalbattle.mo share/locale/tr/LC_MESSAGES/knavalbattle.mo share/locale/ug/LC_MESSAGES/knavalbattle.mo share/locale/uk/LC_MESSAGES/knavalbattle.mo share/locale/zh_CN/LC_MESSAGES/knavalbattle.mo share/locale/zh_TW/LC_MESSAGES/knavalbattle.mo share/metainfo/org.kde.knavalbattle.appdata.xml Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 517111) +++ head/games/knetwalk/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544389 -SHA256 (KDE/applications/19.08.2/knetwalk-19.08.2.tar.xz) = 057b8571f165a716a6cc13ec6489e7b5f9b4c14fa72080180a2098fa0fa028a1 -SIZE (KDE/applications/19.08.2/knetwalk-19.08.2.tar.xz) = 1038336 +TIMESTAMP = 1572930791 +SHA256 (KDE/applications/19.08.3/knetwalk-19.08.3.tar.xz) = ed74cd88364eb263209574655e1cdf77f4776bf339f3313ce20dbf4f950664c4 +SIZE (KDE/applications/19.08.3/knetwalk-19.08.3.tar.xz) = 1038688 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 517111) +++ head/games/knights/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544389 -SHA256 (KDE/applications/19.08.2/knights-19.08.2.tar.xz) = 2b70338d1cb2b770157a5b061a797620d8dd7dd8c6da0bcb7e2a9db375e71a07 -SIZE (KDE/applications/19.08.2/knights-19.08.2.tar.xz) = 3512748 +TIMESTAMP = 1572930792 +SHA256 (KDE/applications/19.08.3/knights-19.08.3.tar.xz) = 1a60de6e31340ecdd3b454d0a90f74f9ab0b81ff9166869d402da77d0acdc93e +SIZE (KDE/applications/19.08.3/knights-19.08.3.tar.xz) = 3515644 Index: head/games/knights/pkg-plist =================================================================== --- head/games/knights/pkg-plist (revision 517111) +++ head/games/knights/pkg-plist (revision 517112) @@ -1,74 +1,75 @@ bin/knights share/qlogging-categories5/knights.categories etc/xdg/knights.knsrc share/applications/org.kde.knights.desktop share/config.kcfg/knights.kcfg share/dbus-1/interfaces/org.kde.Knights.xml share/icons/hicolor/16x16/apps/knights.png share/icons/hicolor/32x32/apps/knights.png share/icons/hicolor/48x48/apps/knights.png share/icons/hicolor/64x64/apps/knights.png %%DATADIR%%/sounds/capture_black.ogg %%DATADIR%%/sounds/capture_white.ogg %%DATADIR%%/sounds/move_black.ogg %%DATADIR%%/sounds/move_white.ogg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/east_west.desktop %%DATADIR%%/themes/east_west.png %%DATADIR%%/themes/east_west.svgz %%DATADIR%%/themes/gray.png %%DATADIR%%/themes/gray.svgz %%DATADIR%%/themes/knights.desktop %%DATADIR%%/themes/knights.png %%DATADIR%%/themes/knights.svgz %%DATADIR%%/themes/plain.desktop %%DATADIR%%/themes/plain.png %%DATADIR%%/themes/plain.svgz %%DATADIR%%/themes/xboard2.desktop %%DATADIR%%/themes/xboard2.png %%DATADIR%%/themes/xboard2.svgz share/kxmlgui5/knights/knightsui.rc share/locale/ar/LC_MESSAGES/knights.mo share/locale/bg/LC_MESSAGES/knights.mo share/locale/bs/LC_MESSAGES/knights.mo share/locale/ca/LC_MESSAGES/knights.mo share/locale/ca@valencia/LC_MESSAGES/knights.mo share/locale/cs/LC_MESSAGES/knights.mo share/locale/da/LC_MESSAGES/knights.mo share/locale/de/LC_MESSAGES/knights.mo share/locale/el/LC_MESSAGES/knights.mo share/locale/en_GB/LC_MESSAGES/knights.mo share/locale/eo/LC_MESSAGES/knights.mo share/locale/es/LC_MESSAGES/knights.mo share/locale/et/LC_MESSAGES/knights.mo share/locale/fa/LC_MESSAGES/knights.mo share/locale/fi/LC_MESSAGES/knights.mo share/locale/fr/LC_MESSAGES/knights.mo share/locale/ga/LC_MESSAGES/knights.mo share/locale/gl/LC_MESSAGES/knights.mo share/locale/hu/LC_MESSAGES/knights.mo +share/locale/id/LC_MESSAGES/knights.mo share/locale/it/LC_MESSAGES/knights.mo share/locale/ja/LC_MESSAGES/knights.mo share/locale/km/LC_MESSAGES/knights.mo share/locale/lt/LC_MESSAGES/knights.mo share/locale/ml/LC_MESSAGES/knights.mo share/locale/mr/LC_MESSAGES/knights.mo share/locale/nb/LC_MESSAGES/knights.mo share/locale/nds/LC_MESSAGES/knights.mo share/locale/nl/LC_MESSAGES/knights.mo share/locale/nn/LC_MESSAGES/knights.mo share/locale/pl/LC_MESSAGES/knights.mo share/locale/pt/LC_MESSAGES/knights.mo share/locale/pt_BR/LC_MESSAGES/knights.mo share/locale/ro/LC_MESSAGES/knights.mo share/locale/ru/LC_MESSAGES/knights.mo share/locale/sk/LC_MESSAGES/knights.mo share/locale/sl/LC_MESSAGES/knights.mo share/locale/sr/LC_MESSAGES/knights.mo share/locale/sv/LC_MESSAGES/knights.mo share/locale/tr/LC_MESSAGES/knights.mo share/locale/ug/LC_MESSAGES/knights.mo share/locale/uk/LC_MESSAGES/knights.mo share/locale/zh_CN/LC_MESSAGES/knights.mo share/locale/zh_TW/LC_MESSAGES/knights.mo share/metainfo/org.kde.knights.appdata.xml Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 517111) +++ head/games/kolf/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544390 -SHA256 (KDE/applications/19.08.2/kolf-19.08.2.tar.xz) = 88b9a58885eda34bf5b349db5e84c20df9beb1462922ed6e973a61bd95d853e8 -SIZE (KDE/applications/19.08.2/kolf-19.08.2.tar.xz) = 1026416 +TIMESTAMP = 1572930793 +SHA256 (KDE/applications/19.08.3/kolf-19.08.3.tar.xz) = 1c864f1abb31b168fd1402217ffc4c00d495f8ebece61ddc1f8c954c29684e1b +SIZE (KDE/applications/19.08.3/kolf-19.08.3.tar.xz) = 1029800 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 517111) +++ head/games/kollision/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544391 -SHA256 (KDE/applications/19.08.2/kollision-19.08.2.tar.xz) = f2e7d851181033ce39d43a038601ca70c608ae9d0cb0e88228512ca1dbd0cf19 -SIZE (KDE/applications/19.08.2/kollision-19.08.2.tar.xz) = 280732 +TIMESTAMP = 1572930794 +SHA256 (KDE/applications/19.08.3/kollision-19.08.3.tar.xz) = 2240563774c22bf0552504a501710e37eb468afcbc4c3313db7779d086cdf8dc +SIZE (KDE/applications/19.08.3/kollision-19.08.3.tar.xz) = 280844 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 517111) +++ head/games/konquest/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544391 -SHA256 (KDE/applications/19.08.2/konquest-19.08.2.tar.xz) = 3dda62a480e37d97aabdc4670a8ac1cf209605ed274c872ee3575ff1ecff6936 -SIZE (KDE/applications/19.08.2/konquest-19.08.2.tar.xz) = 658604 +TIMESTAMP = 1572930794 +SHA256 (KDE/applications/19.08.3/konquest-19.08.3.tar.xz) = 619a834341377475fed24485cf2c3f2ae68f1a8d6cea01b10e0a8408a7eef209 +SIZE (KDE/applications/19.08.3/konquest-19.08.3.tar.xz) = 659172 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 517111) +++ head/games/kpat/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544392 -SHA256 (KDE/applications/19.08.2/kpat-19.08.2.tar.xz) = 6322d86e12996da3d95f6d4afd1d2e70cfd1771698bab393aaf987fd4fe0ef67 -SIZE (KDE/applications/19.08.2/kpat-19.08.2.tar.xz) = 3577248 +TIMESTAMP = 1572930795 +SHA256 (KDE/applications/19.08.3/kpat-19.08.3.tar.xz) = b1414eb0c04396468f40ea84fe71077b98476b4b76c0d3abb95ae4afd49e27a7 +SIZE (KDE/applications/19.08.3/kpat-19.08.3.tar.xz) = 3578320 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 517111) +++ head/games/kreversi/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544393 -SHA256 (KDE/applications/19.08.2/kreversi-19.08.2.tar.xz) = 345c72ad38b9bd759f7569c7c0541c08a2cdad5ab92d08c1db8b6cf8ffaf1ce2 -SIZE (KDE/applications/19.08.2/kreversi-19.08.2.tar.xz) = 943620 +TIMESTAMP = 1572930796 +SHA256 (KDE/applications/19.08.3/kreversi-19.08.3.tar.xz) = 30f15e40e1347c7d746bfdef7dffc0a0a9aecef8a960c875b68fab255c43d82c +SIZE (KDE/applications/19.08.3/kreversi-19.08.3.tar.xz) = 945652 Index: head/games/kreversi/pkg-plist =================================================================== --- head/games/kreversi/pkg-plist (revision 517111) +++ head/games/kreversi/pkg-plist (revision 517112) @@ -1,82 +1,83 @@ bin/kreversi share/applications/org.kde.kreversi.desktop share/icons/hicolor/128x128/apps/kreversi.png share/icons/hicolor/16x16/actions/lastmoves.png share/icons/hicolor/16x16/actions/legalmoves.png share/icons/hicolor/16x16/apps/kreversi.png share/icons/hicolor/22x22/actions/lastmoves.png share/icons/hicolor/22x22/actions/legalmoves.png share/icons/hicolor/22x22/apps/kreversi.png share/icons/hicolor/32x32/actions/lastmoves.png share/icons/hicolor/32x32/actions/legalmoves.png share/icons/hicolor/32x32/apps/kreversi.png share/icons/hicolor/48x48/actions/lastmoves.png share/icons/hicolor/48x48/actions/legalmoves.png share/icons/hicolor/48x48/apps/kreversi.png share/icons/hicolor/64x64/apps/kreversi.png share/icons/hicolor/scalable/actions/lastmoves.svgz share/icons/hicolor/scalable/actions/legalmoves.svgz share/knotifications5/kreversi.notifyrc %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/qml/Board.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/Chip.qml %%DATADIR%%/qml/Popup.qml %%DATADIR%%/qml/Table.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/sounds/reversi-click.wav %%DATADIR%%/sounds/reversi-won.wav share/locale/ar/LC_MESSAGES/kreversi.mo share/locale/bg/LC_MESSAGES/kreversi.mo share/locale/bs/LC_MESSAGES/kreversi.mo share/locale/ca/LC_MESSAGES/kreversi.mo share/locale/ca@valencia/LC_MESSAGES/kreversi.mo share/locale/cs/LC_MESSAGES/kreversi.mo share/locale/da/LC_MESSAGES/kreversi.mo share/locale/de/LC_MESSAGES/kreversi.mo share/locale/el/LC_MESSAGES/kreversi.mo share/locale/en_GB/LC_MESSAGES/kreversi.mo share/locale/eo/LC_MESSAGES/kreversi.mo share/locale/es/LC_MESSAGES/kreversi.mo share/locale/et/LC_MESSAGES/kreversi.mo share/locale/eu/LC_MESSAGES/kreversi.mo share/locale/fa/LC_MESSAGES/kreversi.mo share/locale/fi/LC_MESSAGES/kreversi.mo share/locale/fr/LC_MESSAGES/kreversi.mo share/locale/ga/LC_MESSAGES/kreversi.mo share/locale/gl/LC_MESSAGES/kreversi.mo share/locale/he/LC_MESSAGES/kreversi.mo share/locale/hi/LC_MESSAGES/kreversi.mo share/locale/hr/LC_MESSAGES/kreversi.mo share/locale/hu/LC_MESSAGES/kreversi.mo +share/locale/id/LC_MESSAGES/kreversi.mo share/locale/is/LC_MESSAGES/kreversi.mo share/locale/it/LC_MESSAGES/kreversi.mo share/locale/ja/LC_MESSAGES/kreversi.mo share/locale/kk/LC_MESSAGES/kreversi.mo share/locale/km/LC_MESSAGES/kreversi.mo share/locale/ko/LC_MESSAGES/kreversi.mo share/locale/lt/LC_MESSAGES/kreversi.mo share/locale/lv/LC_MESSAGES/kreversi.mo share/locale/mr/LC_MESSAGES/kreversi.mo share/locale/nb/LC_MESSAGES/kreversi.mo share/locale/nds/LC_MESSAGES/kreversi.mo share/locale/nl/LC_MESSAGES/kreversi.mo share/locale/nn/LC_MESSAGES/kreversi.mo share/locale/pa/LC_MESSAGES/kreversi.mo share/locale/pl/LC_MESSAGES/kreversi.mo share/locale/pt/LC_MESSAGES/kreversi.mo share/locale/pt_BR/LC_MESSAGES/kreversi.mo share/locale/ro/LC_MESSAGES/kreversi.mo share/locale/ru/LC_MESSAGES/kreversi.mo share/locale/sk/LC_MESSAGES/kreversi.mo share/locale/sl/LC_MESSAGES/kreversi.mo share/locale/sr/LC_MESSAGES/kreversi.mo share/locale/sv/LC_MESSAGES/kreversi.mo share/locale/tr/LC_MESSAGES/kreversi.mo share/locale/ug/LC_MESSAGES/kreversi.mo share/locale/uk/LC_MESSAGES/kreversi.mo share/locale/zh_CN/LC_MESSAGES/kreversi.mo share/locale/zh_TW/LC_MESSAGES/kreversi.mo share/metainfo/org.kde.kreversi.appdata.xml Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 517111) +++ head/games/kshisen/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544394 -SHA256 (KDE/applications/19.08.2/kshisen-19.08.2.tar.xz) = 3c18bc546f2dadcff03af2a25b6f468357967560b7fddf916aea2b27d22c2364 -SIZE (KDE/applications/19.08.2/kshisen-19.08.2.tar.xz) = 822960 +TIMESTAMP = 1572930797 +SHA256 (KDE/applications/19.08.3/kshisen-19.08.3.tar.xz) = bae9f0ed77f7b1b33f21a53dc07481665f6acdb9daad71dd550512a710a905af +SIZE (KDE/applications/19.08.3/kshisen-19.08.3.tar.xz) = 821980 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 517111) +++ head/games/ksirk/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544395 -SHA256 (KDE/applications/19.08.2/ksirk-19.08.2.tar.xz) = 6016d929de52d6e03ae1c1ba483e5e505542f16edfbd37c8dfbb9d0913e7f7f8 -SIZE (KDE/applications/19.08.2/ksirk-19.08.2.tar.xz) = 6992192 +TIMESTAMP = 1572930797 +SHA256 (KDE/applications/19.08.3/ksirk-19.08.3.tar.xz) = 8ab94b45767e648341ead545a2b427c94ee0f71c8abbe7dbb6b85c28748f3cac +SIZE (KDE/applications/19.08.3/ksirk-19.08.3.tar.xz) = 6996284 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 517111) +++ head/games/ksnakeduel/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544395 -SHA256 (KDE/applications/19.08.2/ksnakeduel-19.08.2.tar.xz) = bb13aa91d0e75c1099a57606e0ea1f567a3ffe8f4efbf6a94420bd372ff10289 -SIZE (KDE/applications/19.08.2/ksnakeduel-19.08.2.tar.xz) = 605304 +TIMESTAMP = 1572930798 +SHA256 (KDE/applications/19.08.3/ksnakeduel-19.08.3.tar.xz) = d6361ce5a46d6e8ca4b5e674f31017a545245ddb907f33963afba2aeaecdf956 +SIZE (KDE/applications/19.08.3/ksnakeduel-19.08.3.tar.xz) = 604504 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 517111) +++ head/games/kspaceduel/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544396 -SHA256 (KDE/applications/19.08.2/kspaceduel-19.08.2.tar.xz) = 3e2af55afcf78f74ca1fa67ea46da2db4cbc6fd9f522a94d3adb9bed6b518aa8 -SIZE (KDE/applications/19.08.2/kspaceduel-19.08.2.tar.xz) = 611448 +TIMESTAMP = 1572930799 +SHA256 (KDE/applications/19.08.3/kspaceduel-19.08.3.tar.xz) = 88e25bc037034e3a22f4cea71729fc160d25bcefb978da00d3f7681841b4f7c2 +SIZE (KDE/applications/19.08.3/kspaceduel-19.08.3.tar.xz) = 611304 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 517111) +++ head/games/ksquares/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544397 -SHA256 (KDE/applications/19.08.2/ksquares-19.08.2.tar.xz) = f16fa641f02a6462085d291ed8d3262891cdeeeff8bbbde4e0aabfdac3dc7bc9 -SIZE (KDE/applications/19.08.2/ksquares-19.08.2.tar.xz) = 260104 +TIMESTAMP = 1572930800 +SHA256 (KDE/applications/19.08.3/ksquares-19.08.3.tar.xz) = 7e1798e6a306d6ef948035915bdb904ee9efb238dc5a04b4a747185d34856843 +SIZE (KDE/applications/19.08.3/ksquares-19.08.3.tar.xz) = 260604 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 517111) +++ head/games/ksudoku/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544417 -SHA256 (KDE/applications/19.08.2/ksudoku-19.08.2.tar.xz) = 4630117e12c10c2f326a4e55dceed7f19d183b597eadc3d4308aecf5a5455156 -SIZE (KDE/applications/19.08.2/ksudoku-19.08.2.tar.xz) = 1650384 +TIMESTAMP = 1572930821 +SHA256 (KDE/applications/19.08.3/ksudoku-19.08.3.tar.xz) = 82bf07385d131968ffd49a58404984fd506481158097aa063d954618d2679a65 +SIZE (KDE/applications/19.08.3/ksudoku-19.08.3.tar.xz) = 1649140 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 517111) +++ head/games/ktuberling/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544418 -SHA256 (KDE/applications/19.08.2/ktuberling-19.08.2.tar.xz) = e6cfcd7175c7ed081ecd743c2fdd845f88b25d6cb4d46f9e6d58e35eb11c66ad -SIZE (KDE/applications/19.08.2/ktuberling-19.08.2.tar.xz) = 32641376 +TIMESTAMP = 1572930822 +SHA256 (KDE/applications/19.08.3/ktuberling-19.08.3.tar.xz) = 5204b6eee57554e90d542dc4eca45fbbf0246f261fb1c231b53440c90d26aee1 +SIZE (KDE/applications/19.08.3/ktuberling-19.08.3.tar.xz) = 32640240 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 517111) +++ head/games/kubrick/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544439 -SHA256 (KDE/applications/19.08.2/kubrick-19.08.2.tar.xz) = 89c181f8c82db143cd671fe78105e95a229e43fd64cab17ccdb80774b4ca8638 -SIZE (KDE/applications/19.08.2/kubrick-19.08.2.tar.xz) = 312928 +TIMESTAMP = 1572930842 +SHA256 (KDE/applications/19.08.3/kubrick-19.08.3.tar.xz) = fd11e0969ae08e42316044535008511b3fcae7752c7a86b2ae9ae24c94e44855 +SIZE (KDE/applications/19.08.3/kubrick-19.08.3.tar.xz) = 313384 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 517111) +++ head/games/libkdegames/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544440 -SHA256 (KDE/applications/19.08.2/libkdegames-19.08.2.tar.xz) = 83456cec44502a1f79c0be00c983090e32fd8aea5fec1461fbfbd37b5f8866ac -SIZE (KDE/applications/19.08.2/libkdegames-19.08.2.tar.xz) = 6374880 +TIMESTAMP = 1572930843 +SHA256 (KDE/applications/19.08.3/libkdegames-19.08.3.tar.xz) = 019cdc0c702b8c9cacabc36ec2c81951e43ff80dbdfe527cba0dc5f5649dbb89 +SIZE (KDE/applications/19.08.3/libkdegames-19.08.3.tar.xz) = 6387676 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 517111) +++ head/games/libkmahjongg/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544440 -SHA256 (KDE/applications/19.08.2/libkmahjongg-19.08.2.tar.xz) = 8699949fae90c0e92dd046b904b0624f79c37fecaa46557c808f20f24e215947 -SIZE (KDE/applications/19.08.2/libkmahjongg-19.08.2.tar.xz) = 1683252 +TIMESTAMP = 1572930844 +SHA256 (KDE/applications/19.08.3/libkmahjongg-19.08.3.tar.xz) = fd7d036ba3b17246fad42e0366003233c42f5b03df881d6bc6886518c2acb165 +SIZE (KDE/applications/19.08.3/libkmahjongg-19.08.3.tar.xz) = 1685196 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 517111) +++ head/games/lskat/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544441 -SHA256 (KDE/applications/19.08.2/lskat-19.08.2.tar.xz) = 3ae219b92cbc4c9acfacbb16e262e82b03cd5ddba024820e82d8de7312327a9c -SIZE (KDE/applications/19.08.2/lskat-19.08.2.tar.xz) = 1218832 +TIMESTAMP = 1572930845 +SHA256 (KDE/applications/19.08.3/lskat-19.08.3.tar.xz) = 499334ffff57a46973caa4f8571b06ae482bccff9e17dcd9ba82ac7f448365e2 +SIZE (KDE/applications/19.08.3/lskat-19.08.3.tar.xz) = 1219400 Index: head/games/lskat/pkg-plist =================================================================== --- head/games/lskat/pkg-plist (revision 517111) +++ head/games/lskat/pkg-plist (revision 517112) @@ -1,71 +1,72 @@ bin/lskat share/qlogging-categories5/lskat.categories share/applications/org.kde.lskat.desktop share/icons/hicolor/128x128/apps/lskat.png share/icons/hicolor/16x16/apps/lskat.png share/icons/hicolor/22x22/apps/lskat.png share/icons/hicolor/32x32/apps/lskat.png share/icons/hicolor/48x48/apps/lskat.png share/icons/hicolor/64x64/apps/lskat.png share/kxmlgui5/lskat/lskatui.rc share/locale/ar/LC_MESSAGES/lskat.mo share/locale/bg/LC_MESSAGES/lskat.mo share/locale/bs/LC_MESSAGES/lskat.mo share/locale/ca/LC_MESSAGES/lskat.mo share/locale/ca@valencia/LC_MESSAGES/lskat.mo share/locale/cs/LC_MESSAGES/lskat.mo share/locale/da/LC_MESSAGES/lskat.mo share/locale/de/LC_MESSAGES/lskat.mo share/locale/el/LC_MESSAGES/lskat.mo share/locale/en_GB/LC_MESSAGES/lskat.mo share/locale/eo/LC_MESSAGES/lskat.mo share/locale/es/LC_MESSAGES/lskat.mo share/locale/et/LC_MESSAGES/lskat.mo share/locale/eu/LC_MESSAGES/lskat.mo share/locale/fa/LC_MESSAGES/lskat.mo share/locale/fi/LC_MESSAGES/lskat.mo share/locale/fr/LC_MESSAGES/lskat.mo share/locale/ga/LC_MESSAGES/lskat.mo share/locale/gl/LC_MESSAGES/lskat.mo share/locale/he/LC_MESSAGES/lskat.mo share/locale/hi/LC_MESSAGES/lskat.mo share/locale/hr/LC_MESSAGES/lskat.mo share/locale/hu/LC_MESSAGES/lskat.mo +share/locale/id/LC_MESSAGES/lskat.mo share/locale/is/LC_MESSAGES/lskat.mo share/locale/it/LC_MESSAGES/lskat.mo share/locale/ja/LC_MESSAGES/lskat.mo share/locale/kk/LC_MESSAGES/lskat.mo share/locale/km/LC_MESSAGES/lskat.mo share/locale/ko/LC_MESSAGES/lskat.mo share/locale/lt/LC_MESSAGES/lskat.mo share/locale/lv/LC_MESSAGES/lskat.mo share/locale/mr/LC_MESSAGES/lskat.mo share/locale/nb/LC_MESSAGES/lskat.mo share/locale/nds/LC_MESSAGES/lskat.mo share/locale/nl/LC_MESSAGES/lskat.mo share/locale/nn/LC_MESSAGES/lskat.mo share/locale/pa/LC_MESSAGES/lskat.mo share/locale/pl/LC_MESSAGES/lskat.mo share/locale/pt/LC_MESSAGES/lskat.mo share/locale/pt_BR/LC_MESSAGES/lskat.mo share/locale/ro/LC_MESSAGES/lskat.mo share/locale/ru/LC_MESSAGES/lskat.mo share/locale/sk/LC_MESSAGES/lskat.mo share/locale/sl/LC_MESSAGES/lskat.mo share/locale/sr/LC_MESSAGES/lskat.mo share/locale/sv/LC_MESSAGES/lskat.mo share/locale/tr/LC_MESSAGES/lskat.mo share/locale/ug/LC_MESSAGES/lskat.mo share/locale/uk/LC_MESSAGES/lskat.mo share/locale/zh_CN/LC_MESSAGES/lskat.mo share/locale/zh_TW/LC_MESSAGES/lskat.mo %%DATADIR%%/grafix/blue.desktop %%DATADIR%%/grafix/blue.rc %%DATADIR%%/grafix/blue.svg %%DATADIR%%/grafix/egyptian.desktop %%DATADIR%%/grafix/egyptian.rc %%DATADIR%%/grafix/egyptian.svg %%DATADIR%%/grafix/oxygen.desktop %%DATADIR%%/grafix/oxygen.rc %%DATADIR%%/grafix/oxygen.svg share/metainfo/org.kde.lskat.appdata.xml Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 517111) +++ head/games/palapeli/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544442 -SHA256 (KDE/applications/19.08.2/palapeli-19.08.2.tar.xz) = bae810595c7ba7bdac0fa5c27e6c2a3a9bb1bbdae3521cfc036ec0cdcd9ef1a7 -SIZE (KDE/applications/19.08.2/palapeli-19.08.2.tar.xz) = 2068180 +TIMESTAMP = 1572930845 +SHA256 (KDE/applications/19.08.3/palapeli-19.08.3.tar.xz) = fc8e4ddd92def4998a0e8b11bc0a45671e5b07e065313aec135e74c056f321bd +SIZE (KDE/applications/19.08.3/palapeli-19.08.3.tar.xz) = 2069352 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 517111) +++ head/games/picmi/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544442 -SHA256 (KDE/applications/19.08.2/picmi-19.08.2.tar.xz) = ecfa211043327991a0927be852c185223adebe5f15cdc39e79e31022802f904b -SIZE (KDE/applications/19.08.2/picmi-19.08.2.tar.xz) = 1357556 +TIMESTAMP = 1572930846 +SHA256 (KDE/applications/19.08.3/picmi-19.08.3.tar.xz) = 6ed444d40a388e5c1f5f7bda24d35fa119fa5b5ee488def02321f14476bd357d +SIZE (KDE/applications/19.08.3/picmi-19.08.3.tar.xz) = 1358012 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 517111) +++ head/graphics/gwenview/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544463 -SHA256 (KDE/applications/19.08.2/gwenview-19.08.2.tar.xz) = fa49352a208c9472c911d3579f7601fb915831ad42caf74a053ed749bf5bb1fb -SIZE (KDE/applications/19.08.2/gwenview-19.08.2.tar.xz) = 5724040 +TIMESTAMP = 1572930847 +SHA256 (KDE/applications/19.08.3/gwenview-19.08.3.tar.xz) = 7e7ad69eaa7a6b2d0549e94d1dab0d012107c822d66483d54aa8268900820255 +SIZE (KDE/applications/19.08.3/gwenview-19.08.3.tar.xz) = 5723104 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 517111) +++ head/graphics/kamera/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544464 -SHA256 (KDE/applications/19.08.2/kamera-19.08.2.tar.xz) = 2db474afa6201f330631640e04e1bd6ebb96838ce4c16d37617a10063b1fa757 -SIZE (KDE/applications/19.08.2/kamera-19.08.2.tar.xz) = 100056 +TIMESTAMP = 1572930848 +SHA256 (KDE/applications/19.08.3/kamera-19.08.3.tar.xz) = 93a8a3dc6c4927b28a6ee0f09f1709e67f5bc38281b3775390513f2e69086942 +SIZE (KDE/applications/19.08.3/kamera-19.08.3.tar.xz) = 100144 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 517111) +++ head/graphics/kcolorchooser/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544465 -SHA256 (KDE/applications/19.08.2/kcolorchooser-19.08.2.tar.xz) = 4eb50f314b190f1980e73212a45fe86db39f278f789288cd76cb0763f3176edc -SIZE (KDE/applications/19.08.2/kcolorchooser-19.08.2.tar.xz) = 20652 +TIMESTAMP = 1572930849 +SHA256 (KDE/applications/19.08.3/kcolorchooser-19.08.3.tar.xz) = 0c3d45ceb9029f0d316e61b3f403838b4c7de82a3211a231b539e6755386c657 +SIZE (KDE/applications/19.08.3/kcolorchooser-19.08.3.tar.xz) = 20984 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 517111) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544465 -SHA256 (KDE/applications/19.08.2/kdegraphics-mobipocket-19.08.2.tar.xz) = 9621b0b3564ce7fcd6890c15c48e11d00c1cf2d3b408b255ec590bd6d113439f -SIZE (KDE/applications/19.08.2/kdegraphics-mobipocket-19.08.2.tar.xz) = 13452 +TIMESTAMP = 1572930850 +SHA256 (KDE/applications/19.08.3/kdegraphics-mobipocket-19.08.3.tar.xz) = d9ea38255c967dcf0de820e6ad663e721188f5541c18c459e611f6d72ddc8e8f +SIZE (KDE/applications/19.08.3/kdegraphics-mobipocket-19.08.3.tar.xz) = 13496 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 517111) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544466 -SHA256 (KDE/applications/19.08.2/svgpart-19.08.2.tar.xz) = 6c6510b604bba3aebbeca136ec9534c416bc0ba55125227bdd0af2a86052855c -SIZE (KDE/applications/19.08.2/svgpart-19.08.2.tar.xz) = 21228 +TIMESTAMP = 1572930851 +SHA256 (KDE/applications/19.08.3/svgpart-19.08.3.tar.xz) = 1ad667fc6988b64fd379cfb79d00a7c04c97de530e4b61a9ae8a525971ea2a94 +SIZE (KDE/applications/19.08.3/svgpart-19.08.3.tar.xz) = 21264 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 517111) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544467 -SHA256 (KDE/applications/19.08.2/kdegraphics-thumbnailers-19.08.2.tar.xz) = 12e2b096d65c5dfde6d16bc2c35b236343ce02ba1ef1b3b68b11257250da02c8 -SIZE (KDE/applications/19.08.2/kdegraphics-thumbnailers-19.08.2.tar.xz) = 43372 +TIMESTAMP = 1572930851 +SHA256 (KDE/applications/19.08.3/kdegraphics-thumbnailers-19.08.3.tar.xz) = 14d342336e92b3913d46a415da9fcf53d239f0ceb16aed99c1e095641ce6ddb4 +SIZE (KDE/applications/19.08.3/kdegraphics-thumbnailers-19.08.3.tar.xz) = 43564 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 517111) +++ head/graphics/kimagemapeditor/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544467 -SHA256 (KDE/applications/19.08.2/kimagemapeditor-19.08.2.tar.xz) = 3be222d94bad94adf4d589fb98c9556af0f0e6c66106a217ee3b9ab031412597 -SIZE (KDE/applications/19.08.2/kimagemapeditor-19.08.2.tar.xz) = 1070788 +TIMESTAMP = 1572930852 +SHA256 (KDE/applications/19.08.3/kimagemapeditor-19.08.3.tar.xz) = 9c69541c774d15ac02164c52c9e4ba523e76e195231bf6db528fd94407347434 +SIZE (KDE/applications/19.08.3/kimagemapeditor-19.08.3.tar.xz) = 1070468 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 517111) +++ head/graphics/kipi-plugins/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544471 -SHA256 (KDE/applications/19.08.2/kipi-plugins-19.08.2.tar.xz) = 2894f50989a14f7fd4be0035efec3cb14583d2285ff11729605b641af0fed192 -SIZE (KDE/applications/19.08.2/kipi-plugins-19.08.2.tar.xz) = 1628804 +TIMESTAMP = 1572930856 +SHA256 (KDE/applications/19.08.3/kipi-plugins-19.08.3.tar.xz) = f540e517421503b54e906633c71c2f688bb920c5aefe7d05a13d0eeaf0356a9b +SIZE (KDE/applications/19.08.3/kipi-plugins-19.08.3.tar.xz) = 1629776 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 517111) +++ head/graphics/kolourpaint/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544468 -SHA256 (KDE/applications/19.08.2/kolourpaint-19.08.2.tar.xz) = e8bde8d516159ae93dfe56565eea2919d2154606fd1814202f30caf21f659cda -SIZE (KDE/applications/19.08.2/kolourpaint-19.08.2.tar.xz) = 5655368 +TIMESTAMP = 1572930853 +SHA256 (KDE/applications/19.08.3/kolourpaint-19.08.3.tar.xz) = aac61cfc561b4d4759b086508c53c525db6899ae11a2400c4ca701fcb5649c8d +SIZE (KDE/applications/19.08.3/kolourpaint-19.08.3.tar.xz) = 5654752 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 517111) +++ head/graphics/libkdcraw/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544469 -SHA256 (KDE/applications/19.08.2/libkdcraw-19.08.2.tar.xz) = 735ab40633efec394c6265d83f86ad7caf278f63d1dd33cc6edf572da4925fcb -SIZE (KDE/applications/19.08.2/libkdcraw-19.08.2.tar.xz) = 42012 +TIMESTAMP = 1572930854 +SHA256 (KDE/applications/19.08.3/libkdcraw-19.08.3.tar.xz) = 7fe4ade52c2e1e1ec3074fe52ebfc8838193b50791f2f26256f04178015ef87e +SIZE (KDE/applications/19.08.3/libkdcraw-19.08.3.tar.xz) = 42192 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 517111) +++ head/graphics/libkexiv2/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544470 -SHA256 (KDE/applications/19.08.2/libkexiv2-19.08.2.tar.xz) = abdafabe834862e157356f2686ae871f00302d82ae639dbf89030d19ccc54b1b -SIZE (KDE/applications/19.08.2/libkexiv2-19.08.2.tar.xz) = 64436 +TIMESTAMP = 1572930855 +SHA256 (KDE/applications/19.08.3/libkexiv2-19.08.3.tar.xz) = 4c8a1acc4fe6c7105130ac93f5486ddbffb09921a9f34d3af418bd7e1695435e +SIZE (KDE/applications/19.08.3/libkexiv2-19.08.3.tar.xz) = 64520 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 517111) +++ head/graphics/libkipi/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544470 -SHA256 (KDE/applications/19.08.2/libkipi-19.08.2.tar.xz) = fcaf576afb961d9a36c1f69c034c43b9f0991cbd0726ea684c2c49096f36d5c6 -SIZE (KDE/applications/19.08.2/libkipi-19.08.2.tar.xz) = 103288 +TIMESTAMP = 1572930855 +SHA256 (KDE/applications/19.08.3/libkipi-19.08.3.tar.xz) = 4b06a880a66eae18dc3ed7f4b39e877691c21d60af7603c7679ebcac5a0a7d4b +SIZE (KDE/applications/19.08.3/libkipi-19.08.3.tar.xz) = 103468 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 517111) +++ head/graphics/libksane/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544472 -SHA256 (KDE/applications/19.08.2/libksane-19.08.2.tar.xz) = 97e05423f4a9205b9db0bbce5111615d6bf8e8d53a391d3398275babccd91aa0 -SIZE (KDE/applications/19.08.2/libksane-19.08.2.tar.xz) = 138704 +TIMESTAMP = 1572930857 +SHA256 (KDE/applications/19.08.3/libksane-19.08.3.tar.xz) = 97808ced0a0c6800c31fa8e810d2a00a3dbda410ed6691e114173b0412b94f93 +SIZE (KDE/applications/19.08.3/libksane-19.08.3.tar.xz) = 138820 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 517111) +++ head/graphics/okular/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544472 -SHA256 (KDE/applications/19.08.2/okular-19.08.2.tar.xz) = ff3d2eac444a110a611add71c30b0556085f5aaccdd821a80bd070a646c9f6b3 -SIZE (KDE/applications/19.08.2/okular-19.08.2.tar.xz) = 7066232 +TIMESTAMP = 1572930858 +SHA256 (KDE/applications/19.08.3/okular-19.08.3.tar.xz) = cea30fe0c2c2b8394e76efe5c945eab1cc9619097291bd9236794b42b09523e5 +SIZE (KDE/applications/19.08.3/okular-19.08.3.tar.xz) = 7068828 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 517111) +++ head/graphics/spectacle/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544493 -SHA256 (KDE/applications/19.08.2/spectacle-19.08.2.tar.xz) = 4cf2f0903cec2787a03a8bbdbd219acc29ac412f352a4ff94ef50ae9a6eb459e -SIZE (KDE/applications/19.08.2/spectacle-19.08.2.tar.xz) = 965432 +TIMESTAMP = 1572930858 +SHA256 (KDE/applications/19.08.3/spectacle-19.08.3.tar.xz) = 3717b7ebd314cac47c263c304c54c14b0115b15cfa4b87201f5ea27a2f4e9b8a +SIZE (KDE/applications/19.08.3/spectacle-19.08.3.tar.xz) = 966512 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 517111) +++ head/japanese/kiten/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544494 -SHA256 (KDE/applications/19.08.2/kiten-19.08.2.tar.xz) = e35552dd49507c66574ae7fc22fe75597a954044a09522652cc1e457d3425edc -SIZE (KDE/applications/19.08.2/kiten-19.08.2.tar.xz) = 11287752 +TIMESTAMP = 1572930859 +SHA256 (KDE/applications/19.08.3/kiten-19.08.3.tar.xz) = 6759463f195c50bdcdb2378a8142d1e00a1cea05b769d95a69d2cfdeb1864601 +SIZE (KDE/applications/19.08.3/kiten-19.08.3.tar.xz) = 11279532 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 517111) +++ head/lang/kross-interpreters/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544495 -SHA256 (KDE/applications/19.08.2/kross-interpreters-19.08.2.tar.xz) = e0c63d73441c08c1b5b6627e9c02172c72f079ac0baeb596849a49ad38f8723c -SIZE (KDE/applications/19.08.2/kross-interpreters-19.08.2.tar.xz) = 151460 +TIMESTAMP = 1572930860 +SHA256 (KDE/applications/19.08.3/kross-interpreters-19.08.3.tar.xz) = 525527db9e471a062c15b9b22b715dad2e164fb1b19580fc5b963cc7269ce5b5 +SIZE (KDE/applications/19.08.3/kross-interpreters-19.08.3.tar.xz) = 151832 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 517111) +++ head/lang/kturtle/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544495 -SHA256 (KDE/applications/19.08.2/kturtle-19.08.2.tar.xz) = 1f1245c444aba511aea0630f80953171dd11334f55f6b9547a844e25293cf833 -SIZE (KDE/applications/19.08.2/kturtle-19.08.2.tar.xz) = 1827044 +TIMESTAMP = 1572930861 +SHA256 (KDE/applications/19.08.3/kturtle-19.08.3.tar.xz) = a622b22ea3b98666dbd32f6f6db2093b7f3859be52515b3bedc72684ef7780e7 +SIZE (KDE/applications/19.08.3/kturtle-19.08.3.tar.xz) = 1829196 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 517111) +++ head/math/analitza/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544516 -SHA256 (KDE/applications/19.08.2/analitza-19.08.2.tar.xz) = cbd51fd14d5ba74a7a3590ddca18ed688cbf724cd40f21c87b905f12fadf9399 -SIZE (KDE/applications/19.08.2/analitza-19.08.2.tar.xz) = 333044 +TIMESTAMP = 1572930882 +SHA256 (KDE/applications/19.08.3/analitza-19.08.3.tar.xz) = 9247172f3ffbc0fd3308b4b40f5d76eaa2a5012dc49525c3087caf5cdfc1513e +SIZE (KDE/applications/19.08.3/analitza-19.08.3.tar.xz) = 332648 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 517111) +++ head/math/cantor/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544517 -SHA256 (KDE/applications/19.08.2/cantor-19.08.2.tar.xz) = 039bb1e61b996ab3776502db9367ed1f7fb7e674292647f1b28f5bd9b1c1b9cb -SIZE (KDE/applications/19.08.2/cantor-19.08.2.tar.xz) = 2541240 +TIMESTAMP = 1572930882 +SHA256 (KDE/applications/19.08.3/cantor-19.08.3.tar.xz) = 5b0f0b0b3990c83a927d2545baa9596119025dbf25242a9d46b1c76a26fcbfe5 +SIZE (KDE/applications/19.08.3/cantor-19.08.3.tar.xz) = 2538816 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 517111) +++ head/math/kalgebra/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544538 -SHA256 (KDE/applications/19.08.2/kalgebra-19.08.2.tar.xz) = 351a0df1bf637b14683d1a38d8f1eff0153596c5f93723f28f799aead6ee0757 -SIZE (KDE/applications/19.08.2/kalgebra-19.08.2.tar.xz) = 1157584 +TIMESTAMP = 1572930903 +SHA256 (KDE/applications/19.08.3/kalgebra-19.08.3.tar.xz) = 7832584a161c2f611ce980ad98932533c998d37e6e4e2b7afbd0b4e98ce88a65 +SIZE (KDE/applications/19.08.3/kalgebra-19.08.3.tar.xz) = 1157236 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 517111) +++ head/math/kbruch/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544539 -SHA256 (KDE/applications/19.08.2/kbruch-19.08.2.tar.xz) = a2cead23cab880b21769e41086505b50de659630860d056b6a8504caafd4dcf0 -SIZE (KDE/applications/19.08.2/kbruch-19.08.2.tar.xz) = 5603772 +TIMESTAMP = 1572930904 +SHA256 (KDE/applications/19.08.3/kbruch-19.08.3.tar.xz) = 9674aba5a6683e418ed03cc011e3817eb28418538dd9200a808f9813e5112dfc +SIZE (KDE/applications/19.08.3/kbruch-19.08.3.tar.xz) = 5602756 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 517111) +++ head/math/kcalc/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544539 -SHA256 (KDE/applications/19.08.2/kcalc-19.08.2.tar.xz) = 94a6d004266813449b6b9efbe0e3b0da3e5368059134668277a344a720f65fd9 -SIZE (KDE/applications/19.08.2/kcalc-19.08.2.tar.xz) = 372572 +TIMESTAMP = 1572930905 +SHA256 (KDE/applications/19.08.3/kcalc-19.08.3.tar.xz) = 7c61d96bcd45621d021ae8a56224dcf81999cb14ab7b1d7976a47eee2be25d2e +SIZE (KDE/applications/19.08.3/kcalc-19.08.3.tar.xz) = 372080 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 517111) +++ head/math/kig/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544540 -SHA256 (KDE/applications/19.08.2/kig-19.08.2.tar.xz) = 60bab2ccdf69df8ebaed672dc9201e468563d78761f191c43ee5673f9a54246a -SIZE (KDE/applications/19.08.2/kig-19.08.2.tar.xz) = 3501052 +TIMESTAMP = 1572930906 +SHA256 (KDE/applications/19.08.3/kig-19.08.3.tar.xz) = 69dacdbb10bcefe43e5141b0b33b51ca4704f5a5b933e194a4891be92affd21c +SIZE (KDE/applications/19.08.3/kig-19.08.3.tar.xz) = 3497128 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 517111) +++ head/math/kmplot/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544541 -SHA256 (KDE/applications/19.08.2/kmplot-19.08.2.tar.xz) = 62017429db210c5b8f99301a6768a6eb10becd0f1f6af6d886a539657d8518a0 -SIZE (KDE/applications/19.08.2/kmplot-19.08.2.tar.xz) = 3054008 +TIMESTAMP = 1572930907 +SHA256 (KDE/applications/19.08.3/kmplot-19.08.3.tar.xz) = 777408873baa5d6ce236d71bc2935a89fa414fb9f59049ba6e1ae88d581f580e +SIZE (KDE/applications/19.08.3/kmplot-19.08.3.tar.xz) = 3054096 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 517111) +++ head/math/rocs/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544542 -SHA256 (KDE/applications/19.08.2/rocs-19.08.2.tar.xz) = 4e61226334f79a260f0ccc7789a099a91c7643d9fdfcdd052b002f2fe6f64885 -SIZE (KDE/applications/19.08.2/rocs-19.08.2.tar.xz) = 1516448 +TIMESTAMP = 1572930908 +SHA256 (KDE/applications/19.08.3/rocs-19.08.3.tar.xz) = 533ab2f17160c402550479d7d3be9132b49e1d745c021c7735f0687d12236c8e +SIZE (KDE/applications/19.08.3/rocs-19.08.3.tar.xz) = 1518032 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 517111) +++ head/misc/artikulate/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544542 -SHA256 (KDE/applications/19.08.2/artikulate-19.08.2.tar.xz) = b2b0778f18f04096b84caf72c28dd4bdfdbbc8f0a22ef118b8d18dba19a3f85b -SIZE (KDE/applications/19.08.2/artikulate-19.08.2.tar.xz) = 3996424 +TIMESTAMP = 1572930909 +SHA256 (KDE/applications/19.08.3/artikulate-19.08.3.tar.xz) = 99831d51bf8cb4032ba9af7c4ae0712f7b3668b7c51bce8f942808c1e5e42f85 +SIZE (KDE/applications/19.08.3/artikulate-19.08.3.tar.xz) = 3998692 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 517111) +++ head/misc/kdeedu-data/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544543 -SHA256 (KDE/applications/19.08.2/kdeedu-data-19.08.2.tar.xz) = 0ead96a7a10ecbf98c88464f9987e7d8e2efdf7879782e5262b5cda694f3e343 -SIZE (KDE/applications/19.08.2/kdeedu-data-19.08.2.tar.xz) = 328172 +TIMESTAMP = 1572930909 +SHA256 (KDE/applications/19.08.3/kdeedu-data-19.08.3.tar.xz) = dfdbe10415247bdd1b6926f6fcea943d13c6e0a1ab1a562aac6e0b7109420286 +SIZE (KDE/applications/19.08.3/kdeedu-data-19.08.3.tar.xz) = 326784 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 517111) +++ head/misc/kgeography/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544544 -SHA256 (KDE/applications/19.08.2/kgeography-19.08.2.tar.xz) = ca535319e5dd3938e572d9d4f4a216a29a5435546742bb6616d2a716f1a1dfcc -SIZE (KDE/applications/19.08.2/kgeography-19.08.2.tar.xz) = 10892332 +TIMESTAMP = 1572930910 +SHA256 (KDE/applications/19.08.3/kgeography-19.08.3.tar.xz) = 1f2969db9ed5b9cc3d56a8cc12fa24cdace473edcd05baaf3c7b460fa7b2da8c +SIZE (KDE/applications/19.08.3/kgeography-19.08.3.tar.xz) = 10888780 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 517111) +++ head/misc/klettres/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544545 -SHA256 (KDE/applications/19.08.2/klettres-19.08.2.tar.xz) = 919fc2b5d722bfdd741f0b1202f31c9aefc5d240ceb88ab785c2acd98a1b8284 -SIZE (KDE/applications/19.08.2/klettres-19.08.2.tar.xz) = 40136900 +TIMESTAMP = 1572930911 +SHA256 (KDE/applications/19.08.3/klettres-19.08.3.tar.xz) = 205ed817469a72caaf73683c618fcd0800176038345e46555c4c78d644b3a1bf +SIZE (KDE/applications/19.08.3/klettres-19.08.3.tar.xz) = 40135784 Index: head/misc/klettres/pkg-plist =================================================================== --- head/misc/klettres/pkg-plist (revision 517111) +++ head/misc/klettres/pkg-plist (revision 517112) @@ -1,1911 +1,1912 @@ bin/klettres share/qlogging-categories5/klettres.categories etc/xdg/klettres.knsrc share/applications/org.kde.klettres.desktop share/config.kcfg/klettres.kcfg share/icons/hicolor/128x128/apps/klettres.png share/icons/hicolor/16x16/apps/klettres.png share/icons/hicolor/22x22/apps/klettres.png share/icons/hicolor/32x32/apps/klettres.png share/icons/hicolor/48x48/apps/klettres.png share/icons/hicolor/64x64/apps/klettres.png %%DATADIR%%/ar/alpha/a-01.ogg %%DATADIR%%/ar/alpha/a-02.ogg %%DATADIR%%/ar/alpha/a-03.ogg %%DATADIR%%/ar/alpha/a-04.ogg %%DATADIR%%/ar/alpha/a-05.ogg %%DATADIR%%/ar/alpha/a-06.ogg %%DATADIR%%/ar/alpha/a-07.ogg %%DATADIR%%/ar/alpha/a-08.ogg %%DATADIR%%/ar/alpha/a-09.ogg %%DATADIR%%/ar/alpha/a-10.ogg %%DATADIR%%/ar/alpha/a-11.ogg %%DATADIR%%/ar/alpha/a-12.ogg %%DATADIR%%/ar/alpha/a-13.ogg %%DATADIR%%/ar/alpha/a-14.ogg %%DATADIR%%/ar/alpha/a-15.ogg %%DATADIR%%/ar/alpha/a-16.ogg %%DATADIR%%/ar/alpha/a-17.ogg %%DATADIR%%/ar/alpha/a-18.ogg %%DATADIR%%/ar/alpha/a-19.ogg %%DATADIR%%/ar/alpha/a-20.ogg %%DATADIR%%/ar/alpha/a-21.ogg %%DATADIR%%/ar/alpha/a-22.ogg %%DATADIR%%/ar/alpha/a-23.ogg %%DATADIR%%/ar/alpha/a-24.ogg %%DATADIR%%/ar/alpha/a-25.ogg %%DATADIR%%/ar/alpha/a-26.ogg %%DATADIR%%/ar/alpha/a-27.ogg %%DATADIR%%/ar/alpha/a-28.ogg %%DATADIR%%/ar/sounds.xml %%DATADIR%%/cs.txt %%DATADIR%%/cs/alpha/a-0.ogg %%DATADIR%%/cs/alpha/a-1.ogg %%DATADIR%%/cs/alpha/a-10.ogg %%DATADIR%%/cs/alpha/a-11.ogg %%DATADIR%%/cs/alpha/a-12.ogg %%DATADIR%%/cs/alpha/a-13.ogg %%DATADIR%%/cs/alpha/a-14.ogg %%DATADIR%%/cs/alpha/a-15.ogg %%DATADIR%%/cs/alpha/a-16.ogg %%DATADIR%%/cs/alpha/a-17.ogg %%DATADIR%%/cs/alpha/a-18.ogg %%DATADIR%%/cs/alpha/a-19.ogg %%DATADIR%%/cs/alpha/a-2.ogg %%DATADIR%%/cs/alpha/a-20.ogg %%DATADIR%%/cs/alpha/a-21.ogg %%DATADIR%%/cs/alpha/a-22.ogg %%DATADIR%%/cs/alpha/a-23.ogg %%DATADIR%%/cs/alpha/a-24.ogg %%DATADIR%%/cs/alpha/a-25.ogg %%DATADIR%%/cs/alpha/a-26.ogg %%DATADIR%%/cs/alpha/a-27.ogg %%DATADIR%%/cs/alpha/a-28.ogg %%DATADIR%%/cs/alpha/a-29.ogg %%DATADIR%%/cs/alpha/a-3.ogg %%DATADIR%%/cs/alpha/a-30.ogg %%DATADIR%%/cs/alpha/a-31.ogg %%DATADIR%%/cs/alpha/a-4.ogg %%DATADIR%%/cs/alpha/a-5.ogg %%DATADIR%%/cs/alpha/a-6.ogg %%DATADIR%%/cs/alpha/a-7.ogg %%DATADIR%%/cs/alpha/a-8.ogg %%DATADIR%%/cs/alpha/a-9.ogg %%DATADIR%%/cs/sounds.xml %%DATADIR%%/cs/syllab/ad-0.ogg %%DATADIR%%/cs/syllab/ad-1.ogg %%DATADIR%%/cs/syllab/ad-10.ogg %%DATADIR%%/cs/syllab/ad-11.ogg %%DATADIR%%/cs/syllab/ad-12.ogg %%DATADIR%%/cs/syllab/ad-13.ogg %%DATADIR%%/cs/syllab/ad-14.ogg %%DATADIR%%/cs/syllab/ad-15.ogg %%DATADIR%%/cs/syllab/ad-16.ogg %%DATADIR%%/cs/syllab/ad-17.ogg %%DATADIR%%/cs/syllab/ad-2.ogg %%DATADIR%%/cs/syllab/ad-3.ogg %%DATADIR%%/cs/syllab/ad-4.ogg %%DATADIR%%/cs/syllab/ad-5.ogg %%DATADIR%%/cs/syllab/ad-6.ogg %%DATADIR%%/cs/syllab/ad-7.ogg %%DATADIR%%/cs/syllab/ad-8.ogg %%DATADIR%%/cs/syllab/ad-9.ogg %%DATADIR%%/da.txt %%DATADIR%%/da/alpha/a-0.ogg %%DATADIR%%/da/alpha/a-1.ogg %%DATADIR%%/da/alpha/a-10.ogg %%DATADIR%%/da/alpha/a-11.ogg %%DATADIR%%/da/alpha/a-12.ogg %%DATADIR%%/da/alpha/a-13.ogg %%DATADIR%%/da/alpha/a-14.ogg %%DATADIR%%/da/alpha/a-15.ogg %%DATADIR%%/da/alpha/a-16.ogg %%DATADIR%%/da/alpha/a-17.ogg %%DATADIR%%/da/alpha/a-18.ogg %%DATADIR%%/da/alpha/a-19.ogg %%DATADIR%%/da/alpha/a-2.ogg %%DATADIR%%/da/alpha/a-20.ogg %%DATADIR%%/da/alpha/a-21.ogg %%DATADIR%%/da/alpha/a-22.ogg %%DATADIR%%/da/alpha/a-23.ogg %%DATADIR%%/da/alpha/a-24.ogg %%DATADIR%%/da/alpha/a-25.ogg %%DATADIR%%/da/alpha/a-26.ogg %%DATADIR%%/da/alpha/a-27.ogg %%DATADIR%%/da/alpha/a-28.ogg %%DATADIR%%/da/alpha/a-3.ogg %%DATADIR%%/da/alpha/a-4.ogg %%DATADIR%%/da/alpha/a-5.ogg %%DATADIR%%/da/alpha/a-6.ogg %%DATADIR%%/da/alpha/a-7.ogg %%DATADIR%%/da/alpha/a-8.ogg %%DATADIR%%/da/alpha/a-9.ogg %%DATADIR%%/da/sounds.xml %%DATADIR%%/da/syllab/ad-0.ogg %%DATADIR%%/da/syllab/ad-1.ogg %%DATADIR%%/da/syllab/ad-10.ogg %%DATADIR%%/da/syllab/ad-11.ogg %%DATADIR%%/da/syllab/ad-12.ogg %%DATADIR%%/da/syllab/ad-13.ogg %%DATADIR%%/da/syllab/ad-14.ogg %%DATADIR%%/da/syllab/ad-15.ogg %%DATADIR%%/da/syllab/ad-16.ogg %%DATADIR%%/da/syllab/ad-17.ogg %%DATADIR%%/da/syllab/ad-18.ogg %%DATADIR%%/da/syllab/ad-19.ogg %%DATADIR%%/da/syllab/ad-2.ogg %%DATADIR%%/da/syllab/ad-20.ogg %%DATADIR%%/da/syllab/ad-21.ogg %%DATADIR%%/da/syllab/ad-22.ogg %%DATADIR%%/da/syllab/ad-23.ogg %%DATADIR%%/da/syllab/ad-24.ogg %%DATADIR%%/da/syllab/ad-25.ogg %%DATADIR%%/da/syllab/ad-26.ogg %%DATADIR%%/da/syllab/ad-27.ogg %%DATADIR%%/da/syllab/ad-3.ogg %%DATADIR%%/da/syllab/ad-4.ogg %%DATADIR%%/da/syllab/ad-5.ogg %%DATADIR%%/da/syllab/ad-6.ogg %%DATADIR%%/da/syllab/ad-7.ogg %%DATADIR%%/da/syllab/ad-8.ogg %%DATADIR%%/da/syllab/ad-9.ogg %%DATADIR%%/data/sounds.xml %%DATADIR%%/de.txt %%DATADIR%%/de/alpha/a.ogg %%DATADIR%%/de/alpha/ae.ogg %%DATADIR%%/de/alpha/b.ogg %%DATADIR%%/de/alpha/c.ogg %%DATADIR%%/de/alpha/d.ogg %%DATADIR%%/de/alpha/e.ogg %%DATADIR%%/de/alpha/f.ogg %%DATADIR%%/de/alpha/g.ogg %%DATADIR%%/de/alpha/h.ogg %%DATADIR%%/de/alpha/i.ogg %%DATADIR%%/de/alpha/j.ogg %%DATADIR%%/de/alpha/k.ogg %%DATADIR%%/de/alpha/l.ogg %%DATADIR%%/de/alpha/m.ogg %%DATADIR%%/de/alpha/n.ogg %%DATADIR%%/de/alpha/o.ogg %%DATADIR%%/de/alpha/oe.ogg %%DATADIR%%/de/alpha/p.ogg %%DATADIR%%/de/alpha/q.ogg %%DATADIR%%/de/alpha/r.ogg %%DATADIR%%/de/alpha/s.ogg %%DATADIR%%/de/alpha/sz.ogg %%DATADIR%%/de/alpha/t.ogg %%DATADIR%%/de/alpha/u.ogg %%DATADIR%%/de/alpha/ue.ogg %%DATADIR%%/de/alpha/v.ogg %%DATADIR%%/de/alpha/w.ogg %%DATADIR%%/de/alpha/x.ogg %%DATADIR%%/de/alpha/y.ogg %%DATADIR%%/de/alpha/z.ogg %%DATADIR%%/de/sounds.xml %%DATADIR%%/de/syllab/affe.ogg %%DATADIR%%/de/syllab/auch.ogg %%DATADIR%%/de/syllab/baer.ogg %%DATADIR%%/de/syllab/bus.ogg %%DATADIR%%/de/syllab/dem.ogg %%DATADIR%%/de/syllab/die.ogg %%DATADIR%%/de/syllab/dir.ogg %%DATADIR%%/de/syllab/ein.ogg %%DATADIR%%/de/syllab/eule.ogg %%DATADIR%%/de/syllab/fisch.ogg %%DATADIR%%/de/syllab/frau.ogg %%DATADIR%%/de/syllab/fusz.ogg %%DATADIR%%/de/syllab/gut.ogg %%DATADIR%%/de/syllab/haus.ogg %%DATADIR%%/de/syllab/heu.ogg %%DATADIR%%/de/syllab/hund.ogg %%DATADIR%%/de/syllab/ist.ogg %%DATADIR%%/de/syllab/ja.ogg %%DATADIR%%/de/syllab/kind.ogg %%DATADIR%%/de/syllab/lisa.ogg %%DATADIR%%/de/syllab/nase.ogg %%DATADIR%%/de/syllab/oel.ogg %%DATADIR%%/de/syllab/opa.ogg %%DATADIR%%/de/syllab/pute.ogg %%DATADIR%%/de/syllab/reh.ogg %%DATADIR%%/de/syllab/rot.ogg %%DATADIR%%/de/syllab/sein.ogg %%DATADIR%%/de/syllab/sitz.ogg %%DATADIR%%/de/syllab/tuer.ogg %%DATADIR%%/de/syllab/vor.ogg %%DATADIR%%/de/syllab/was.ogg %%DATADIR%%/de/syllab/will.ogg %%DATADIR%%/de/syllab/wo.ogg %%DATADIR%%/de/syllab/zu.ogg %%DATADIR%%/en/alpha/A.ogg %%DATADIR%%/en/alpha/B.ogg %%DATADIR%%/en/alpha/C.ogg %%DATADIR%%/en/alpha/D.ogg %%DATADIR%%/en/alpha/E.ogg %%DATADIR%%/en/alpha/F.ogg %%DATADIR%%/en/alpha/G.ogg %%DATADIR%%/en/alpha/H.ogg %%DATADIR%%/en/alpha/I.ogg %%DATADIR%%/en/alpha/J.ogg %%DATADIR%%/en/alpha/K.ogg %%DATADIR%%/en/alpha/L.ogg %%DATADIR%%/en/alpha/M.ogg %%DATADIR%%/en/alpha/N.ogg %%DATADIR%%/en/alpha/O.ogg %%DATADIR%%/en/alpha/P.ogg %%DATADIR%%/en/alpha/Q.ogg %%DATADIR%%/en/alpha/R.ogg %%DATADIR%%/en/alpha/S.ogg %%DATADIR%%/en/alpha/T.ogg %%DATADIR%%/en/alpha/U.ogg %%DATADIR%%/en/alpha/V.ogg %%DATADIR%%/en/alpha/W.ogg %%DATADIR%%/en/alpha/X.ogg %%DATADIR%%/en/alpha/Y.ogg %%DATADIR%%/en/alpha/Z.ogg %%DATADIR%%/en/sounds.xml %%DATADIR%%/en/syllab/aw.ogg %%DATADIR%%/en/syllab/car.ogg %%DATADIR%%/en/syllab/ch.ogg %%DATADIR%%/en/syllab/dog.ogg %%DATADIR%%/en/syllab/fix.ogg %%DATADIR%%/en/syllab/gas.ogg %%DATADIR%%/en/syllab/gem.ogg %%DATADIR%%/en/syllab/hot.ogg %%DATADIR%%/en/syllab/jet.ogg %%DATADIR%%/en/syllab/key.ogg %%DATADIR%%/en/syllab/me.ogg %%DATADIR%%/en/syllab/my.ogg %%DATADIR%%/en/syllab/no.ogg %%DATADIR%%/en/syllab/pet.ogg %%DATADIR%%/en/syllab/saw.ogg %%DATADIR%%/en/syllab/say.ogg %%DATADIR%%/en/syllab/sit.ogg %%DATADIR%%/en/syllab/sky.ogg %%DATADIR%%/en/syllab/th.ogg %%DATADIR%%/en_GB/alpha/a.ogg %%DATADIR%%/en_GB/alpha/b.ogg %%DATADIR%%/en_GB/alpha/c.ogg %%DATADIR%%/en_GB/alpha/d.ogg %%DATADIR%%/en_GB/alpha/e.ogg %%DATADIR%%/en_GB/alpha/f.ogg %%DATADIR%%/en_GB/alpha/g.ogg %%DATADIR%%/en_GB/alpha/h.ogg %%DATADIR%%/en_GB/alpha/i.ogg %%DATADIR%%/en_GB/alpha/j.ogg %%DATADIR%%/en_GB/alpha/k.ogg %%DATADIR%%/en_GB/alpha/l.ogg %%DATADIR%%/en_GB/alpha/m.ogg %%DATADIR%%/en_GB/alpha/n.ogg %%DATADIR%%/en_GB/alpha/o.ogg %%DATADIR%%/en_GB/alpha/p.ogg %%DATADIR%%/en_GB/alpha/q.ogg %%DATADIR%%/en_GB/alpha/r.ogg %%DATADIR%%/en_GB/alpha/s.ogg %%DATADIR%%/en_GB/alpha/t.ogg %%DATADIR%%/en_GB/alpha/u.ogg %%DATADIR%%/en_GB/alpha/v.ogg %%DATADIR%%/en_GB/alpha/w.ogg %%DATADIR%%/en_GB/alpha/x.ogg %%DATADIR%%/en_GB/alpha/y.ogg %%DATADIR%%/en_GB/alpha/z.ogg %%DATADIR%%/en_GB/sounds.xml %%DATADIR%%/en_GB/syllab/arm.ogg %%DATADIR%%/en_GB/syllab/ball.ogg %%DATADIR%%/en_GB/syllab/car.ogg %%DATADIR%%/en_GB/syllab/dog.ogg %%DATADIR%%/en_GB/syllab/ear.ogg %%DATADIR%%/en_GB/syllab/fix.ogg %%DATADIR%%/en_GB/syllab/gas.ogg %%DATADIR%%/en_GB/syllab/gem.ogg %%DATADIR%%/en_GB/syllab/hot.ogg %%DATADIR%%/en_GB/syllab/hut.ogg %%DATADIR%%/en_GB/syllab/jet.ogg %%DATADIR%%/en_GB/syllab/key.ogg %%DATADIR%%/en_GB/syllab/me.ogg %%DATADIR%%/en_GB/syllab/my.ogg %%DATADIR%%/en_GB/syllab/no.ogg %%DATADIR%%/en_GB/syllab/or.ogg %%DATADIR%%/en_GB/syllab/pet.ogg %%DATADIR%%/en_GB/syllab/saw.ogg %%DATADIR%%/en_GB/syllab/say.ogg %%DATADIR%%/en_GB/syllab/sit.ogg %%DATADIR%%/en_GB/syllab/sky.ogg %%DATADIR%%/en_GB/syllab/the.ogg %%DATADIR%%/en_GB/syllab/well.ogg %%DATADIR%%/es.txt %%DATADIR%%/es/alpha/a.ogg %%DATADIR%%/es/alpha/b.ogg %%DATADIR%%/es/alpha/c.ogg %%DATADIR%%/es/alpha/d.ogg %%DATADIR%%/es/alpha/e.ogg %%DATADIR%%/es/alpha/f.ogg %%DATADIR%%/es/alpha/g.ogg %%DATADIR%%/es/alpha/h.ogg %%DATADIR%%/es/alpha/i.ogg %%DATADIR%%/es/alpha/j.ogg %%DATADIR%%/es/alpha/k.ogg %%DATADIR%%/es/alpha/l.ogg %%DATADIR%%/es/alpha/m.ogg %%DATADIR%%/es/alpha/n.ogg %%DATADIR%%/es/alpha/nn.ogg %%DATADIR%%/es/alpha/o.ogg %%DATADIR%%/es/alpha/p.ogg %%DATADIR%%/es/alpha/q.ogg %%DATADIR%%/es/alpha/r.ogg %%DATADIR%%/es/alpha/s.ogg %%DATADIR%%/es/alpha/t.ogg %%DATADIR%%/es/alpha/u.ogg %%DATADIR%%/es/alpha/v.ogg %%DATADIR%%/es/alpha/w.ogg %%DATADIR%%/es/alpha/x.ogg %%DATADIR%%/es/alpha/y.ogg %%DATADIR%%/es/alpha/z.ogg %%DATADIR%%/es/sounds.xml %%DATADIR%%/es/syllab/ba.ogg %%DATADIR%%/es/syllab/be.ogg %%DATADIR%%/es/syllab/bi.ogg %%DATADIR%%/es/syllab/bo.ogg %%DATADIR%%/es/syllab/bu.ogg %%DATADIR%%/es/syllab/ca.ogg %%DATADIR%%/es/syllab/ce.ogg %%DATADIR%%/es/syllab/ci.ogg %%DATADIR%%/es/syllab/co.ogg %%DATADIR%%/es/syllab/cu.ogg %%DATADIR%%/es/syllab/da.ogg %%DATADIR%%/es/syllab/de.ogg %%DATADIR%%/es/syllab/di.ogg %%DATADIR%%/es/syllab/do.ogg %%DATADIR%%/es/syllab/du.ogg %%DATADIR%%/es/syllab/fa.ogg %%DATADIR%%/es/syllab/fe.ogg %%DATADIR%%/es/syllab/fi.ogg %%DATADIR%%/es/syllab/fo.ogg %%DATADIR%%/es/syllab/fu.ogg %%DATADIR%%/es/syllab/ga.ogg %%DATADIR%%/es/syllab/ge.ogg %%DATADIR%%/es/syllab/gi.ogg %%DATADIR%%/es/syllab/go.ogg %%DATADIR%%/es/syllab/gu.ogg %%DATADIR%%/es/syllab/gue.ogg %%DATADIR%%/es/syllab/gui.ogg %%DATADIR%%/es/syllab/guue.ogg %%DATADIR%%/es/syllab/guui.ogg %%DATADIR%%/es/syllab/ha.ogg %%DATADIR%%/es/syllab/he.ogg %%DATADIR%%/es/syllab/hi.ogg %%DATADIR%%/es/syllab/ho.ogg %%DATADIR%%/es/syllab/hu.ogg %%DATADIR%%/es/syllab/ja.ogg %%DATADIR%%/es/syllab/je.ogg %%DATADIR%%/es/syllab/ji.ogg %%DATADIR%%/es/syllab/jo.ogg %%DATADIR%%/es/syllab/ju.ogg %%DATADIR%%/es/syllab/ka.ogg %%DATADIR%%/es/syllab/ke.ogg %%DATADIR%%/es/syllab/ki.ogg %%DATADIR%%/es/syllab/ko.ogg %%DATADIR%%/es/syllab/ku.ogg %%DATADIR%%/es/syllab/la.ogg %%DATADIR%%/es/syllab/le.ogg %%DATADIR%%/es/syllab/li.ogg %%DATADIR%%/es/syllab/ll.ogg %%DATADIR%%/es/syllab/lla.ogg %%DATADIR%%/es/syllab/lle.ogg %%DATADIR%%/es/syllab/lli.ogg %%DATADIR%%/es/syllab/llo.ogg %%DATADIR%%/es/syllab/llu.ogg %%DATADIR%%/es/syllab/lo.ogg %%DATADIR%%/es/syllab/lu.ogg %%DATADIR%%/es/syllab/ma.ogg %%DATADIR%%/es/syllab/me.ogg %%DATADIR%%/es/syllab/mi.ogg %%DATADIR%%/es/syllab/mo.ogg %%DATADIR%%/es/syllab/mu.ogg %%DATADIR%%/es/syllab/na.ogg %%DATADIR%%/es/syllab/ne.ogg %%DATADIR%%/es/syllab/ni.ogg %%DATADIR%%/es/syllab/nna.ogg %%DATADIR%%/es/syllab/nne.ogg %%DATADIR%%/es/syllab/nni.ogg %%DATADIR%%/es/syllab/nno.ogg %%DATADIR%%/es/syllab/nnu.ogg %%DATADIR%%/es/syllab/no.ogg %%DATADIR%%/es/syllab/nu.ogg %%DATADIR%%/es/syllab/pa.ogg %%DATADIR%%/es/syllab/pe.ogg %%DATADIR%%/es/syllab/pi.ogg %%DATADIR%%/es/syllab/po.ogg %%DATADIR%%/es/syllab/pu.ogg %%DATADIR%%/es/syllab/que.ogg %%DATADIR%%/es/syllab/qui.ogg %%DATADIR%%/es/syllab/ra.ogg %%DATADIR%%/es/syllab/re.ogg %%DATADIR%%/es/syllab/ri.ogg %%DATADIR%%/es/syllab/ro.ogg %%DATADIR%%/es/syllab/ru.ogg %%DATADIR%%/es/syllab/sa.ogg %%DATADIR%%/es/syllab/se.ogg %%DATADIR%%/es/syllab/si.ogg %%DATADIR%%/es/syllab/so.ogg %%DATADIR%%/es/syllab/su.ogg %%DATADIR%%/es/syllab/ta.ogg %%DATADIR%%/es/syllab/te.ogg %%DATADIR%%/es/syllab/ti.ogg %%DATADIR%%/es/syllab/to.ogg %%DATADIR%%/es/syllab/tu.ogg %%DATADIR%%/es/syllab/va.ogg %%DATADIR%%/es/syllab/ve.ogg %%DATADIR%%/es/syllab/vi.ogg %%DATADIR%%/es/syllab/vo.ogg %%DATADIR%%/es/syllab/vu.ogg %%DATADIR%%/es/syllab/wa.ogg %%DATADIR%%/es/syllab/we.ogg %%DATADIR%%/es/syllab/wi.ogg %%DATADIR%%/es/syllab/wo.ogg %%DATADIR%%/es/syllab/wu.ogg %%DATADIR%%/es/syllab/xa.ogg %%DATADIR%%/es/syllab/xe.ogg %%DATADIR%%/es/syllab/xi.ogg %%DATADIR%%/es/syllab/xo.ogg %%DATADIR%%/es/syllab/xu.ogg %%DATADIR%%/es/syllab/ya.ogg %%DATADIR%%/es/syllab/ye.ogg %%DATADIR%%/es/syllab/yi.ogg %%DATADIR%%/es/syllab/yo.ogg %%DATADIR%%/es/syllab/yu.ogg %%DATADIR%%/es/syllab/za.ogg %%DATADIR%%/es/syllab/ze.ogg %%DATADIR%%/es/syllab/zi.ogg %%DATADIR%%/es/syllab/zo.ogg %%DATADIR%%/es/syllab/zu.ogg %%DATADIR%%/fr/alpha/a-0.ogg %%DATADIR%%/fr/alpha/a-1.ogg %%DATADIR%%/fr/alpha/a-10.ogg %%DATADIR%%/fr/alpha/a-11.ogg %%DATADIR%%/fr/alpha/a-12.ogg %%DATADIR%%/fr/alpha/a-13.ogg %%DATADIR%%/fr/alpha/a-14.ogg %%DATADIR%%/fr/alpha/a-15.ogg %%DATADIR%%/fr/alpha/a-16.ogg %%DATADIR%%/fr/alpha/a-17.ogg %%DATADIR%%/fr/alpha/a-18.ogg %%DATADIR%%/fr/alpha/a-19.ogg %%DATADIR%%/fr/alpha/a-2.ogg %%DATADIR%%/fr/alpha/a-20.ogg %%DATADIR%%/fr/alpha/a-21.ogg %%DATADIR%%/fr/alpha/a-22.ogg %%DATADIR%%/fr/alpha/a-23.ogg %%DATADIR%%/fr/alpha/a-24.ogg %%DATADIR%%/fr/alpha/a-25.ogg %%DATADIR%%/fr/alpha/a-3.ogg %%DATADIR%%/fr/alpha/a-4.ogg %%DATADIR%%/fr/alpha/a-5.ogg %%DATADIR%%/fr/alpha/a-6.ogg %%DATADIR%%/fr/alpha/a-7.ogg %%DATADIR%%/fr/alpha/a-8.ogg %%DATADIR%%/fr/alpha/a-9.ogg %%DATADIR%%/fr/sounds.xml %%DATADIR%%/fr/syllab/ad-0.ogg %%DATADIR%%/fr/syllab/ad-1.ogg %%DATADIR%%/fr/syllab/ad-10.ogg %%DATADIR%%/fr/syllab/ad-11.ogg %%DATADIR%%/fr/syllab/ad-12.ogg %%DATADIR%%/fr/syllab/ad-13.ogg %%DATADIR%%/fr/syllab/ad-14.ogg %%DATADIR%%/fr/syllab/ad-15.ogg %%DATADIR%%/fr/syllab/ad-16.ogg %%DATADIR%%/fr/syllab/ad-17.ogg %%DATADIR%%/fr/syllab/ad-18.ogg %%DATADIR%%/fr/syllab/ad-19.ogg %%DATADIR%%/fr/syllab/ad-2.ogg %%DATADIR%%/fr/syllab/ad-20.ogg %%DATADIR%%/fr/syllab/ad-21.ogg %%DATADIR%%/fr/syllab/ad-22.ogg %%DATADIR%%/fr/syllab/ad-23.ogg %%DATADIR%%/fr/syllab/ad-24.ogg %%DATADIR%%/fr/syllab/ad-25.ogg %%DATADIR%%/fr/syllab/ad-26.ogg %%DATADIR%%/fr/syllab/ad-27.ogg %%DATADIR%%/fr/syllab/ad-3.ogg %%DATADIR%%/fr/syllab/ad-4.ogg %%DATADIR%%/fr/syllab/ad-5.ogg %%DATADIR%%/fr/syllab/ad-6.ogg %%DATADIR%%/fr/syllab/ad-7.ogg %%DATADIR%%/fr/syllab/ad-8.ogg %%DATADIR%%/fr/syllab/ad-9.ogg %%DATADIR%%/he/alpha/a-01.ogg %%DATADIR%%/he/alpha/a-02.ogg %%DATADIR%%/he/alpha/a-03.ogg %%DATADIR%%/he/alpha/a-04.ogg %%DATADIR%%/he/alpha/a-05.ogg %%DATADIR%%/he/alpha/a-06.ogg %%DATADIR%%/he/alpha/a-07.ogg %%DATADIR%%/he/alpha/a-08.ogg %%DATADIR%%/he/alpha/a-09.ogg %%DATADIR%%/he/alpha/a-10.ogg %%DATADIR%%/he/alpha/a-11.ogg %%DATADIR%%/he/alpha/a-12.ogg %%DATADIR%%/he/alpha/a-13.ogg %%DATADIR%%/he/alpha/a-14.ogg %%DATADIR%%/he/alpha/a-15.ogg %%DATADIR%%/he/alpha/a-16.ogg %%DATADIR%%/he/alpha/a-17.ogg %%DATADIR%%/he/alpha/a-18.ogg %%DATADIR%%/he/alpha/a-19.ogg %%DATADIR%%/he/alpha/a-20.ogg %%DATADIR%%/he/alpha/a-21.ogg %%DATADIR%%/he/alpha/a-22.ogg %%DATADIR%%/he/alpha/a-23.ogg %%DATADIR%%/he/alpha/a-24.ogg %%DATADIR%%/he/alpha/a-25.ogg %%DATADIR%%/he/alpha/a-26.ogg %%DATADIR%%/he/alpha/a-27.ogg %%DATADIR%%/he/sounds.xml %%DATADIR%%/he/syllab/ad-01.ogg %%DATADIR%%/he/syllab/ad-02.ogg %%DATADIR%%/he/syllab/ad-03.ogg %%DATADIR%%/he/syllab/ad-04.ogg %%DATADIR%%/he/syllab/ad-05.ogg %%DATADIR%%/he/syllab/ad-07.ogg %%DATADIR%%/he/syllab/ad-08.ogg %%DATADIR%%/he/syllab/ad-09.ogg %%DATADIR%%/he/syllab/ad-10.ogg %%DATADIR%%/he/syllab/ad-11.ogg %%DATADIR%%/he/syllab/ad-12.ogg %%DATADIR%%/he/syllab/ad-13.ogg %%DATADIR%%/he/syllab/ad-14.ogg %%DATADIR%%/he/syllab/ad-15.ogg %%DATADIR%%/he/syllab/ad-16.ogg %%DATADIR%%/he/syllab/ad-17.ogg %%DATADIR%%/he/syllab/ad-18.ogg %%DATADIR%%/he/syllab/ad-19.ogg %%DATADIR%%/he/syllab/ad-20.ogg %%DATADIR%%/he/syllab/ad-21.ogg %%DATADIR%%/he/syllab/ad-22.ogg %%DATADIR%%/he/syllab/ad-23.ogg %%DATADIR%%/he/syllab/ad-24.ogg %%DATADIR%%/he/syllab/ad-25.ogg %%DATADIR%%/he/syllab/ad-26.ogg %%DATADIR%%/hu.txt %%DATADIR%%/hu/alpha/a1.ogg %%DATADIR%%/hu/alpha/a2.ogg %%DATADIR%%/hu/alpha/b.ogg %%DATADIR%%/hu/alpha/c.ogg %%DATADIR%%/hu/alpha/cs.ogg %%DATADIR%%/hu/alpha/d.ogg %%DATADIR%%/hu/alpha/dz.ogg %%DATADIR%%/hu/alpha/dzs.ogg %%DATADIR%%/hu/alpha/e1.ogg %%DATADIR%%/hu/alpha/e2.ogg %%DATADIR%%/hu/alpha/f.ogg %%DATADIR%%/hu/alpha/g.ogg %%DATADIR%%/hu/alpha/gy.ogg %%DATADIR%%/hu/alpha/h.ogg %%DATADIR%%/hu/alpha/i1.ogg %%DATADIR%%/hu/alpha/i2.ogg %%DATADIR%%/hu/alpha/j.ogg %%DATADIR%%/hu/alpha/k.ogg %%DATADIR%%/hu/alpha/l.ogg %%DATADIR%%/hu/alpha/ly.ogg %%DATADIR%%/hu/alpha/m.ogg %%DATADIR%%/hu/alpha/n.ogg %%DATADIR%%/hu/alpha/ny.ogg %%DATADIR%%/hu/alpha/o1.ogg %%DATADIR%%/hu/alpha/o2.ogg %%DATADIR%%/hu/alpha/o3.ogg %%DATADIR%%/hu/alpha/o4.ogg %%DATADIR%%/hu/alpha/p.ogg %%DATADIR%%/hu/alpha/q.ogg %%DATADIR%%/hu/alpha/r.ogg %%DATADIR%%/hu/alpha/s.ogg %%DATADIR%%/hu/alpha/sz.ogg %%DATADIR%%/hu/alpha/t.ogg %%DATADIR%%/hu/alpha/ty.ogg %%DATADIR%%/hu/alpha/u1.ogg %%DATADIR%%/hu/alpha/u2.ogg %%DATADIR%%/hu/alpha/u3.ogg %%DATADIR%%/hu/alpha/u4.ogg %%DATADIR%%/hu/alpha/v.ogg %%DATADIR%%/hu/alpha/w.ogg %%DATADIR%%/hu/alpha/x.ogg %%DATADIR%%/hu/alpha/y.ogg %%DATADIR%%/hu/alpha/z.ogg %%DATADIR%%/hu/alpha/zs.ogg %%DATADIR%%/hu/sounds.xml %%DATADIR%%/hu/syllab/01-az.ogg %%DATADIR%%/hu/syllab/02-ar.ogg %%DATADIR%%/hu/syllab/03-ber.ogg %%DATADIR%%/hu/syllab/04-cel.ogg %%DATADIR%%/hu/syllab/05-csik.ogg %%DATADIR%%/hu/syllab/06-del.ogg %%DATADIR%%/hu/syllab/07-egy.ogg %%DATADIR%%/hu/syllab/08-ek.ogg %%DATADIR%%/hu/syllab/09-fal.ogg %%DATADIR%%/hu/syllab/10-gez.ogg %%DATADIR%%/hu/syllab/11-gyik.ogg %%DATADIR%%/hu/syllab/12-ho.ogg %%DATADIR%%/hu/syllab/13-itt.ogg %%DATADIR%%/hu/syllab/14-ij.ogg %%DATADIR%%/hu/syllab/15-jo.ogg %%DATADIR%%/hu/syllab/16-kad.ogg %%DATADIR%%/hu/syllab/17-lo.ogg %%DATADIR%%/hu/syllab/18-lyuk.ogg %%DATADIR%%/hu/syllab/19-ma.ogg %%DATADIR%%/hu/syllab/20-negy.ogg %%DATADIR%%/hu/syllab/21-nyolc.ogg %%DATADIR%%/hu/syllab/22-oszt.ogg %%DATADIR%%/hu/syllab/23-ol.ogg %%DATADIR%%/hu/syllab/24-ot.ogg %%DATADIR%%/hu/syllab/25-or.ogg %%DATADIR%%/hu/syllab/26-pek.ogg %%DATADIR%%/hu/syllab/27-ret.ogg %%DATADIR%%/hu/syllab/28-so.ogg %%DATADIR%%/hu/syllab/29-szog.ogg %%DATADIR%%/hu/syllab/30-tok.ogg %%DATADIR%%/hu/syllab/31-tyuk.ogg %%DATADIR%%/hu/syllab/32-ujj.ogg %%DATADIR%%/hu/syllab/33-ut.ogg %%DATADIR%%/hu/syllab/34-ul.ogg %%DATADIR%%/hu/syllab/35-ur.ogg %%DATADIR%%/hu/syllab/36-ven.ogg %%DATADIR%%/hu/syllab/37-zab.ogg %%DATADIR%%/hu/syllab/38-zsak.ogg %%DATADIR%%/icons/hicolor/128x128/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/16x16/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/16x16/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/16x16/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/22x22/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/22x22/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/22x22/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/32x32/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/32x32/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/32x32/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/48x48/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/48x48/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/48x48/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/64x64/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/64x64/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/64x64/actions/klettres_kids.png %%DATADIR%%/it/alpha/a.ogg %%DATADIR%%/it/alpha/b.ogg %%DATADIR%%/it/alpha/c.ogg %%DATADIR%%/it/alpha/d.ogg %%DATADIR%%/it/alpha/e.ogg %%DATADIR%%/it/alpha/f.ogg %%DATADIR%%/it/alpha/g.ogg %%DATADIR%%/it/alpha/h.ogg %%DATADIR%%/it/alpha/i.ogg %%DATADIR%%/it/alpha/j.ogg %%DATADIR%%/it/alpha/k.ogg %%DATADIR%%/it/alpha/l.ogg %%DATADIR%%/it/alpha/m.ogg %%DATADIR%%/it/alpha/n.ogg %%DATADIR%%/it/alpha/o.ogg %%DATADIR%%/it/alpha/p.ogg %%DATADIR%%/it/alpha/q.ogg %%DATADIR%%/it/alpha/r.ogg %%DATADIR%%/it/alpha/s.ogg %%DATADIR%%/it/alpha/t.ogg %%DATADIR%%/it/alpha/u.ogg %%DATADIR%%/it/alpha/w.ogg %%DATADIR%%/it/alpha/x.ogg %%DATADIR%%/it/alpha/y.ogg %%DATADIR%%/it/alpha/z.ogg %%DATADIR%%/it/sounds.xml %%DATADIR%%/it/syllab/ba.ogg %%DATADIR%%/it/syllab/be.ogg %%DATADIR%%/it/syllab/bi.ogg %%DATADIR%%/it/syllab/bo.ogg %%DATADIR%%/it/syllab/bu.ogg %%DATADIR%%/it/syllab/ca.ogg %%DATADIR%%/it/syllab/ce.ogg %%DATADIR%%/it/syllab/ci.ogg %%DATADIR%%/it/syllab/co.ogg %%DATADIR%%/it/syllab/cu.ogg %%DATADIR%%/it/syllab/da.ogg %%DATADIR%%/it/syllab/de.ogg %%DATADIR%%/it/syllab/di.ogg %%DATADIR%%/it/syllab/do.ogg %%DATADIR%%/it/syllab/du.ogg %%DATADIR%%/it/syllab/fa.ogg %%DATADIR%%/it/syllab/fe.ogg %%DATADIR%%/it/syllab/fi.ogg %%DATADIR%%/it/syllab/fo.ogg %%DATADIR%%/it/syllab/ga.ogg %%DATADIR%%/it/syllab/ge.ogg %%DATADIR%%/it/syllab/gi.ogg %%DATADIR%%/it/syllab/gli.ogg %%DATADIR%%/it/syllab/gna.ogg %%DATADIR%%/it/syllab/gne.ogg %%DATADIR%%/it/syllab/gni.ogg %%DATADIR%%/it/syllab/gno.ogg %%DATADIR%%/it/syllab/gnu.ogg %%DATADIR%%/it/syllab/go.ogg %%DATADIR%%/it/syllab/gu.ogg %%DATADIR%%/it/syllab/la.ogg %%DATADIR%%/it/syllab/le.ogg %%DATADIR%%/it/syllab/li.ogg %%DATADIR%%/it/syllab/lo.ogg %%DATADIR%%/it/syllab/lu.ogg %%DATADIR%%/it/syllab/ma.ogg %%DATADIR%%/it/syllab/me.ogg %%DATADIR%%/it/syllab/mi.ogg %%DATADIR%%/it/syllab/mo.ogg %%DATADIR%%/it/syllab/mu.ogg %%DATADIR%%/it/syllab/na.ogg %%DATADIR%%/it/syllab/ne.ogg %%DATADIR%%/it/syllab/ni.ogg %%DATADIR%%/it/syllab/no.ogg %%DATADIR%%/it/syllab/nu.ogg %%DATADIR%%/it/syllab/pa.ogg %%DATADIR%%/it/syllab/pe.ogg %%DATADIR%%/it/syllab/pi.ogg %%DATADIR%%/it/syllab/po.ogg %%DATADIR%%/it/syllab/pu.ogg %%DATADIR%%/it/syllab/ra.ogg %%DATADIR%%/it/syllab/re.ogg %%DATADIR%%/it/syllab/ri.ogg %%DATADIR%%/it/syllab/ro.ogg %%DATADIR%%/it/syllab/ru.ogg %%DATADIR%%/it/syllab/sa.ogg %%DATADIR%%/it/syllab/se.ogg %%DATADIR%%/it/syllab/si.ogg %%DATADIR%%/it/syllab/so.ogg %%DATADIR%%/it/syllab/su.ogg %%DATADIR%%/it/syllab/ta.ogg %%DATADIR%%/it/syllab/te.ogg %%DATADIR%%/it/syllab/ti.ogg %%DATADIR%%/it/syllab/to.ogg %%DATADIR%%/it/syllab/tu.ogg %%DATADIR%%/it/syllab/va.ogg %%DATADIR%%/it/syllab/ve.ogg %%DATADIR%%/it/syllab/vi.ogg %%DATADIR%%/it/syllab/vo.ogg %%DATADIR%%/it/syllab/vu.ogg %%DATADIR%%/it/syllab/za.ogg %%DATADIR%%/it/syllab/ze.ogg %%DATADIR%%/it/syllab/zi.ogg %%DATADIR%%/it/syllab/zo.ogg %%DATADIR%%/it/syllab/zu.ogg %%DATADIR%%/lt.txt %%DATADIR%%/lt/alpha/a-1.ogg %%DATADIR%%/lt/alpha/a-2.ogg %%DATADIR%%/lt/alpha/b.ogg %%DATADIR%%/lt/alpha/c-1.ogg %%DATADIR%%/lt/alpha/c-2.ogg %%DATADIR%%/lt/alpha/d.ogg %%DATADIR%%/lt/alpha/e-1.ogg %%DATADIR%%/lt/alpha/e-2.ogg %%DATADIR%%/lt/alpha/e-3.ogg %%DATADIR%%/lt/alpha/f.ogg %%DATADIR%%/lt/alpha/g.ogg %%DATADIR%%/lt/alpha/h.ogg %%DATADIR%%/lt/alpha/i-1.ogg %%DATADIR%%/lt/alpha/i-2.ogg %%DATADIR%%/lt/alpha/j.ogg %%DATADIR%%/lt/alpha/k.ogg %%DATADIR%%/lt/alpha/l.ogg %%DATADIR%%/lt/alpha/m.ogg %%DATADIR%%/lt/alpha/n.ogg %%DATADIR%%/lt/alpha/o.ogg %%DATADIR%%/lt/alpha/p.ogg %%DATADIR%%/lt/alpha/r.ogg %%DATADIR%%/lt/alpha/s-1.ogg %%DATADIR%%/lt/alpha/s-2.ogg %%DATADIR%%/lt/alpha/t.ogg %%DATADIR%%/lt/alpha/u-1.ogg %%DATADIR%%/lt/alpha/u-2.ogg %%DATADIR%%/lt/alpha/u-3.ogg %%DATADIR%%/lt/alpha/v.ogg %%DATADIR%%/lt/alpha/y.ogg %%DATADIR%%/lt/alpha/z-1.ogg %%DATADIR%%/lt/alpha/z-2.ogg %%DATADIR%%/lt/sounds.xml %%DATADIR%%/lt/syllab/al.ogg %%DATADIR%%/lt/syllab/am.ogg %%DATADIR%%/lt/syllab/an.ogg %%DATADIR%%/lt/syllab/ar.ogg %%DATADIR%%/lt/syllab/au.ogg %%DATADIR%%/lt/syllab/bals.ogg %%DATADIR%%/lt/syllab/bels.ogg %%DATADIR%%/lt/syllab/bus.ogg %%DATADIR%%/lt/syllab/duos.ogg %%DATADIR%%/lt/syllab/dz2iu.ogg %%DATADIR%%/lt/syllab/dzin.ogg %%DATADIR%%/lt/syllab/eu.ogg %%DATADIR%%/lt/syllab/fui.ogg %%DATADIR%%/lt/syllab/gros.ogg %%DATADIR%%/lt/syllab/ie.ogg %%DATADIR%%/lt/syllab/il.ogg %%DATADIR%%/lt/syllab/im.ogg %%DATADIR%%/lt/syllab/in.ogg %%DATADIR%%/lt/syllab/ir.ogg %%DATADIR%%/lt/syllab/jau.ogg %%DATADIR%%/lt/syllab/jei.ogg %%DATADIR%%/lt/syllab/ji.ogg %%DATADIR%%/lt/syllab/jie.ogg %%DATADIR%%/lt/syllab/jis.ogg %%DATADIR%%/lt/syllab/joks.ogg %%DATADIR%%/lt/syllab/juos.ogg %%DATADIR%%/lt/syllab/jus.ogg %%DATADIR%%/lt/syllab/kaip.ogg %%DATADIR%%/lt/syllab/kas.ogg %%DATADIR%%/lt/syllab/kilo.ogg %%DATADIR%%/lt/syllab/ko.ogg %%DATADIR%%/lt/syllab/lai.ogg %%DATADIR%%/lt/syllab/le3k.ogg %%DATADIR%%/lt/syllab/leis.ogg %%DATADIR%%/lt/syllab/lis.ogg %%DATADIR%%/lt/syllab/lok.ogg %%DATADIR%%/lt/syllab/mels.ogg %%DATADIR%%/lt/syllab/mes.ogg %%DATADIR%%/lt/syllab/mur.ogg %%DATADIR%%/lt/syllab/na.ogg %%DATADIR%%/lt/syllab/ne.ogg %%DATADIR%%/lt/syllab/ne3r.ogg %%DATADIR%%/lt/syllab/nes2.ogg %%DATADIR%%/lt/syllab/nors.ogg %%DATADIR%%/lt/syllab/ou.ogg %%DATADIR%%/lt/syllab/pats.ogg %%DATADIR%%/lt/syllab/pur.ogg %%DATADIR%%/lt/syllab/ras.ogg %%DATADIR%%/lt/syllab/re3k.ogg %%DATADIR%%/lt/syllab/ries.ogg %%DATADIR%%/lt/syllab/s2a.ogg %%DATADIR%%/lt/syllab/s2als.ogg %%DATADIR%%/lt/syllab/s2ok.ogg %%DATADIR%%/lt/syllab/tai.ogg %%DATADIR%%/lt/syllab/taip.ogg %%DATADIR%%/lt/syllab/teis.ogg %%DATADIR%%/lt/syllab/ties.ogg %%DATADIR%%/lt/syllab/tuoj.ogg %%DATADIR%%/lt/syllab/tuos.ogg %%DATADIR%%/lt/syllab/tur.ogg %%DATADIR%%/lt/syllab/ul.ogg %%DATADIR%%/lt/syllab/um.ogg %%DATADIR%%/lt/syllab/un.ogg %%DATADIR%%/lt/syllab/uo.ogg %%DATADIR%%/lt/syllab/ur.ogg %%DATADIR%%/lt/syllab/ve3l.ogg %%DATADIR%%/lt/syllab/vis.ogg %%DATADIR%%/lt/syllab/vok.ogg %%DATADIR%%/lt/syllab/yra.ogg %%DATADIR%%/lt/syllab/zip.ogg %%DATADIR%%/ml/alpha/a.ogg %%DATADIR%%/ml/alpha/aa.ogg %%DATADIR%%/ml/alpha/ae.ogg %%DATADIR%%/ml/alpha/aeae.ogg %%DATADIR%%/ml/alpha/aha.ogg %%DATADIR%%/ml/alpha/am.ogg %%DATADIR%%/ml/alpha/ba.ogg %%DATADIR%%/ml/alpha/bha.ogg %%DATADIR%%/ml/alpha/cha.ogg %%DATADIR%%/ml/alpha/chha.ogg %%DATADIR%%/ml/alpha/da.ogg %%DATADIR%%/ml/alpha/dda.ogg %%DATADIR%%/ml/alpha/dha.ogg %%DATADIR%%/ml/alpha/e.ogg %%DATADIR%%/ml/alpha/ee.ogg %%DATADIR%%/ml/alpha/el.ogg %%DATADIR%%/ml/alpha/ell.ogg %%DATADIR%%/ml/alpha/en.ogg %%DATADIR%%/ml/alpha/er.ogg %%DATADIR%%/ml/alpha/ga.ogg %%DATADIR%%/ml/alpha/gha.ogg %%DATADIR%%/ml/alpha/ha.ogg %%DATADIR%%/ml/alpha/i.ogg %%DATADIR%%/ml/alpha/ja.ogg %%DATADIR%%/ml/alpha/jjha.ogg %%DATADIR%%/ml/alpha/ka.ogg %%DATADIR%%/ml/alpha/kha.ogg %%DATADIR%%/ml/alpha/la.ogg %%DATADIR%%/ml/alpha/lla.ogg %%DATADIR%%/ml/alpha/ma.ogg %%DATADIR%%/ml/alpha/na.ogg %%DATADIR%%/ml/alpha/nga.ogg %%DATADIR%%/ml/alpha/nja.ogg %%DATADIR%%/ml/alpha/nn.ogg %%DATADIR%%/ml/alpha/nna.ogg %%DATADIR%%/ml/alpha/o.ogg %%DATADIR%%/ml/alpha/oo.ogg %%DATADIR%%/ml/alpha/ou.ogg %%DATADIR%%/ml/alpha/pa.ogg %%DATADIR%%/ml/alpha/pha.ogg %%DATADIR%%/ml/alpha/ra.ogg %%DATADIR%%/ml/alpha/rra.ogg %%DATADIR%%/ml/alpha/ru.ogg %%DATADIR%%/ml/alpha/sa.ogg %%DATADIR%%/ml/alpha/sha.ogg %%DATADIR%%/ml/alpha/shsha.ogg %%DATADIR%%/ml/alpha/ta.ogg %%DATADIR%%/ml/alpha/tda.ogg %%DATADIR%%/ml/alpha/tha.ogg %%DATADIR%%/ml/alpha/thha.ogg %%DATADIR%%/ml/alpha/tta.ogg %%DATADIR%%/ml/alpha/u.ogg %%DATADIR%%/ml/alpha/uu.ogg %%DATADIR%%/ml/alpha/va.ogg %%DATADIR%%/ml/alpha/ya.ogg %%DATADIR%%/ml/alpha/zha.ogg %%DATADIR%%/ml/sounds.xml %%DATADIR%%/ml/syllab/baa.ogg %%DATADIR%%/ml/syllab/baha.ogg %%DATADIR%%/ml/syllab/bai.ogg %%DATADIR%%/ml/syllab/bam.ogg %%DATADIR%%/ml/syllab/bau.ogg %%DATADIR%%/ml/syllab/be.ogg %%DATADIR%%/ml/syllab/beae.ogg %%DATADIR%%/ml/syllab/bhaa.ogg %%DATADIR%%/ml/syllab/bhaha.ogg %%DATADIR%%/ml/syllab/bhai.ogg %%DATADIR%%/ml/syllab/bham.ogg %%DATADIR%%/ml/syllab/bhau.ogg %%DATADIR%%/ml/syllab/bhe.ogg %%DATADIR%%/ml/syllab/bheae.ogg %%DATADIR%%/ml/syllab/bhi.ogg %%DATADIR%%/ml/syllab/bhii.ogg %%DATADIR%%/ml/syllab/bho.ogg %%DATADIR%%/ml/syllab/bhoo.ogg %%DATADIR%%/ml/syllab/bhu.ogg %%DATADIR%%/ml/syllab/bhuu.ogg %%DATADIR%%/ml/syllab/bi.ogg %%DATADIR%%/ml/syllab/bii.ogg %%DATADIR%%/ml/syllab/bo.ogg %%DATADIR%%/ml/syllab/boo.ogg %%DATADIR%%/ml/syllab/bu.ogg %%DATADIR%%/ml/syllab/buu.ogg %%DATADIR%%/ml/syllab/cchaa.ogg %%DATADIR%%/ml/syllab/cchae.ogg %%DATADIR%%/ml/syllab/cchaha.ogg %%DATADIR%%/ml/syllab/cchai.ogg %%DATADIR%%/ml/syllab/ccham.ogg %%DATADIR%%/ml/syllab/cchau.ogg %%DATADIR%%/ml/syllab/cche.ogg %%DATADIR%%/ml/syllab/cchee.ogg %%DATADIR%%/ml/syllab/cchi.ogg %%DATADIR%%/ml/syllab/ccho.ogg %%DATADIR%%/ml/syllab/cchoo.ogg %%DATADIR%%/ml/syllab/cchooo.ogg %%DATADIR%%/ml/syllab/cchu.ogg %%DATADIR%%/ml/syllab/chaa.ogg %%DATADIR%%/ml/syllab/chae.ogg %%DATADIR%%/ml/syllab/chaha.ogg %%DATADIR%%/ml/syllab/chai.ogg %%DATADIR%%/ml/syllab/cham.ogg %%DATADIR%%/ml/syllab/chau.ogg %%DATADIR%%/ml/syllab/che.ogg %%DATADIR%%/ml/syllab/chee.ogg %%DATADIR%%/ml/syllab/chi.ogg %%DATADIR%%/ml/syllab/cho.ogg %%DATADIR%%/ml/syllab/choo.ogg %%DATADIR%%/ml/syllab/chu.ogg %%DATADIR%%/ml/syllab/chuu.ogg %%DATADIR%%/ml/syllab/daa.ogg %%DATADIR%%/ml/syllab/daha.ogg %%DATADIR%%/ml/syllab/dai.ogg %%DATADIR%%/ml/syllab/dam.ogg %%DATADIR%%/ml/syllab/dau.ogg %%DATADIR%%/ml/syllab/ddaa.ogg %%DATADIR%%/ml/syllab/ddaha.ogg %%DATADIR%%/ml/syllab/ddai.ogg %%DATADIR%%/ml/syllab/ddam.ogg %%DATADIR%%/ml/syllab/ddau.ogg %%DATADIR%%/ml/syllab/dde.ogg %%DATADIR%%/ml/syllab/ddeae.ogg %%DATADIR%%/ml/syllab/ddi.ogg %%DATADIR%%/ml/syllab/ddii.ogg %%DATADIR%%/ml/syllab/ddo.ogg %%DATADIR%%/ml/syllab/ddoo.ogg %%DATADIR%%/ml/syllab/ddu.ogg %%DATADIR%%/ml/syllab/dduu.ogg %%DATADIR%%/ml/syllab/de.ogg %%DATADIR%%/ml/syllab/deae.ogg %%DATADIR%%/ml/syllab/dhaa.ogg %%DATADIR%%/ml/syllab/dhaha.ogg %%DATADIR%%/ml/syllab/dhai.ogg %%DATADIR%%/ml/syllab/dham.ogg %%DATADIR%%/ml/syllab/dhau.ogg %%DATADIR%%/ml/syllab/dhe.ogg %%DATADIR%%/ml/syllab/dheae.ogg %%DATADIR%%/ml/syllab/dhhaa.ogg %%DATADIR%%/ml/syllab/dhhaha.ogg %%DATADIR%%/ml/syllab/dhhai.ogg %%DATADIR%%/ml/syllab/dhham.ogg %%DATADIR%%/ml/syllab/dhhau.ogg %%DATADIR%%/ml/syllab/dhhe.ogg %%DATADIR%%/ml/syllab/dhheae.ogg %%DATADIR%%/ml/syllab/dhhi.ogg %%DATADIR%%/ml/syllab/dhhii.ogg %%DATADIR%%/ml/syllab/dhho.ogg %%DATADIR%%/ml/syllab/dhhoo.ogg %%DATADIR%%/ml/syllab/dhhu.ogg %%DATADIR%%/ml/syllab/dhhuu.ogg %%DATADIR%%/ml/syllab/dhi.ogg %%DATADIR%%/ml/syllab/dhii.ogg %%DATADIR%%/ml/syllab/dho.ogg %%DATADIR%%/ml/syllab/dhoo.ogg %%DATADIR%%/ml/syllab/dhu.ogg %%DATADIR%%/ml/syllab/dhuu.ogg %%DATADIR%%/ml/syllab/di.ogg %%DATADIR%%/ml/syllab/dii.ogg %%DATADIR%%/ml/syllab/do.ogg %%DATADIR%%/ml/syllab/doo.ogg %%DATADIR%%/ml/syllab/du.ogg %%DATADIR%%/ml/syllab/duu.ogg %%DATADIR%%/ml/syllab/faa.ogg %%DATADIR%%/ml/syllab/faha.ogg %%DATADIR%%/ml/syllab/fai.ogg %%DATADIR%%/ml/syllab/fam.ogg %%DATADIR%%/ml/syllab/fau.ogg %%DATADIR%%/ml/syllab/fe.ogg %%DATADIR%%/ml/syllab/feae.ogg %%DATADIR%%/ml/syllab/fi.ogg %%DATADIR%%/ml/syllab/fii.ogg %%DATADIR%%/ml/syllab/fo.ogg %%DATADIR%%/ml/syllab/foo.ogg %%DATADIR%%/ml/syllab/fu.ogg %%DATADIR%%/ml/syllab/fuu.ogg %%DATADIR%%/ml/syllab/gaa.ogg %%DATADIR%%/ml/syllab/gae.ogg %%DATADIR%%/ml/syllab/gah.ogg %%DATADIR%%/ml/syllab/gam.ogg %%DATADIR%%/ml/syllab/ge.ogg %%DATADIR%%/ml/syllab/gee.ogg %%DATADIR%%/ml/syllab/ghaa.ogg %%DATADIR%%/ml/syllab/ghae.ogg %%DATADIR%%/ml/syllab/ghaha.ogg %%DATADIR%%/ml/syllab/ghai.ogg %%DATADIR%%/ml/syllab/gham.ogg %%DATADIR%%/ml/syllab/ghau.ogg %%DATADIR%%/ml/syllab/ghe.ogg %%DATADIR%%/ml/syllab/ghee.ogg %%DATADIR%%/ml/syllab/ghi.ogg %%DATADIR%%/ml/syllab/gho.ogg %%DATADIR%%/ml/syllab/ghoo.ogg %%DATADIR%%/ml/syllab/ghoooo.ogg %%DATADIR%%/ml/syllab/ghu.ogg %%DATADIR%%/ml/syllab/gi.ogg %%DATADIR%%/ml/syllab/go.ogg %%DATADIR%%/ml/syllab/goo.ogg %%DATADIR%%/ml/syllab/gooo.ogg %%DATADIR%%/ml/syllab/gou.ogg %%DATADIR%%/ml/syllab/gu.ogg %%DATADIR%%/ml/syllab/haa.ogg %%DATADIR%%/ml/syllab/haha.ogg %%DATADIR%%/ml/syllab/hai.ogg %%DATADIR%%/ml/syllab/ham.ogg %%DATADIR%%/ml/syllab/hau.ogg %%DATADIR%%/ml/syllab/he.ogg %%DATADIR%%/ml/syllab/heae.ogg %%DATADIR%%/ml/syllab/hi.ogg %%DATADIR%%/ml/syllab/hii.ogg %%DATADIR%%/ml/syllab/ho.ogg %%DATADIR%%/ml/syllab/hoo.ogg %%DATADIR%%/ml/syllab/hu.ogg %%DATADIR%%/ml/syllab/huu.ogg %%DATADIR%%/ml/syllab/jaa.ogg %%DATADIR%%/ml/syllab/jaha.ogg %%DATADIR%%/ml/syllab/jai.ogg %%DATADIR%%/ml/syllab/jam.ogg %%DATADIR%%/ml/syllab/jau.ogg %%DATADIR%%/ml/syllab/je.ogg %%DATADIR%%/ml/syllab/jeae.ogg %%DATADIR%%/ml/syllab/jee.ogg %%DATADIR%%/ml/syllab/jha.ogg %%DATADIR%%/ml/syllab/jhaa.ogg %%DATADIR%%/ml/syllab/jhaha.ogg %%DATADIR%%/ml/syllab/jhai.ogg %%DATADIR%%/ml/syllab/jham.ogg %%DATADIR%%/ml/syllab/jhau.ogg %%DATADIR%%/ml/syllab/jhe.ogg %%DATADIR%%/ml/syllab/jheae.ogg %%DATADIR%%/ml/syllab/jhee.ogg %%DATADIR%%/ml/syllab/jho.ogg %%DATADIR%%/ml/syllab/jhoo.ogg %%DATADIR%%/ml/syllab/jhu.ogg %%DATADIR%%/ml/syllab/jhuu.ogg %%DATADIR%%/ml/syllab/ji.ogg %%DATADIR%%/ml/syllab/jo.ogg %%DATADIR%%/ml/syllab/joo.ogg %%DATADIR%%/ml/syllab/ju.ogg %%DATADIR%%/ml/syllab/juu.ogg %%DATADIR%%/ml/syllab/k.ogg %%DATADIR%%/ml/syllab/kaa.ogg %%DATADIR%%/ml/syllab/kae.ogg %%DATADIR%%/ml/syllab/kah.ogg %%DATADIR%%/ml/syllab/kai.ogg %%DATADIR%%/ml/syllab/kam.ogg %%DATADIR%%/ml/syllab/kau.ogg %%DATADIR%%/ml/syllab/kee.ogg %%DATADIR%%/ml/syllab/kha.ogg %%DATADIR%%/ml/syllab/khae.ogg %%DATADIR%%/ml/syllab/khaha.ogg %%DATADIR%%/ml/syllab/khai.ogg %%DATADIR%%/ml/syllab/kham.ogg %%DATADIR%%/ml/syllab/khe.ogg %%DATADIR%%/ml/syllab/khi.ogg %%DATADIR%%/ml/syllab/khii.ogg %%DATADIR%%/ml/syllab/kho.ogg %%DATADIR%%/ml/syllab/khoo.ogg %%DATADIR%%/ml/syllab/khou.ogg %%DATADIR%%/ml/syllab/khu.ogg %%DATADIR%%/ml/syllab/khuu.ogg %%DATADIR%%/ml/syllab/ki.ogg %%DATADIR%%/ml/syllab/ko.ogg %%DATADIR%%/ml/syllab/koo.ogg %%DATADIR%%/ml/syllab/ku.ogg %%DATADIR%%/ml/syllab/kuu.ogg %%DATADIR%%/ml/syllab/laa.ogg %%DATADIR%%/ml/syllab/laha.ogg %%DATADIR%%/ml/syllab/lai.ogg %%DATADIR%%/ml/syllab/lam.ogg %%DATADIR%%/ml/syllab/lau.ogg %%DATADIR%%/ml/syllab/le.ogg %%DATADIR%%/ml/syllab/leae.ogg %%DATADIR%%/ml/syllab/li.ogg %%DATADIR%%/ml/syllab/lii.ogg %%DATADIR%%/ml/syllab/llaa.ogg %%DATADIR%%/ml/syllab/llaha.ogg %%DATADIR%%/ml/syllab/llai.ogg %%DATADIR%%/ml/syllab/llam.ogg %%DATADIR%%/ml/syllab/llau.ogg %%DATADIR%%/ml/syllab/lle.ogg %%DATADIR%%/ml/syllab/lleae.ogg %%DATADIR%%/ml/syllab/llo.ogg %%DATADIR%%/ml/syllab/lloo.ogg %%DATADIR%%/ml/syllab/llu.ogg %%DATADIR%%/ml/syllab/lluu.ogg %%DATADIR%%/ml/syllab/lo.ogg %%DATADIR%%/ml/syllab/loo.ogg %%DATADIR%%/ml/syllab/lu.ogg %%DATADIR%%/ml/syllab/luu.ogg %%DATADIR%%/ml/syllab/maa.ogg %%DATADIR%%/ml/syllab/maha.ogg %%DATADIR%%/ml/syllab/mai.ogg %%DATADIR%%/ml/syllab/mam.ogg %%DATADIR%%/ml/syllab/mau.ogg %%DATADIR%%/ml/syllab/me.ogg %%DATADIR%%/ml/syllab/meae.ogg %%DATADIR%%/ml/syllab/mi.ogg %%DATADIR%%/ml/syllab/mii.ogg %%DATADIR%%/ml/syllab/mo.ogg %%DATADIR%%/ml/syllab/moo.ogg %%DATADIR%%/ml/syllab/mu.ogg %%DATADIR%%/ml/syllab/muu.ogg %%DATADIR%%/ml/syllab/naa.ogg %%DATADIR%%/ml/syllab/naha.ogg %%DATADIR%%/ml/syllab/nai.ogg %%DATADIR%%/ml/syllab/nam.ogg %%DATADIR%%/ml/syllab/nau.ogg %%DATADIR%%/ml/syllab/ne.ogg %%DATADIR%%/ml/syllab/neae.ogg %%DATADIR%%/ml/syllab/ngaa.ogg %%DATADIR%%/ml/syllab/ngae.ogg %%DATADIR%%/ml/syllab/ngaha.ogg %%DATADIR%%/ml/syllab/ngai.ogg %%DATADIR%%/ml/syllab/ngam.ogg %%DATADIR%%/ml/syllab/ngau.ogg %%DATADIR%%/ml/syllab/nge.ogg %%DATADIR%%/ml/syllab/ngi.ogg %%DATADIR%%/ml/syllab/ngii.ogg %%DATADIR%%/ml/syllab/ngo.ogg %%DATADIR%%/ml/syllab/ngoo.ogg %%DATADIR%%/ml/syllab/ngu.ogg %%DATADIR%%/ml/syllab/nguu.ogg %%DATADIR%%/ml/syllab/nhaa.ogg %%DATADIR%%/ml/syllab/nhaha.ogg %%DATADIR%%/ml/syllab/nhai.ogg %%DATADIR%%/ml/syllab/nham.ogg %%DATADIR%%/ml/syllab/nhau.ogg %%DATADIR%%/ml/syllab/nhe.ogg %%DATADIR%%/ml/syllab/nheae.ogg %%DATADIR%%/ml/syllab/nhi.ogg %%DATADIR%%/ml/syllab/nhii.ogg %%DATADIR%%/ml/syllab/nho.ogg %%DATADIR%%/ml/syllab/nhoo.ogg %%DATADIR%%/ml/syllab/nhu.ogg %%DATADIR%%/ml/syllab/nhuu.ogg %%DATADIR%%/ml/syllab/ni.ogg %%DATADIR%%/ml/syllab/nii.ogg %%DATADIR%%/ml/syllab/njaa.ogg %%DATADIR%%/ml/syllab/njaha.ogg %%DATADIR%%/ml/syllab/njai.ogg %%DATADIR%%/ml/syllab/njam.ogg %%DATADIR%%/ml/syllab/njau.ogg %%DATADIR%%/ml/syllab/nje.ogg %%DATADIR%%/ml/syllab/njeae.ogg %%DATADIR%%/ml/syllab/nji.ogg %%DATADIR%%/ml/syllab/njii.ogg %%DATADIR%%/ml/syllab/njo.ogg %%DATADIR%%/ml/syllab/njoo.ogg %%DATADIR%%/ml/syllab/nju.ogg %%DATADIR%%/ml/syllab/njuu.ogg %%DATADIR%%/ml/syllab/no.ogg %%DATADIR%%/ml/syllab/noo.ogg %%DATADIR%%/ml/syllab/nu.ogg %%DATADIR%%/ml/syllab/nuu.ogg %%DATADIR%%/ml/syllab/paa.ogg %%DATADIR%%/ml/syllab/paha.ogg %%DATADIR%%/ml/syllab/pai.ogg %%DATADIR%%/ml/syllab/pam.ogg %%DATADIR%%/ml/syllab/pau.ogg %%DATADIR%%/ml/syllab/pe.ogg %%DATADIR%%/ml/syllab/peae.ogg %%DATADIR%%/ml/syllab/pi.ogg %%DATADIR%%/ml/syllab/pii.ogg %%DATADIR%%/ml/syllab/po.ogg %%DATADIR%%/ml/syllab/poo.ogg %%DATADIR%%/ml/syllab/pu.ogg %%DATADIR%%/ml/syllab/puu.ogg %%DATADIR%%/ml/syllab/raa.ogg %%DATADIR%%/ml/syllab/raha.ogg %%DATADIR%%/ml/syllab/rai.ogg %%DATADIR%%/ml/syllab/ram.ogg %%DATADIR%%/ml/syllab/rau.ogg %%DATADIR%%/ml/syllab/re.ogg %%DATADIR%%/ml/syllab/reae.ogg %%DATADIR%%/ml/syllab/ri.ogg %%DATADIR%%/ml/syllab/rii.ogg %%DATADIR%%/ml/syllab/ro.ogg %%DATADIR%%/ml/syllab/roo.ogg %%DATADIR%%/ml/syllab/rraa.ogg %%DATADIR%%/ml/syllab/rraha.ogg %%DATADIR%%/ml/syllab/rrai.ogg %%DATADIR%%/ml/syllab/rram.ogg %%DATADIR%%/ml/syllab/rrau.ogg %%DATADIR%%/ml/syllab/rre.ogg %%DATADIR%%/ml/syllab/rreae.ogg %%DATADIR%%/ml/syllab/rri.ogg %%DATADIR%%/ml/syllab/rrii.ogg %%DATADIR%%/ml/syllab/rro.ogg %%DATADIR%%/ml/syllab/rroo.ogg %%DATADIR%%/ml/syllab/rru.ogg %%DATADIR%%/ml/syllab/rruu.ogg %%DATADIR%%/ml/syllab/ru.ogg %%DATADIR%%/ml/syllab/ruu.ogg %%DATADIR%%/ml/syllab/saa.ogg %%DATADIR%%/ml/syllab/saha.ogg %%DATADIR%%/ml/syllab/sai.ogg %%DATADIR%%/ml/syllab/sam.ogg %%DATADIR%%/ml/syllab/sau.ogg %%DATADIR%%/ml/syllab/se.ogg %%DATADIR%%/ml/syllab/seae.ogg %%DATADIR%%/ml/syllab/shaa.ogg %%DATADIR%%/ml/syllab/shaha.ogg %%DATADIR%%/ml/syllab/shai.ogg %%DATADIR%%/ml/syllab/sham.ogg %%DATADIR%%/ml/syllab/shau.ogg %%DATADIR%%/ml/syllab/she.ogg %%DATADIR%%/ml/syllab/sheae.ogg %%DATADIR%%/ml/syllab/shi.ogg %%DATADIR%%/ml/syllab/shii.ogg %%DATADIR%%/ml/syllab/sho.ogg %%DATADIR%%/ml/syllab/shoo.ogg %%DATADIR%%/ml/syllab/shshaa.ogg %%DATADIR%%/ml/syllab/shshaha.ogg %%DATADIR%%/ml/syllab/shshai.ogg %%DATADIR%%/ml/syllab/shsham.ogg %%DATADIR%%/ml/syllab/shshau.ogg %%DATADIR%%/ml/syllab/shshe.ogg %%DATADIR%%/ml/syllab/shsheae.ogg %%DATADIR%%/ml/syllab/shshi.ogg %%DATADIR%%/ml/syllab/shshii.ogg %%DATADIR%%/ml/syllab/shsho.ogg %%DATADIR%%/ml/syllab/shshoo.ogg %%DATADIR%%/ml/syllab/shshu.ogg %%DATADIR%%/ml/syllab/shshuu.ogg %%DATADIR%%/ml/syllab/shu.ogg %%DATADIR%%/ml/syllab/shuu.ogg %%DATADIR%%/ml/syllab/si.ogg %%DATADIR%%/ml/syllab/sii.ogg %%DATADIR%%/ml/syllab/so.ogg %%DATADIR%%/ml/syllab/soo.ogg %%DATADIR%%/ml/syllab/su.ogg %%DATADIR%%/ml/syllab/suu.ogg %%DATADIR%%/ml/syllab/taa.ogg %%DATADIR%%/ml/syllab/taha.ogg %%DATADIR%%/ml/syllab/tai.ogg %%DATADIR%%/ml/syllab/tam.ogg %%DATADIR%%/ml/syllab/tau.ogg %%DATADIR%%/ml/syllab/te.ogg %%DATADIR%%/ml/syllab/tee.ogg %%DATADIR%%/ml/syllab/thaa.ogg %%DATADIR%%/ml/syllab/thaha.ogg %%DATADIR%%/ml/syllab/thai.ogg %%DATADIR%%/ml/syllab/tham.ogg %%DATADIR%%/ml/syllab/thau.ogg %%DATADIR%%/ml/syllab/the.ogg %%DATADIR%%/ml/syllab/theae.ogg %%DATADIR%%/ml/syllab/thi.ogg %%DATADIR%%/ml/syllab/thii.ogg %%DATADIR%%/ml/syllab/tho.ogg %%DATADIR%%/ml/syllab/thoo.ogg %%DATADIR%%/ml/syllab/thu.ogg %%DATADIR%%/ml/syllab/thuu.ogg %%DATADIR%%/ml/syllab/ti.ogg %%DATADIR%%/ml/syllab/tii.ogg %%DATADIR%%/ml/syllab/to.ogg %%DATADIR%%/ml/syllab/too.ogg %%DATADIR%%/ml/syllab/ttaa.ogg %%DATADIR%%/ml/syllab/ttaha.ogg %%DATADIR%%/ml/syllab/ttai.ogg %%DATADIR%%/ml/syllab/ttam.ogg %%DATADIR%%/ml/syllab/ttau.ogg %%DATADIR%%/ml/syllab/tte.ogg %%DATADIR%%/ml/syllab/tteae.ogg %%DATADIR%%/ml/syllab/tthaa.ogg %%DATADIR%%/ml/syllab/tthaha.ogg %%DATADIR%%/ml/syllab/tthai.ogg %%DATADIR%%/ml/syllab/ttham.ogg %%DATADIR%%/ml/syllab/tthau.ogg %%DATADIR%%/ml/syllab/tthe.ogg %%DATADIR%%/ml/syllab/ttheae.ogg %%DATADIR%%/ml/syllab/tthi.ogg %%DATADIR%%/ml/syllab/tthii.ogg %%DATADIR%%/ml/syllab/ttho.ogg %%DATADIR%%/ml/syllab/tthoo.ogg %%DATADIR%%/ml/syllab/tthu.ogg %%DATADIR%%/ml/syllab/tthuu.ogg %%DATADIR%%/ml/syllab/tti.ogg %%DATADIR%%/ml/syllab/ttii.ogg %%DATADIR%%/ml/syllab/tto.ogg %%DATADIR%%/ml/syllab/ttoo.ogg %%DATADIR%%/ml/syllab/ttu.ogg %%DATADIR%%/ml/syllab/ttuu.ogg %%DATADIR%%/ml/syllab/tu.ogg %%DATADIR%%/ml/syllab/tuu.ogg %%DATADIR%%/ml/syllab/vaa.ogg %%DATADIR%%/ml/syllab/vaha.ogg %%DATADIR%%/ml/syllab/vai.ogg %%DATADIR%%/ml/syllab/vam.ogg %%DATADIR%%/ml/syllab/vau.ogg %%DATADIR%%/ml/syllab/ve.ogg %%DATADIR%%/ml/syllab/veae.ogg %%DATADIR%%/ml/syllab/vi.ogg %%DATADIR%%/ml/syllab/vii.ogg %%DATADIR%%/ml/syllab/vo.ogg %%DATADIR%%/ml/syllab/voo.ogg %%DATADIR%%/ml/syllab/vu.ogg %%DATADIR%%/ml/syllab/vuu.ogg %%DATADIR%%/ml/syllab/yaa.ogg %%DATADIR%%/ml/syllab/yaha.ogg %%DATADIR%%/ml/syllab/yai.ogg %%DATADIR%%/ml/syllab/yam.ogg %%DATADIR%%/ml/syllab/yau.ogg %%DATADIR%%/ml/syllab/ye.ogg %%DATADIR%%/ml/syllab/yeae.ogg %%DATADIR%%/ml/syllab/yi.ogg %%DATADIR%%/ml/syllab/yii.ogg %%DATADIR%%/ml/syllab/yo.ogg %%DATADIR%%/ml/syllab/yoo.ogg %%DATADIR%%/ml/syllab/yu.ogg %%DATADIR%%/ml/syllab/yuu.ogg %%DATADIR%%/ml/syllab/zhaa.ogg %%DATADIR%%/ml/syllab/zhaha.ogg %%DATADIR%%/ml/syllab/zhai.ogg %%DATADIR%%/ml/syllab/zham.ogg %%DATADIR%%/ml/syllab/zhau.ogg %%DATADIR%%/ml/syllab/zhe.ogg %%DATADIR%%/ml/syllab/zheae.ogg %%DATADIR%%/ml/syllab/zhi.ogg %%DATADIR%%/ml/syllab/zhii.ogg %%DATADIR%%/ml/syllab/zho.ogg %%DATADIR%%/ml/syllab/zhoo.ogg %%DATADIR%%/ml/syllab/zhu.ogg %%DATADIR%%/ml/syllab/zhuu.ogg %%DATADIR%%/nb/alpha/U0061.ogg %%DATADIR%%/nb/alpha/U0062.ogg %%DATADIR%%/nb/alpha/U0063.ogg %%DATADIR%%/nb/alpha/U0064.ogg %%DATADIR%%/nb/alpha/U0065.ogg %%DATADIR%%/nb/alpha/U0066.ogg %%DATADIR%%/nb/alpha/U0067.ogg %%DATADIR%%/nb/alpha/U0068.ogg %%DATADIR%%/nb/alpha/U0069.ogg %%DATADIR%%/nb/alpha/U006A.ogg %%DATADIR%%/nb/alpha/U006B.ogg %%DATADIR%%/nb/alpha/U006C.ogg %%DATADIR%%/nb/alpha/U006D.ogg %%DATADIR%%/nb/alpha/U006E.ogg %%DATADIR%%/nb/alpha/U006F.ogg %%DATADIR%%/nb/alpha/U0070.ogg %%DATADIR%%/nb/alpha/U0071.ogg %%DATADIR%%/nb/alpha/U0072.ogg %%DATADIR%%/nb/alpha/U0073.ogg %%DATADIR%%/nb/alpha/U0074.ogg %%DATADIR%%/nb/alpha/U0075.ogg %%DATADIR%%/nb/alpha/U0076.ogg %%DATADIR%%/nb/alpha/U0077.ogg %%DATADIR%%/nb/alpha/U0078.ogg %%DATADIR%%/nb/alpha/U0079.ogg %%DATADIR%%/nb/alpha/U007A.ogg %%DATADIR%%/nb/alpha/U00E5.ogg %%DATADIR%%/nb/alpha/U00E6.ogg %%DATADIR%%/nb/alpha/U00F8.ogg %%DATADIR%%/nb/sounds.xml %%DATADIR%%/nds.txt %%DATADIR%%/nds/alpha/a.ogg %%DATADIR%%/nds/alpha/ae.ogg %%DATADIR%%/nds/alpha/b.ogg %%DATADIR%%/nds/alpha/c.ogg %%DATADIR%%/nds/alpha/d.ogg %%DATADIR%%/nds/alpha/e.ogg %%DATADIR%%/nds/alpha/f.ogg %%DATADIR%%/nds/alpha/g.ogg %%DATADIR%%/nds/alpha/h.ogg %%DATADIR%%/nds/alpha/i.ogg %%DATADIR%%/nds/alpha/j.ogg %%DATADIR%%/nds/alpha/k.ogg %%DATADIR%%/nds/alpha/l.ogg %%DATADIR%%/nds/alpha/m.ogg %%DATADIR%%/nds/alpha/n.ogg %%DATADIR%%/nds/alpha/o.ogg %%DATADIR%%/nds/alpha/oe.ogg %%DATADIR%%/nds/alpha/p.ogg %%DATADIR%%/nds/alpha/q.ogg %%DATADIR%%/nds/alpha/r.ogg %%DATADIR%%/nds/alpha/s.ogg %%DATADIR%%/nds/alpha/sz.ogg %%DATADIR%%/nds/alpha/t.ogg %%DATADIR%%/nds/alpha/u.ogg %%DATADIR%%/nds/alpha/ue.ogg %%DATADIR%%/nds/alpha/v.ogg %%DATADIR%%/nds/alpha/w.ogg %%DATADIR%%/nds/alpha/x.ogg %%DATADIR%%/nds/alpha/y.ogg %%DATADIR%%/nds/alpha/z.ogg %%DATADIR%%/nds/sounds.xml %%DATADIR%%/nds/syllab/aal.ogg %%DATADIR%%/nds/syllab/aennern.ogg %%DATADIR%%/nds/syllab/aeten.ogg %%DATADIR%%/nds/syllab/al.ogg %%DATADIR%%/nds/syllab/all.ogg %%DATADIR%%/nds/syllab/baeaer.ogg %%DATADIR%%/nds/syllab/boom.ogg %%DATADIR%%/nds/syllab/cent.ogg %%DATADIR%%/nds/syllab/deert.ogg %%DATADIR%%/nds/syllab/eer.ogg %%DATADIR%%/nds/syllab/ehr.ogg %%DATADIR%%/nds/syllab/en.ogg %%DATADIR%%/nds/syllab/faehr.ogg %%DATADIR%%/nds/syllab/fix.ogg %%DATADIR%%/nds/syllab/greeksch.ogg %%DATADIR%%/nds/syllab/huus.ogg %%DATADIR%%/nds/syllab/ies.ogg %%DATADIR%%/nds/syllab/ik.ogg %%DATADIR%%/nds/syllab/imm.ogg %%DATADIR%%/nds/syllab/juest.ogg %%DATADIR%%/nds/syllab/keerl.ogg %%DATADIR%%/nds/syllab/leef.ogg %%DATADIR%%/nds/syllab/muur.ogg %%DATADIR%%/nds/syllab/naam.ogg %%DATADIR%%/nds/syllab/och.ogg %%DATADIR%%/nds/syllab/oeko.ogg %%DATADIR%%/nds/syllab/oeller.ogg %%DATADIR%%/nds/syllab/oeoel.ogg %%DATADIR%%/nds/syllab/oll.ogg %%DATADIR%%/nds/syllab/oolt.ogg %%DATADIR%%/nds/syllab/pann.ogg %%DATADIR%%/nds/syllab/queern.ogg %%DATADIR%%/nds/syllab/reeg.ogg %%DATADIR%%/nds/syllab/sachts.ogg %%DATADIR%%/nds/syllab/schiet.ogg %%DATADIR%%/nds/syllab/spaasz.ogg %%DATADIR%%/nds/syllab/stunn.ogg %%DATADIR%%/nds/syllab/taach.ogg %%DATADIR%%/nds/syllab/typ.ogg %%DATADIR%%/nds/syllab/uem.ogg %%DATADIR%%/nds/syllab/uenner.ogg %%DATADIR%%/nds/syllab/ueuetz.ogg %%DATADIR%%/nds/syllab/ut.ogg %%DATADIR%%/nds/syllab/uul.ogg %%DATADIR%%/nds/syllab/veegtoorsch.ogg %%DATADIR%%/nds/syllab/veel.ogg %%DATADIR%%/nds/syllab/waag.ogg %%DATADIR%%/nds/syllab/zeeg.ogg %%DATADIR%%/nl/alpha/a-0.ogg %%DATADIR%%/nl/alpha/a-1.ogg %%DATADIR%%/nl/alpha/a-10.ogg %%DATADIR%%/nl/alpha/a-11.ogg %%DATADIR%%/nl/alpha/a-12.ogg %%DATADIR%%/nl/alpha/a-13.ogg %%DATADIR%%/nl/alpha/a-14.ogg %%DATADIR%%/nl/alpha/a-15.ogg %%DATADIR%%/nl/alpha/a-16.ogg %%DATADIR%%/nl/alpha/a-17.ogg %%DATADIR%%/nl/alpha/a-18.ogg %%DATADIR%%/nl/alpha/a-19.ogg %%DATADIR%%/nl/alpha/a-2.ogg %%DATADIR%%/nl/alpha/a-20.ogg %%DATADIR%%/nl/alpha/a-21.ogg %%DATADIR%%/nl/alpha/a-3.ogg %%DATADIR%%/nl/alpha/a-4.ogg %%DATADIR%%/nl/alpha/a-5.ogg %%DATADIR%%/nl/alpha/a-6.ogg %%DATADIR%%/nl/alpha/a-7.ogg %%DATADIR%%/nl/alpha/a-8.ogg %%DATADIR%%/nl/alpha/a-9.ogg %%DATADIR%%/nl/sounds.xml %%DATADIR%%/nl/syllab/ad-0.ogg %%DATADIR%%/nl/syllab/ad-1.ogg %%DATADIR%%/nl/syllab/ad-10.ogg %%DATADIR%%/nl/syllab/ad-11.ogg %%DATADIR%%/nl/syllab/ad-12.ogg %%DATADIR%%/nl/syllab/ad-13.ogg %%DATADIR%%/nl/syllab/ad-14.ogg %%DATADIR%%/nl/syllab/ad-15.ogg %%DATADIR%%/nl/syllab/ad-16.ogg %%DATADIR%%/nl/syllab/ad-17.ogg %%DATADIR%%/nl/syllab/ad-18.ogg %%DATADIR%%/nl/syllab/ad-19.ogg %%DATADIR%%/nl/syllab/ad-2.ogg %%DATADIR%%/nl/syllab/ad-20.ogg %%DATADIR%%/nl/syllab/ad-21.ogg %%DATADIR%%/nl/syllab/ad-22.ogg %%DATADIR%%/nl/syllab/ad-23.ogg %%DATADIR%%/nl/syllab/ad-24.ogg %%DATADIR%%/nl/syllab/ad-25.ogg %%DATADIR%%/nl/syllab/ad-3.ogg %%DATADIR%%/nl/syllab/ad-4.ogg %%DATADIR%%/nl/syllab/ad-5.ogg %%DATADIR%%/nl/syllab/ad-6.ogg %%DATADIR%%/nl/syllab/ad-7.ogg %%DATADIR%%/nl/syllab/ad-8.ogg %%DATADIR%%/nl/syllab/ad-9.ogg %%DATADIR%%/pics/aqua/klettres_aqua.svg %%DATADIR%%/pics/desert/klettres_desert.svg %%DATADIR%%/pics/kids/klettres_kids.svg %%DATADIR%%/pics/klettres_desert.png %%DATADIR%%/pics/klettres_grownup.png %%DATADIR%%/pics/klettres_kids.jpeg %%DATADIR%%/pics/savannah/klettres_savannah.svg %%DATADIR%%/pt_BR/alpha/a.ogg %%DATADIR%%/pt_BR/alpha/b.ogg %%DATADIR%%/pt_BR/alpha/c.ogg %%DATADIR%%/pt_BR/alpha/d.ogg %%DATADIR%%/pt_BR/alpha/e.ogg %%DATADIR%%/pt_BR/alpha/f.ogg %%DATADIR%%/pt_BR/alpha/g.ogg %%DATADIR%%/pt_BR/alpha/h.ogg %%DATADIR%%/pt_BR/alpha/i.ogg %%DATADIR%%/pt_BR/alpha/j.ogg %%DATADIR%%/pt_BR/alpha/k.ogg %%DATADIR%%/pt_BR/alpha/l.ogg %%DATADIR%%/pt_BR/alpha/m.ogg %%DATADIR%%/pt_BR/alpha/n.ogg %%DATADIR%%/pt_BR/alpha/o.ogg %%DATADIR%%/pt_BR/alpha/p.ogg %%DATADIR%%/pt_BR/alpha/q.ogg %%DATADIR%%/pt_BR/alpha/r.ogg %%DATADIR%%/pt_BR/alpha/s.ogg %%DATADIR%%/pt_BR/alpha/t.ogg %%DATADIR%%/pt_BR/alpha/u.ogg %%DATADIR%%/pt_BR/alpha/v.ogg %%DATADIR%%/pt_BR/alpha/w.ogg %%DATADIR%%/pt_BR/alpha/x.ogg %%DATADIR%%/pt_BR/alpha/y.ogg %%DATADIR%%/pt_BR/alpha/z.ogg %%DATADIR%%/pt_BR/sounds.xml %%DATADIR%%/pt_BR/syllab/ba.ogg %%DATADIR%%/pt_BR/syllab/be.ogg %%DATADIR%%/pt_BR/syllab/bi.ogg %%DATADIR%%/pt_BR/syllab/bo.ogg %%DATADIR%%/pt_BR/syllab/bu.ogg %%DATADIR%%/pt_BR/syllab/ca.ogg %%DATADIR%%/pt_BR/syllab/co.ogg %%DATADIR%%/pt_BR/syllab/cu.ogg %%DATADIR%%/pt_BR/syllab/da.ogg %%DATADIR%%/pt_BR/syllab/de.ogg %%DATADIR%%/pt_BR/syllab/di.ogg %%DATADIR%%/pt_BR/syllab/do.ogg %%DATADIR%%/pt_BR/syllab/du.ogg %%DATADIR%%/pt_BR/syllab/fa.ogg %%DATADIR%%/pt_BR/syllab/fe.ogg %%DATADIR%%/pt_BR/syllab/fi.ogg %%DATADIR%%/pt_BR/syllab/fo.ogg %%DATADIR%%/pt_BR/syllab/fu.ogg %%DATADIR%%/pt_BR/syllab/ga.ogg %%DATADIR%%/pt_BR/syllab/go.ogg %%DATADIR%%/pt_BR/syllab/gu.ogg %%DATADIR%%/pt_BR/syllab/ja.ogg %%DATADIR%%/pt_BR/syllab/je.ogg %%DATADIR%%/pt_BR/syllab/ji.ogg %%DATADIR%%/pt_BR/syllab/jo.ogg %%DATADIR%%/pt_BR/syllab/ju.ogg %%DATADIR%%/pt_BR/syllab/la.ogg %%DATADIR%%/pt_BR/syllab/le.ogg %%DATADIR%%/pt_BR/syllab/li.ogg %%DATADIR%%/pt_BR/syllab/lo.ogg %%DATADIR%%/pt_BR/syllab/lu.ogg %%DATADIR%%/pt_BR/syllab/ma.ogg %%DATADIR%%/pt_BR/syllab/me.ogg %%DATADIR%%/pt_BR/syllab/mi.ogg %%DATADIR%%/pt_BR/syllab/mo.ogg %%DATADIR%%/pt_BR/syllab/mu.ogg %%DATADIR%%/pt_BR/syllab/na.ogg %%DATADIR%%/pt_BR/syllab/ne.ogg %%DATADIR%%/pt_BR/syllab/ni.ogg %%DATADIR%%/pt_BR/syllab/no.ogg %%DATADIR%%/pt_BR/syllab/nu.ogg %%DATADIR%%/pt_BR/syllab/pa.ogg %%DATADIR%%/pt_BR/syllab/pe.ogg %%DATADIR%%/pt_BR/syllab/pi.ogg %%DATADIR%%/pt_BR/syllab/po.ogg %%DATADIR%%/pt_BR/syllab/pu.ogg %%DATADIR%%/pt_BR/syllab/ra.ogg %%DATADIR%%/pt_BR/syllab/re.ogg %%DATADIR%%/pt_BR/syllab/ri.ogg %%DATADIR%%/pt_BR/syllab/ro.ogg %%DATADIR%%/pt_BR/syllab/ru.ogg %%DATADIR%%/pt_BR/syllab/sa.ogg %%DATADIR%%/pt_BR/syllab/se.ogg %%DATADIR%%/pt_BR/syllab/si.ogg %%DATADIR%%/pt_BR/syllab/so.ogg %%DATADIR%%/pt_BR/syllab/su.ogg %%DATADIR%%/pt_BR/syllab/ta.ogg %%DATADIR%%/pt_BR/syllab/te.ogg %%DATADIR%%/pt_BR/syllab/ti.ogg %%DATADIR%%/pt_BR/syllab/to.ogg %%DATADIR%%/pt_BR/syllab/tu.ogg %%DATADIR%%/pt_BR/syllab/va.ogg %%DATADIR%%/pt_BR/syllab/ve.ogg %%DATADIR%%/pt_BR/syllab/vi.ogg %%DATADIR%%/pt_BR/syllab/vo.ogg %%DATADIR%%/pt_BR/syllab/vu.ogg %%DATADIR%%/pt_BR/syllab/xa.ogg %%DATADIR%%/pt_BR/syllab/xe.ogg %%DATADIR%%/pt_BR/syllab/xi.ogg %%DATADIR%%/pt_BR/syllab/xo.ogg %%DATADIR%%/pt_BR/syllab/xu.ogg %%DATADIR%%/pt_BR/syllab/za.ogg %%DATADIR%%/pt_BR/syllab/ze.ogg %%DATADIR%%/pt_BR/syllab/zi.ogg %%DATADIR%%/pt_BR/syllab/zo.ogg %%DATADIR%%/pt_BR/syllab/zu.ogg %%DATADIR%%/ru/alpha/a.ogg %%DATADIR%%/ru/alpha/ae.ogg %%DATADIR%%/ru/alpha/be.ogg %%DATADIR%%/ru/alpha/che.ogg %%DATADIR%%/ru/alpha/de.ogg %%DATADIR%%/ru/alpha/e.ogg %%DATADIR%%/ru/alpha/em.ogg %%DATADIR%%/ru/alpha/en.ogg %%DATADIR%%/ru/alpha/er.ogg %%DATADIR%%/ru/alpha/es.ogg %%DATADIR%%/ru/alpha/f.ogg %%DATADIR%%/ru/alpha/ge.ogg %%DATADIR%%/ru/alpha/ha.ogg %%DATADIR%%/ru/alpha/hard.ogg %%DATADIR%%/ru/alpha/i.ogg %%DATADIR%%/ru/alpha/iu.ogg %%DATADIR%%/ru/alpha/k.ogg %%DATADIR%%/ru/alpha/l.ogg %%DATADIR%%/ru/alpha/o.ogg %%DATADIR%%/ru/alpha/pe.ogg %%DATADIR%%/ru/alpha/scha.ogg %%DATADIR%%/ru/alpha/sha.ogg %%DATADIR%%/ru/alpha/soft.ogg %%DATADIR%%/ru/alpha/te.ogg %%DATADIR%%/ru/alpha/tse.ogg %%DATADIR%%/ru/alpha/u.ogg %%DATADIR%%/ru/alpha/ve.ogg %%DATADIR%%/ru/alpha/y.ogg %%DATADIR%%/ru/alpha/ya.ogg %%DATADIR%%/ru/alpha/yo.ogg %%DATADIR%%/ru/alpha/yu.ogg %%DATADIR%%/ru/alpha/ze.ogg %%DATADIR%%/ru/alpha/zh.ogg %%DATADIR%%/ru/sounds.xml %%DATADIR%%/ru/syllab/ba.ogg %%DATADIR%%/ru/syllab/be.ogg %%DATADIR%%/ru/syllab/bro.ogg %%DATADIR%%/ru/syllab/bu.ogg %%DATADIR%%/ru/syllab/chey.ogg %%DATADIR%%/ru/syllab/chka.ogg %%DATADIR%%/ru/syllab/chok.ogg %%DATADIR%%/ru/syllab/chto.ogg %%DATADIR%%/ru/syllab/chu.ogg %%DATADIR%%/ru/syllab/chut.ogg %%DATADIR%%/ru/syllab/chyk.ogg %%DATADIR%%/ru/syllab/da.ogg %%DATADIR%%/ru/syllab/do.ogg %%DATADIR%%/ru/syllab/du.ogg %%DATADIR%%/ru/syllab/ha.ogg %%DATADIR%%/ru/syllab/ka.ogg %%DATADIR%%/ru/syllab/ko.ogg %%DATADIR%%/ru/syllab/ku.ogg %%DATADIR%%/ru/syllab/lo.ogg %%DATADIR%%/ru/syllab/ly.ogg %%DATADIR%%/ru/syllab/lya.ogg %%DATADIR%%/ru/syllab/lyu.ogg %%DATADIR%%/ru/syllab/ma.ogg %%DATADIR%%/ru/syllab/may.ogg %%DATADIR%%/ru/syllab/miu.ogg %%DATADIR%%/ru/syllab/na.ogg %%DATADIR%%/ru/syllab/ne.ogg %%DATADIR%%/ru/syllab/net.ogg %%DATADIR%%/ru/syllab/niuy.ogg %%DATADIR%%/ru/syllab/no.ogg %%DATADIR%%/ru/syllab/noy.ogg %%DATADIR%%/ru/syllab/ny.ogg %%DATADIR%%/ru/syllab/nya.ogg %%DATADIR%%/ru/syllab/pa.ogg %%DATADIR%%/ru/syllab/pi.ogg %%DATADIR%%/ru/syllab/ro.ogg %%DATADIR%%/ru/syllab/russ.ogg %%DATADIR%%/ru/syllab/rys.ogg %%DATADIR%%/ru/syllab/schy.ogg %%DATADIR%%/ru/syllab/sha.ogg %%DATADIR%%/ru/syllab/she.ogg %%DATADIR%%/ru/syllab/ska.ogg %%DATADIR%%/ru/syllab/so.ogg %%DATADIR%%/ru/syllab/sy.ogg %%DATADIR%%/ru/syllab/syt.ogg %%DATADIR%%/ru/syllab/ta.ogg %%DATADIR%%/ru/syllab/te.ogg %%DATADIR%%/ru/syllab/tiu.ogg %%DATADIR%%/ru/syllab/to.ogg %%DATADIR%%/ru/syllab/tsya.ogg %%DATADIR%%/ru/syllab/tvoy.ogg %%DATADIR%%/ru/syllab/ty.ogg %%DATADIR%%/ru/syllab/viu.ogg %%DATADIR%%/ru/syllab/vo.ogg %%DATADIR%%/ru/syllab/vse.ogg %%DATADIR%%/ru/syllab/yizh.ogg %%DATADIR%%/ru/syllab/zhe.ogg %%DATADIR%%/ru/syllab/zhi.ogg %%DATADIR%%/ru/syllab/zhyt.ogg %%DATADIR%%/ru/syllab/zlo.ogg %%DATADIR%%/ru/syllab/zyk.ogg %%DATADIR%%/sk.txt %%DATADIR%%/uk/alpha/a.ogg %%DATADIR%%/uk/alpha/be.ogg %%DATADIR%%/uk/alpha/che.ogg %%DATADIR%%/uk/alpha/de.ogg %%DATADIR%%/uk/alpha/e.ogg %%DATADIR%%/uk/alpha/er.ogg %%DATADIR%%/uk/alpha/es.ogg %%DATADIR%%/uk/alpha/f.ogg %%DATADIR%%/uk/alpha/ge.ogg %%DATADIR%%/uk/alpha/ha.ogg %%DATADIR%%/uk/alpha/he.ogg %%DATADIR%%/uk/alpha/i.ogg %%DATADIR%%/uk/alpha/k.ogg %%DATADIR%%/uk/alpha/l.ogg %%DATADIR%%/uk/alpha/m.ogg %%DATADIR%%/uk/alpha/n.ogg %%DATADIR%%/uk/alpha/o.ogg %%DATADIR%%/uk/alpha/pe.ogg %%DATADIR%%/uk/alpha/scha.ogg %%DATADIR%%/uk/alpha/sha.ogg %%DATADIR%%/uk/alpha/te.ogg %%DATADIR%%/uk/alpha/tse.ogg %%DATADIR%%/uk/alpha/u.ogg %%DATADIR%%/uk/alpha/ve.ogg %%DATADIR%%/uk/alpha/y.ogg %%DATADIR%%/uk/alpha/ya.ogg %%DATADIR%%/uk/alpha/ye.ogg %%DATADIR%%/uk/alpha/yi.ogg %%DATADIR%%/uk/alpha/yot.ogg %%DATADIR%%/uk/alpha/yu.ogg %%DATADIR%%/uk/alpha/ze.ogg %%DATADIR%%/uk/alpha/zhe.ogg %%DATADIR%%/uk/alpha/zm.ogg %%DATADIR%%/uk/sounds.xml %%DATADIR%%/uk/syllab/ba.ogg %%DATADIR%%/uk/syllab/bi.ogg %%DATADIR%%/uk/syllab/bo.ogg %%DATADIR%%/uk/syllab/boh.ogg %%DATADIR%%/uk/syllab/bu.ogg %%DATADIR%%/uk/syllab/chi.ogg %%DATADIR%%/uk/syllab/cho.ogg %%DATADIR%%/uk/syllab/chut.ogg %%DATADIR%%/uk/syllab/chy.ogg %%DATADIR%%/uk/syllab/do.ogg %%DATADIR%%/uk/syllab/du.ogg %%DATADIR%%/uk/syllab/dzha.ogg %%DATADIR%%/uk/syllab/dzho.ogg %%DATADIR%%/uk/syllab/dzy.ogg %%DATADIR%%/uk/syllab/ga.ogg %%DATADIR%%/uk/syllab/gy.ogg %%DATADIR%%/uk/syllab/ha.ogg %%DATADIR%%/uk/syllab/hli.ogg %%DATADIR%%/uk/syllab/hy.ogg %%DATADIR%%/uk/syllab/hyzh.ogg %%DATADIR%%/uk/syllab/ko.ogg %%DATADIR%%/uk/syllab/ku.ogg %%DATADIR%%/uk/syllab/lo.ogg %%DATADIR%%/uk/syllab/ly.ogg %%DATADIR%%/uk/syllab/lya.ogg %%DATADIR%%/uk/syllab/lyu.ogg %%DATADIR%%/uk/syllab/mi.ogg %%DATADIR%%/uk/syllab/ni.ogg %%DATADIR%%/uk/syllab/ny.ogg %%DATADIR%%/uk/syllab/nya.ogg %%DATADIR%%/uk/syllab/pi.ogg %%DATADIR%%/uk/syllab/ro.ogg %%DATADIR%%/uk/syllab/rys.ogg %%DATADIR%%/uk/syllab/ryss.ogg %%DATADIR%%/uk/syllab/schy.ogg %%DATADIR%%/uk/syllab/she.ogg %%DATADIR%%/uk/syllab/so.ogg %%DATADIR%%/uk/syllab/sya.ogg %%DATADIR%%/uk/syllab/sych.ogg %%DATADIR%%/uk/syllab/syt.ogg %%DATADIR%%/uk/syllab/syu.ogg %%DATADIR%%/uk/syllab/ta.ogg %%DATADIR%%/uk/syllab/te.ogg %%DATADIR%%/uk/syllab/til.ogg %%DATADIR%%/uk/syllab/to.ogg %%DATADIR%%/uk/syllab/tsy.ogg %%DATADIR%%/uk/syllab/tsya.ogg %%DATADIR%%/uk/syllab/tviy.ogg %%DATADIR%%/uk/syllab/tvoya.ogg %%DATADIR%%/uk/syllab/vay.ogg %%DATADIR%%/uk/syllab/vo.ogg %%DATADIR%%/uk/syllab/vov.ogg %%DATADIR%%/uk/syllab/yem.ogg %%DATADIR%%/uk/syllab/yim.ogg %%DATADIR%%/uk/syllab/yizh.ogg %%DATADIR%%/uk/syllab/yo.ogg %%DATADIR%%/uk/syllab/zhe.ogg %%DATADIR%%/uk/syllab/zhy.ogg %%DATADIR%%/uk/syllab/zhyt.ogg %%DATADIR%%/uk/syllab/zmi.ogg %%DATADIR%%/uk/syllab/zyk.ogg share/kxmlgui5/klettres/klettresui.rc share/locale/ar/LC_MESSAGES/klettres.mo share/locale/bg/LC_MESSAGES/klettres.mo share/locale/bs/LC_MESSAGES/klettres.mo share/locale/ca/LC_MESSAGES/klettres.mo share/locale/ca@valencia/LC_MESSAGES/klettres.mo share/locale/cs/LC_MESSAGES/klettres.mo share/locale/da/LC_MESSAGES/klettres.mo share/locale/de/LC_MESSAGES/klettres.mo share/locale/el/LC_MESSAGES/klettres.mo share/locale/en_GB/LC_MESSAGES/klettres.mo share/locale/eo/LC_MESSAGES/klettres.mo share/locale/es/LC_MESSAGES/klettres.mo share/locale/et/LC_MESSAGES/klettres.mo share/locale/eu/LC_MESSAGES/klettres.mo share/locale/fa/LC_MESSAGES/klettres.mo share/locale/fi/LC_MESSAGES/klettres.mo share/locale/fr/LC_MESSAGES/klettres.mo share/locale/ga/LC_MESSAGES/klettres.mo share/locale/gl/LC_MESSAGES/klettres.mo share/locale/he/LC_MESSAGES/klettres.mo share/locale/hi/LC_MESSAGES/klettres.mo share/locale/hr/LC_MESSAGES/klettres.mo share/locale/hu/LC_MESSAGES/klettres.mo +share/locale/id/LC_MESSAGES/klettres.mo share/locale/is/LC_MESSAGES/klettres.mo share/locale/it/LC_MESSAGES/klettres.mo share/locale/ja/LC_MESSAGES/klettres.mo share/locale/kk/LC_MESSAGES/klettres.mo share/locale/km/LC_MESSAGES/klettres.mo share/locale/lt/LC_MESSAGES/klettres.mo share/locale/lv/LC_MESSAGES/klettres.mo share/locale/ml/LC_MESSAGES/klettres.mo share/locale/mr/LC_MESSAGES/klettres.mo share/locale/nb/LC_MESSAGES/klettres.mo share/locale/nds/LC_MESSAGES/klettres.mo share/locale/nl/LC_MESSAGES/klettres.mo share/locale/nn/LC_MESSAGES/klettres.mo share/locale/pa/LC_MESSAGES/klettres.mo share/locale/pl/LC_MESSAGES/klettres.mo share/locale/pt/LC_MESSAGES/klettres.mo share/locale/pt_BR/LC_MESSAGES/klettres.mo share/locale/ro/LC_MESSAGES/klettres.mo share/locale/ru/LC_MESSAGES/klettres.mo share/locale/sk/LC_MESSAGES/klettres.mo share/locale/sl/LC_MESSAGES/klettres.mo share/locale/sv/LC_MESSAGES/klettres.mo share/locale/tr/LC_MESSAGES/klettres.mo share/locale/ug/LC_MESSAGES/klettres.mo share/locale/uk/LC_MESSAGES/klettres.mo share/locale/wa/LC_MESSAGES/klettres.mo share/locale/zh_CN/LC_MESSAGES/klettres.mo share/locale/zh_TW/LC_MESSAGES/klettres.mo share/metainfo/org.kde.klettres.appdata.xml Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 517111) +++ head/misc/ktouch/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544566 -SHA256 (KDE/applications/19.08.2/ktouch-19.08.2.tar.xz) = d36659c21d05465c7a77330dbfbbab09946093eac1db6c02147d81a838eba636 -SIZE (KDE/applications/19.08.2/ktouch-19.08.2.tar.xz) = 4934684 +TIMESTAMP = 1572930912 +SHA256 (KDE/applications/19.08.3/ktouch-19.08.3.tar.xz) = 8a288377a37f5afbd657c452c45628186646b27585a67312e35930a9fb581d37 +SIZE (KDE/applications/19.08.3/ktouch-19.08.3.tar.xz) = 4937064 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 517111) +++ head/misc/kwordquiz/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544566 -SHA256 (KDE/applications/19.08.2/kwordquiz-19.08.2.tar.xz) = 9bb9abc4058b8520a9229317d7da6cbbddb8a715549ca487c04af5f9eb425019 -SIZE (KDE/applications/19.08.2/kwordquiz-19.08.2.tar.xz) = 4174044 +TIMESTAMP = 1572930913 +SHA256 (KDE/applications/19.08.3/kwordquiz-19.08.3.tar.xz) = 9561e4817b5b273f74e7591d1ecb82db45140eea2ea36ab3e2f21d81faa1b66d +SIZE (KDE/applications/19.08.3/kwordquiz-19.08.3.tar.xz) = 4174684 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 517111) +++ head/misc/libkeduvocdocument/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544567 -SHA256 (KDE/applications/19.08.2/libkeduvocdocument-19.08.2.tar.xz) = 74338cb3fcb9346a981585484f758aabd372d1a43afe9facd93d94c229424250 -SIZE (KDE/applications/19.08.2/libkeduvocdocument-19.08.2.tar.xz) = 210732 +TIMESTAMP = 1572930914 +SHA256 (KDE/applications/19.08.3/libkeduvocdocument-19.08.3.tar.xz) = 19d816ae3dd2395f53c8bc19a4d62dcd6fcec0bcebbc8ebfe32987afdb87ee14 +SIZE (KDE/applications/19.08.3/libkeduvocdocument-19.08.3.tar.xz) = 211172 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 517111) +++ head/misc/parley/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544588 -SHA256 (KDE/applications/19.08.2/parley-19.08.2.tar.xz) = 1201945d55657d6b89e309220edb1a60a61debf0bbf59b508d1c0a21a8dc407e -SIZE (KDE/applications/19.08.2/parley-19.08.2.tar.xz) = 8831840 +TIMESTAMP = 1572930934 +SHA256 (KDE/applications/19.08.3/parley-19.08.3.tar.xz) = a3d11ddf5a6c8244e5a22c10f6e256ad8bd857802d994550549c7f73f8ed8da8 +SIZE (KDE/applications/19.08.3/parley-19.08.3.tar.xz) = 8827432 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 517111) +++ head/multimedia/dragon/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544588 -SHA256 (KDE/applications/19.08.2/dragon-19.08.2.tar.xz) = 3924dba504f370415c0d68cb5079acfc941aa761e9d9d2df2ea48b302ef9ce61 -SIZE (KDE/applications/19.08.2/dragon-19.08.2.tar.xz) = 1351332 +TIMESTAMP = 1572930935 +SHA256 (KDE/applications/19.08.3/dragon-19.08.3.tar.xz) = f9172f6ddf75cf8e4be19d50f80994d59545fdea966674fb67abe7a7c934810a +SIZE (KDE/applications/19.08.3/dragon-19.08.3.tar.xz) = 1350768 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 517111) +++ head/multimedia/kamoso/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544609 -SHA256 (KDE/applications/19.08.2/kamoso-19.08.2.tar.xz) = 2b84b3b3fb7f423bbe69716114563f018e02d63ce7b9b85084d098123e4e29b8 -SIZE (KDE/applications/19.08.2/kamoso-19.08.2.tar.xz) = 201724 +TIMESTAMP = 1572930956 +SHA256 (KDE/applications/19.08.3/kamoso-19.08.3.tar.xz) = 437ddca6849ff3ad964737794ab8d22f8d152ad4aa9172dd838c77c59fc81448 +SIZE (KDE/applications/19.08.3/kamoso-19.08.3.tar.xz) = 201848 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 517111) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544610 -SHA256 (KDE/applications/19.08.2/ffmpegthumbs-19.08.2.tar.xz) = deba57ff10525efdf404401f6b605c1be0f02ec0bfe00465e080b42dc379d570 -SIZE (KDE/applications/19.08.2/ffmpegthumbs-19.08.2.tar.xz) = 24920 +TIMESTAMP = 1572930957 +SHA256 (KDE/applications/19.08.3/ffmpegthumbs-19.08.3.tar.xz) = c91ad8e83df474971cf9766f2398e88e45d02dd2e51a7a794ace02f22c38c0f0 +SIZE (KDE/applications/19.08.3/ffmpegthumbs-19.08.3.tar.xz) = 25112 Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 517111) +++ head/multimedia/kdenlive/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572722360 -SHA256 (KDE/applications/19.08.2/kdenlive-19.08.2.tar.xz) = 5ca3b7a2457d2aa355309bc7471791f691edd8774af9a19cbfc8fac39ad53c78 -SIZE (KDE/applications/19.08.2/kdenlive-19.08.2.tar.xz) = 12413952 +TIMESTAMP = 1572973369 +SHA256 (KDE/applications/19.08.3/kdenlive-19.08.3.tar.xz) = 64ab3cf06222b95f021941d8c430c70918c04c3ea988f7ccf5ef87c6b69b4465 +SIZE (KDE/applications/19.08.3/kdenlive-19.08.3.tar.xz) = 12418064 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 517111) +++ head/net/akonadi-calendar/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544662 -SHA256 (KDE/applications/19.08.2/akonadi-calendar-19.08.2.tar.xz) = 5beba24af485c8dae96944e4b5bd570460eb2868ba069580c2e5d784be38a3c8 -SIZE (KDE/applications/19.08.2/akonadi-calendar-19.08.2.tar.xz) = 332664 +TIMESTAMP = 1572930990 +SHA256 (KDE/applications/19.08.3/akonadi-calendar-19.08.3.tar.xz) = 1ec66241551b0bd3e2cabd2df1547e3622b3c74e0ddaec535b5666141180a094 +SIZE (KDE/applications/19.08.3/akonadi-calendar-19.08.3.tar.xz) = 331796 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 517111) +++ head/net/akonadi-contacts/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544663 -SHA256 (KDE/applications/19.08.2/akonadi-contacts-19.08.2.tar.xz) = eafeb550faea91a56109821864eedfbd619dc7850887746d31c1724ea7561920 -SIZE (KDE/applications/19.08.2/akonadi-contacts-19.08.2.tar.xz) = 384864 +TIMESTAMP = 1572930991 +SHA256 (KDE/applications/19.08.3/akonadi-contacts-19.08.3.tar.xz) = a95ff2621e198e2685b7cd591e39437e68b5670cd710ce06088bd16618d281df +SIZE (KDE/applications/19.08.3/akonadi-contacts-19.08.3.tar.xz) = 385320 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 517111) +++ head/net/akonadi-mime/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544664 -SHA256 (KDE/applications/19.08.2/akonadi-mime-19.08.2.tar.xz) = 16f8034d7990828c50a85474fe16641dfa46e22d00f49d8045d3483c61815264 -SIZE (KDE/applications/19.08.2/akonadi-mime-19.08.2.tar.xz) = 132580 +TIMESTAMP = 1572930991 +SHA256 (KDE/applications/19.08.3/akonadi-mime-19.08.3.tar.xz) = e779a2b73b628702aec52b1d4345533f54f06624915b193766af3ef6a16d030f +SIZE (KDE/applications/19.08.3/akonadi-mime-19.08.3.tar.xz) = 132756 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 517111) +++ head/net/akonadi-notes/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544664 -SHA256 (KDE/applications/19.08.2/akonadi-notes-19.08.2.tar.xz) = 64684c50d06664d8ccda098f8bfa536e861e4938c8f27688ef97653f7788fdde -SIZE (KDE/applications/19.08.2/akonadi-notes-19.08.2.tar.xz) = 24432 +TIMESTAMP = 1572930992 +SHA256 (KDE/applications/19.08.3/akonadi-notes-19.08.3.tar.xz) = 7c701d8a032161f9a58a55dd7e71a9a261fed8044ddc59d6d5f04bb742801b65 +SIZE (KDE/applications/19.08.3/akonadi-notes-19.08.3.tar.xz) = 24416 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 517111) +++ head/net/akonadi-search/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544665 -SHA256 (KDE/applications/19.08.2/akonadi-search-19.08.2.tar.xz) = 75c9713b84a03c60a68ff36652decbf57f4f56a0fb39579f53e7ed80a5ee8525 -SIZE (KDE/applications/19.08.2/akonadi-search-19.08.2.tar.xz) = 82744 +TIMESTAMP = 1572930993 +SHA256 (KDE/applications/19.08.3/akonadi-search-19.08.3.tar.xz) = 3a04a82b7f13aad0a5c283931b347a951b8b4bf299bfc6f8cdbc5ba299d01f9b +SIZE (KDE/applications/19.08.3/akonadi-search-19.08.3.tar.xz) = 82480 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 517111) +++ head/net/calendarsupport/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544666 -SHA256 (KDE/applications/19.08.2/calendarsupport-19.08.2.tar.xz) = 9ae448463ca60e075f1ea9a22489f0acf6ea672c00f9bd7b49027e548e82c2af -SIZE (KDE/applications/19.08.2/calendarsupport-19.08.2.tar.xz) = 646644 +TIMESTAMP = 1572930994 +SHA256 (KDE/applications/19.08.3/calendarsupport-19.08.3.tar.xz) = 2406dd3387383cc58eb0e6f10bf50cc1b206c75096c6c6af27c1102c6d818ec3 +SIZE (KDE/applications/19.08.3/calendarsupport-19.08.3.tar.xz) = 646440 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 517111) +++ head/net/eventviews/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544666 -SHA256 (KDE/applications/19.08.2/eventviews-19.08.2.tar.xz) = 48da7f85c86bcc7a64d475c5bbcbb531471e70cfc9f4bda76030280f0671132d -SIZE (KDE/applications/19.08.2/eventviews-19.08.2.tar.xz) = 443016 +TIMESTAMP = 1572930995 +SHA256 (KDE/applications/19.08.3/eventviews-19.08.3.tar.xz) = 3c110fb5001e71d664aaa3b09a3689c0bb16ca12ee169e98f6ff454a0ee81ba4 +SIZE (KDE/applications/19.08.3/eventviews-19.08.3.tar.xz) = 443148 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 517111) +++ head/net/incidenceeditor/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544667 -SHA256 (KDE/applications/19.08.2/incidenceeditor-19.08.2.tar.xz) = f2f7bf3a12af21e6f9e4a5f2ba93346e06a6988366af7b452d6268ac9fb4fc3d -SIZE (KDE/applications/19.08.2/incidenceeditor-19.08.2.tar.xz) = 549804 +TIMESTAMP = 1572930995 +SHA256 (KDE/applications/19.08.3/incidenceeditor-19.08.3.tar.xz) = e6753efc2841a5b0b63a2b02f07c5b77274214576e5e9fc66b962b18c516266d +SIZE (KDE/applications/19.08.3/incidenceeditor-19.08.3.tar.xz) = 550144 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 517111) +++ head/net/kalarmcal/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544668 -SHA256 (KDE/applications/19.08.2/kalarmcal-19.08.2.tar.xz) = 4dc6e1cd8a9cbf6e3f8e593e68ef6fa912819ece56efa64852ab33e3f582e6b7 -SIZE (KDE/applications/19.08.2/kalarmcal-19.08.2.tar.xz) = 573868 +TIMESTAMP = 1572930996 +SHA256 (KDE/applications/19.08.3/kalarmcal-19.08.3.tar.xz) = f6e9d0c99d228fc922e52ae3ddb33f2b691290e58a48edc816de72fc44d73871 +SIZE (KDE/applications/19.08.3/kalarmcal-19.08.3.tar.xz) = 573036 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 517111) +++ head/net/kblog/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544668 -SHA256 (KDE/applications/19.08.2/kblog-19.08.2.tar.xz) = f4d9017d38746b9669efebf5b6cfdc5ebf1cbaf1bbf45ab331530ade3c21cbb5 -SIZE (KDE/applications/19.08.2/kblog-19.08.2.tar.xz) = 73068 +TIMESTAMP = 1572930997 +SHA256 (KDE/applications/19.08.3/kblog-19.08.3.tar.xz) = 7b030a13c79a6add2b6f46b840e347609b39099c937d5bc5fb9310e2da987164 +SIZE (KDE/applications/19.08.3/kblog-19.08.3.tar.xz) = 72776 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 517111) +++ head/net/kcalutils/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544670 -SHA256 (KDE/applications/19.08.2/kcalutils-19.08.2.tar.xz) = 3f789a18348152f9fc70965dbc2e9a8bd0ba872968c3d0631afacd0e78d3ce13 -SIZE (KDE/applications/19.08.2/kcalutils-19.08.2.tar.xz) = 322940 +TIMESTAMP = 1572930998 +SHA256 (KDE/applications/19.08.3/kcalutils-19.08.3.tar.xz) = 821742c98dd55a1334c13ea9d59e177ade048b1d3ade4775803eb288c98c93da +SIZE (KDE/applications/19.08.3/kcalutils-19.08.3.tar.xz) = 323380 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 517111) +++ head/net/kdav/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544671 -SHA256 (KDE/applications/19.08.2/kdav-19.08.2.tar.xz) = 8572a77ee3d0f8a7e09e4975fcf0420394c16e908c4a19aecc409415770595f9 -SIZE (KDE/applications/19.08.2/kdav-19.08.2.tar.xz) = 50108 +TIMESTAMP = 1572930998 +SHA256 (KDE/applications/19.08.3/kdav-19.08.3.tar.xz) = e85a0a8dcfdccc1dc0afaee364c45d57c6807fadb6926ae1a5afc54c4fb0a9f0 +SIZE (KDE/applications/19.08.3/kdav-19.08.3.tar.xz) = 49824 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 517111) +++ head/net/kdenetwork-filesharing/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544672 -SHA256 (KDE/applications/19.08.2/kdenetwork-filesharing-19.08.2.tar.xz) = ceffdaabd3417db306c05ecd6a62b521d0b3eb5996d320d65ae5c51ea46bfdda -SIZE (KDE/applications/19.08.2/kdenetwork-filesharing-19.08.2.tar.xz) = 315516 +TIMESTAMP = 1572930999 +SHA256 (KDE/applications/19.08.3/kdenetwork-filesharing-19.08.3.tar.xz) = 4074d996c693bdd69fd88e6f2acede79c05b2eceef1d3ed81f311247640ef366 +SIZE (KDE/applications/19.08.3/kdenetwork-filesharing-19.08.3.tar.xz) = 315492 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 517111) +++ head/net/kget/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544673 -SHA256 (KDE/applications/19.08.2/kget-19.08.2.tar.xz) = e93795eec8f51cac2719ab31cfa6f5f4f642b166ffbb3f876ab3c866a4cd7df1 -SIZE (KDE/applications/19.08.2/kget-19.08.2.tar.xz) = 5232168 +TIMESTAMP = 1572931000 +SHA256 (KDE/applications/19.08.3/kget-19.08.3.tar.xz) = 5a107da8313731114e7b5528f4c0cf6e0ab62867e20a9caa802de23812c69800 +SIZE (KDE/applications/19.08.3/kget-19.08.3.tar.xz) = 5232796 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 517111) +++ head/net/kidentitymanagement/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544673 -SHA256 (KDE/applications/19.08.2/kidentitymanagement-19.08.2.tar.xz) = 8f93f9546d570c8f7b2602a3a171641d488595ec8da3c47b0a08ef4f5083e884 -SIZE (KDE/applications/19.08.2/kidentitymanagement-19.08.2.tar.xz) = 149220 +TIMESTAMP = 1572931001 +SHA256 (KDE/applications/19.08.3/kidentitymanagement-19.08.3.tar.xz) = 6ed512d3b42378a767299660c2b9fe142b840cdaaae70c522104c37275221f37 +SIZE (KDE/applications/19.08.3/kidentitymanagement-19.08.3.tar.xz) = 149208 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 517111) +++ head/net/kimap/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544674 -SHA256 (KDE/applications/19.08.2/kimap-19.08.2.tar.xz) = 250479c78517610aab810f54184d8826fb981438ec9f0d5c423ad781a796ee00 -SIZE (KDE/applications/19.08.2/kimap-19.08.2.tar.xz) = 119644 +TIMESTAMP = 1572931002 +SHA256 (KDE/applications/19.08.3/kimap-19.08.3.tar.xz) = 46ca8d265b7191d75db8c6a4d988624385c9ab8eae702a42e6eb4b81be581051 +SIZE (KDE/applications/19.08.3/kimap-19.08.3.tar.xz) = 119512 Index: head/net/kitinerary/files/patch-git_bd9003c =================================================================== --- head/net/kitinerary/files/patch-git_bd9003c (revision 517111) +++ head/net/kitinerary/files/patch-git_bd9003c (nonexistent) @@ -1,124 +0,0 @@ -From bd9003c67d2ac62a00918aeb22a4911b51d99a47 Mon Sep 17 00:00:00 2001 -From: Volker Krause -Date: Sun, 29 Sep 2019 12:51:57 +0200 -Subject: [PATCH] Fix compatibility with Poppler 0.82 - ---- - CMakeLists.txt | 17 ++++++---------- - src/config-kitinerary.h.cmake | 1 + - src/pdf/pdfextractoroutputdevice.cpp | 2 +- - src/pdf/pdfextractoroutputdevice_p.h | 3 ++- - src/pdf/popplertypes_p.h | 30 ++++++++++++++++++++++++++++ - 5 files changed, 40 insertions(+), 13 deletions(-) - create mode 100644 src/pdf/popplertypes_p.h - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 489c618..a4db328 100644 ---- CMakeLists.txt -+++ CMakeLists.txt -@@ -65,17 +65,12 @@ if(TARGET Poppler::Core) - if (${Poppler_VERSION} VERSION_GREATER 0.68) - set(HAVE_POPPLER_0_69 ON) - endif() -- set(CMAKE_REQUIRED_LIBRARIES Poppler::Core Qt5::Core) -- check_cxx_source_compiles(" -- #include -- #include -- int main() -- { -- GooString s; -- QString val = QString::fromUtf8(s.c_str()); -- return 0; -- } -- " HAVE_POPPLER_0_72) -+ if (${Poppler_VERSION} VERSION_GREATER 0.71) -+ set(HAVE_POPPLER_0_72 ON) -+ endif() -+ if (${Poppler_VERSION} VERSION_GREATER 0.81) -+ set(HAVE_POPPLER_0_82 ON) -+ endif() - endif() - - if (TARGET ZXing::Core) -diff --git a/src/config-kitinerary.h.cmake b/src/config-kitinerary.h.cmake -index c422512..deac15f 100644 ---- src/config-kitinerary.h.cmake -+++ src/config-kitinerary.h.cmake -@@ -24,6 +24,7 @@ - #cmakedefine HAVE_POPPLER_0_58 - #cmakedefine HAVE_POPPLER_0_69 - #cmakedefine HAVE_POPPLER_0_72 -+#cmakedefine HAVE_POPPLER_0_82 - - #cmakedefine HAVE_ZXING - -diff --git a/src/pdf/pdfextractoroutputdevice.cpp b/src/pdf/pdfextractoroutputdevice.cpp -index 2a06c82..0027cad 100644 ---- src/pdf/pdfextractoroutputdevice.cpp -+++ src/pdf/pdfextractoroutputdevice.cpp -@@ -30,7 +30,7 @@ PdfExtractorOutputDevice::PdfExtractorOutputDevice() - { - } - --void PdfExtractorOutputDevice::drawImage(GfxState* state, Object* ref, Stream* str, int width, int height, GfxImageColorMap* colorMap, bool interpolate, int* maskColors, bool inlineImg) -+void PdfExtractorOutputDevice::drawImage(GfxState* state, Object* ref, Stream* str, int width, int height, GfxImageColorMap* colorMap, bool interpolate, PopplerMaskColors* maskColors, bool inlineImg) - { - Q_UNUSED(str); - Q_UNUSED(interpolate); -diff --git a/src/pdf/pdfextractoroutputdevice_p.h b/src/pdf/pdfextractoroutputdevice_p.h -index 9241f9f..5d448d3 100644 ---- src/pdf/pdfextractoroutputdevice_p.h -+++ src/pdf/pdfextractoroutputdevice_p.h -@@ -21,6 +21,7 @@ - #include - - #include "pdfvectorpicture_p.h" -+#include "popplertypes_p.h" - - #ifdef HAVE_POPPLER - #include -@@ -43,7 +44,7 @@ class PdfExtractorOutputDevice : public TextOutputDev - void finalize(); - - bool needNonText() override { return true; } -- void drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, int *maskColors, bool inlineImg) override; -+ void drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, PopplerMaskColors *maskColors, bool inlineImg) override; - - // operations used to detect vector barcodes - void saveState(GfxState *state) override; -diff --git a/src/pdf/popplertypes_p.h b/src/pdf/popplertypes_p.h -new file mode 100644 -index 0000000..f9d844a ---- /dev/null -+++ src/pdf/popplertypes_p.h -@@ -0,0 +1,30 @@ -+/* -+ Copyright (C) 2019 Volker Krause -+ -+ This program is free software; you can redistribute it and/or modify it -+ under the terms of the GNU Library General Public License as published by -+ the Free Software Foundation; either version 2 of the License, or (at your -+ option) any later version. -+ -+ This program is distributed in the hope that it will be useful, but WITHOUT -+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public -+ License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program. If not, see . -+*/ -+ -+#ifndef KITINERARY_POPPLERTYPES_P_H -+#define KITINERARY_POPPLERTYPES_P_H -+ -+#include -+ -+#ifdef HAVE_POPPLER_0_82 -+using PopplerMaskColors = const int; -+#else -+using PopplerMaskColors = int; -+#endif -+ -+#endif // KITINERARY_POPPLERTYPES_P_H -+ Property changes on: head/net/kitinerary/files/patch-git_bd9003c ___________________________________________________________________ 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/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 517111) +++ head/net/kitinerary/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544675 -SHA256 (KDE/applications/19.08.2/kitinerary-19.08.2.tar.xz) = d814a2f1deaadce5fec85b1122aab6ff926c53ca8f020aadc99401bd31597eaa -SIZE (KDE/applications/19.08.2/kitinerary-19.08.2.tar.xz) = 954636 +TIMESTAMP = 1572931002 +SHA256 (KDE/applications/19.08.3/kitinerary-19.08.3.tar.xz) = d13e701b8a988999477c030fffe687b4c333a330717a15b72651458f35e6e151 +SIZE (KDE/applications/19.08.3/kitinerary-19.08.3.tar.xz) = 955500 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 517111) +++ head/net/kldap/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544675 -SHA256 (KDE/applications/19.08.2/kldap-19.08.2.tar.xz) = 79c540693b85c138ae7bf4f72213dfad6dfa48dfc0ab414004d93f15d2ffac6e -SIZE (KDE/applications/19.08.2/kldap-19.08.2.tar.xz) = 155428 +TIMESTAMP = 1572931003 +SHA256 (KDE/applications/19.08.3/kldap-19.08.3.tar.xz) = b65ba5fefab7ecb92a7d38ac718e53077d9d9a87d73f121e32019aad90b48bae +SIZE (KDE/applications/19.08.3/kldap-19.08.3.tar.xz) = 155372 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 517111) +++ head/net/kmailtransport/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544676 -SHA256 (KDE/applications/19.08.2/kmailtransport-19.08.2.tar.xz) = c545fb5546e82f7dfcea4c6e1a8b565ad04e34851c33876c9bf74c9fbc3165c7 -SIZE (KDE/applications/19.08.2/kmailtransport-19.08.2.tar.xz) = 166500 +TIMESTAMP = 1572931004 +SHA256 (KDE/applications/19.08.3/kmailtransport-19.08.3.tar.xz) = 24cf570b2ab77a69e55adb013e1d7e3eaf17f5ced900d8e5166890bb3ab64d12 +SIZE (KDE/applications/19.08.3/kmailtransport-19.08.3.tar.xz) = 166240 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 517111) +++ head/net/kmbox/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544677 -SHA256 (KDE/applications/19.08.2/kmbox-19.08.2.tar.xz) = 82e2f64b90a1386100e13f9b2afea5d71952a1cb9547f965ddcdb3b8c59c35b1 -SIZE (KDE/applications/19.08.2/kmbox-19.08.2.tar.xz) = 24560 +TIMESTAMP = 1572931005 +SHA256 (KDE/applications/19.08.3/kmbox-19.08.3.tar.xz) = e29d0df5344babb08f1befce2be9eae6a2e872f74757367454651ad26dd8658d +SIZE (KDE/applications/19.08.3/kmbox-19.08.3.tar.xz) = 24444 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 517111) +++ head/net/kmime/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544677 -SHA256 (KDE/applications/19.08.2/kmime-19.08.2.tar.xz) = f153332bb71de9d4451b8d28135a914059f5156fc8dda33f6375671603477771 -SIZE (KDE/applications/19.08.2/kmime-19.08.2.tar.xz) = 147356 +TIMESTAMP = 1572931005 +SHA256 (KDE/applications/19.08.3/kmime-19.08.3.tar.xz) = e659e1154fbc11db624f1b76bc1a8e5cf8c7f6731cef7b4ff6fad9ccf90580dd +SIZE (KDE/applications/19.08.3/kmime-19.08.3.tar.xz) = 146916 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 517111) +++ head/net/kontactinterface/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544678 -SHA256 (KDE/applications/19.08.2/kontactinterface-19.08.2.tar.xz) = cbd34915ddf6fbcf02395f7c876050f2b732f3769627489f04979e419cfdc869 -SIZE (KDE/applications/19.08.2/kontactinterface-19.08.2.tar.xz) = 33188 +TIMESTAMP = 1572931006 +SHA256 (KDE/applications/19.08.3/kontactinterface-19.08.3.tar.xz) = 67827b27e46d381a207bcd6986b0285c0b7629ec9b93048e9503768662e211dc +SIZE (KDE/applications/19.08.3/kontactinterface-19.08.3.tar.xz) = 33176 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 517111) +++ head/net/kpimtextedit/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544678 -SHA256 (KDE/applications/19.08.2/kpimtextedit-19.08.2.tar.xz) = e565774d77f310165fc44c8b109ef835aae82a2f763d89d1ffb6e5b820cd850d -SIZE (KDE/applications/19.08.2/kpimtextedit-19.08.2.tar.xz) = 155012 +TIMESTAMP = 1572931007 +SHA256 (KDE/applications/19.08.3/kpimtextedit-19.08.3.tar.xz) = 75ff2300e771a1fe02a19ef57e2a28489179a92dc184c924be495e878b4444ab +SIZE (KDE/applications/19.08.3/kpimtextedit-19.08.3.tar.xz) = 155000 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 517111) +++ head/net/krdc/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544679 -SHA256 (KDE/applications/19.08.2/krdc-19.08.2.tar.xz) = c5e6193115afe742f25365bacb55aea21428acf38407659f77636217c589d8ff -SIZE (KDE/applications/19.08.2/krdc-19.08.2.tar.xz) = 1421932 +TIMESTAMP = 1572931008 +SHA256 (KDE/applications/19.08.3/krdc-19.08.3.tar.xz) = d4cbaebaa3cd56ef5ec728a1d09edf72e8dfc18174e59f954a5f7ec8494acfdc +SIZE (KDE/applications/19.08.3/krdc-19.08.3.tar.xz) = 1423272 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 517111) +++ head/net/krfb/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544700 -SHA256 (KDE/applications/19.08.2/krfb-19.08.2.tar.xz) = 08877020abf6b7ac38e393443c34e7791456fc5bea8c43c552551148fd67b67e -SIZE (KDE/applications/19.08.2/krfb-19.08.2.tar.xz) = 1277268 +TIMESTAMP = 1572931009 +SHA256 (KDE/applications/19.08.3/krfb-19.08.3.tar.xz) = c708e10b909151dee362205af9db72946b9bbb86f3d87aaf2d2a9956a9242e1d +SIZE (KDE/applications/19.08.3/krfb-19.08.3.tar.xz) = 1278072 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 517111) +++ head/net/ksmtp/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544700 -SHA256 (KDE/applications/19.08.2/ksmtp-19.08.2.tar.xz) = 0d1308fd01f7261e78bedb465983be2ccf5a1514cfa31125e0a3488f67ab6590 -SIZE (KDE/applications/19.08.2/ksmtp-19.08.2.tar.xz) = 40444 +TIMESTAMP = 1572931009 +SHA256 (KDE/applications/19.08.3/ksmtp-19.08.3.tar.xz) = 16b389a8dcb938ed3f1e2f4b10a5aa31c16eac8df89963a71c08af3e54ada8dd +SIZE (KDE/applications/19.08.3/ksmtp-19.08.3.tar.xz) = 40472 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 517111) +++ head/net/ktnef/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544701 -SHA256 (KDE/applications/19.08.2/ktnef-19.08.2.tar.xz) = d8efabe72eedd5e89f3de9637a1a6d68ce670ec071e031470aa6852f9ad8561d -SIZE (KDE/applications/19.08.2/ktnef-19.08.2.tar.xz) = 299312 +TIMESTAMP = 1572931010 +SHA256 (KDE/applications/19.08.3/ktnef-19.08.3.tar.xz) = 86ae57b54047f51d31292fb71f2410660dd5bf7ca54e847b78108c600884ee4d +SIZE (KDE/applications/19.08.3/ktnef-19.08.3.tar.xz) = 299736 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 517111) +++ head/net/libgravatar/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544702 -SHA256 (KDE/applications/19.08.2/libgravatar-19.08.2.tar.xz) = 393370a9d7d4a74627469b2e67bb3f7a0ef73dac8b11a3ab5af6c384c20a0de5 -SIZE (KDE/applications/19.08.2/libgravatar-19.08.2.tar.xz) = 31012 +TIMESTAMP = 1572931011 +SHA256 (KDE/applications/19.08.3/libgravatar-19.08.3.tar.xz) = 7f3421d1074065221e7ff892ba5f32614aef08b9ee407b5d8301e20f414bf8fb +SIZE (KDE/applications/19.08.3/libgravatar-19.08.3.tar.xz) = 30804 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 517111) +++ head/net/libkgapi/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544703 -SHA256 (KDE/applications/19.08.2/libkgapi-19.08.2.tar.xz) = b220908dd4a21e589a25b964b7786f1154f63ca98bf90c43ced3120adf4fb0a6 -SIZE (KDE/applications/19.08.2/libkgapi-19.08.2.tar.xz) = 234956 +TIMESTAMP = 1572931012 +SHA256 (KDE/applications/19.08.3/libkgapi-19.08.3.tar.xz) = 085878396ae2a8bed7e9121d985de848c515992a3c6c989b9510125bc859e67c +SIZE (KDE/applications/19.08.3/libkgapi-19.08.3.tar.xz) = 234484 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 517111) +++ head/net/libksieve/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544703 -SHA256 (KDE/applications/19.08.2/libksieve-19.08.2.tar.xz) = 5c5bb9182e53a2a928d70985f6dd514c8b308891c4899b942784e80d221318f6 -SIZE (KDE/applications/19.08.2/libksieve-19.08.2.tar.xz) = 549824 +TIMESTAMP = 1572931012 +SHA256 (KDE/applications/19.08.3/libksieve-19.08.3.tar.xz) = a10311192a57d1b7073d73477f5cefdf7c42d0a720d0eaf406986e4f1835ce60 +SIZE (KDE/applications/19.08.3/libksieve-19.08.3.tar.xz) = 549664 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 517111) +++ head/net/mailcommon/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544704 -SHA256 (KDE/applications/19.08.2/mailcommon-19.08.2.tar.xz) = 39df1544c0278600d5a1a57697835828358ae44203087e29430ce1bd0c355e20 -SIZE (KDE/applications/19.08.2/mailcommon-19.08.2.tar.xz) = 693916 +TIMESTAMP = 1572931013 +SHA256 (KDE/applications/19.08.3/mailcommon-19.08.3.tar.xz) = 55ccf161f40b3647f269f71309f9a2fcdf1e2327da53e96c3d8510fc664252bf +SIZE (KDE/applications/19.08.3/mailcommon-19.08.3.tar.xz) = 693672 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 517111) +++ head/net/mailimporter/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544705 -SHA256 (KDE/applications/19.08.2/mailimporter-19.08.2.tar.xz) = 27780c381919ebc9e6fc0de7021cd03277dd3962d4c4c15770fcf44cd6126814 -SIZE (KDE/applications/19.08.2/mailimporter-19.08.2.tar.xz) = 540380 +TIMESTAMP = 1572931014 +SHA256 (KDE/applications/19.08.3/mailimporter-19.08.3.tar.xz) = fbdfbfe093bb0af05d26492c0839a94ac0a5c0577081bd726626b943be7cb96e +SIZE (KDE/applications/19.08.3/mailimporter-19.08.3.tar.xz) = 540544 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 517111) +++ head/net/messagelib/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544705 -SHA256 (KDE/applications/19.08.2/messagelib-19.08.2.tar.xz) = d761e94d2fa71c2de6a52e0c1756f52f0006ada35711189b343eccdafe0a0390 -SIZE (KDE/applications/19.08.2/messagelib-19.08.2.tar.xz) = 10393260 +TIMESTAMP = 1572931015 +SHA256 (KDE/applications/19.08.3/messagelib-19.08.3.tar.xz) = db2e48e48d87922f9533ebd3eb021549e6bf8dea5828d83bfdfecb36b1426728 +SIZE (KDE/applications/19.08.3/messagelib-19.08.3.tar.xz) = 10401352 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 517111) +++ head/net/pimcommon/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544706 -SHA256 (KDE/applications/19.08.2/pimcommon-19.08.2.tar.xz) = ccdf2624a055a9db31b0b8109c791776d111ae91438f41ed50dcb9faca287e4c -SIZE (KDE/applications/19.08.2/pimcommon-19.08.2.tar.xz) = 293952 +TIMESTAMP = 1572931015 +SHA256 (KDE/applications/19.08.3/pimcommon-19.08.3.tar.xz) = 76a67c28db71e1187fa192f0e1a07279c690dea313a2a376b2d21b82ab0784ca +SIZE (KDE/applications/19.08.3/pimcommon-19.08.3.tar.xz) = 293596 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 517111) +++ head/net/zeroconf-ioslave/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544707 -SHA256 (KDE/applications/19.08.2/zeroconf-ioslave-19.08.2.tar.xz) = 19e31534d1a4503d1dd4bd8ef60cfb48a91ee167dd4b0db99e53b318a355dae0 -SIZE (KDE/applications/19.08.2/zeroconf-ioslave-19.08.2.tar.xz) = 39144 +TIMESTAMP = 1572931016 +SHA256 (KDE/applications/19.08.3/zeroconf-ioslave-19.08.3.tar.xz) = b7b00edcc987c298e1dc885e3ceb6acbcbfe40141423d90406a3ccecef2471ed +SIZE (KDE/applications/19.08.3/zeroconf-ioslave-19.08.3.tar.xz) = 39100 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 517111) +++ head/net-im/kaccounts-integration/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544632 -SHA256 (KDE/applications/19.08.2/kaccounts-integration-19.08.2.tar.xz) = b422c23eb3eefc3a79c4ccb9360ae6269a86982575e981bb949c0782f1f813ce -SIZE (KDE/applications/19.08.2/kaccounts-integration-19.08.2.tar.xz) = 71768 +TIMESTAMP = 1572930958 +SHA256 (KDE/applications/19.08.3/kaccounts-integration-19.08.3.tar.xz) = 9106718c3ac8beeb11dc8a8d2ad53c7cc4a364ab6246ca9a24ea05dfe7415723 +SIZE (KDE/applications/19.08.3/kaccounts-integration-19.08.3.tar.xz) = 71924 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 517111) +++ head/net-im/kaccounts-providers/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544632 -SHA256 (KDE/applications/19.08.2/kaccounts-providers-19.08.2.tar.xz) = d5ad6882ff151d2f0cff2b76a83e38cf37c72a0dbdf4a0aff64420903266a309 -SIZE (KDE/applications/19.08.2/kaccounts-providers-19.08.2.tar.xz) = 32104 +TIMESTAMP = 1572930959 +SHA256 (KDE/applications/19.08.3/kaccounts-providers-19.08.3.tar.xz) = 55093c9ab5e001f126e86e1dbf55209c5f6365d9aad392cf506eab6a95d59a23 +SIZE (KDE/applications/19.08.3/kaccounts-providers-19.08.3.tar.xz) = 32104 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 517111) +++ head/net-im/kopete/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544653 -SHA256 (KDE/applications/19.08.2/kopete-19.08.2.tar.xz) = cf4e4f6ff6dcd6e42a1c3d5339be4a65ed0379ef786155c12cf13f8af339e022 -SIZE (KDE/applications/19.08.2/kopete-19.08.2.tar.xz) = 9350652 +TIMESTAMP = 1572930980 +SHA256 (KDE/applications/19.08.3/kopete-19.08.3.tar.xz) = d4e407516754cdf66f447e4439f41080586af2ec30c07bd1c88712b089f21221 +SIZE (KDE/applications/19.08.3/kopete-19.08.3.tar.xz) = 9367624 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 517111) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544654 -SHA256 (KDE/applications/19.08.2/ktp-accounts-kcm-19.08.2.tar.xz) = 7995813bc983c80b200cddf6b0f55fa8c48be3297ee03e3e0a7601cbc86b8dd8 -SIZE (KDE/applications/19.08.2/ktp-accounts-kcm-19.08.2.tar.xz) = 264680 +TIMESTAMP = 1572930981 +SHA256 (KDE/applications/19.08.3/ktp-accounts-kcm-19.08.3.tar.xz) = 79d2af8b3863d2f4fda51c0bc04b696648d297f2af33e09237b0eed9dd24509f +SIZE (KDE/applications/19.08.3/ktp-accounts-kcm-19.08.3.tar.xz) = 265200 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 517111) +++ head/net-im/ktp-approver/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544655 -SHA256 (KDE/applications/19.08.2/ktp-approver-19.08.2.tar.xz) = 74670d519578486e05237f5085a51fe0a8ce833be413c06702f38b27b27913ec -SIZE (KDE/applications/19.08.2/ktp-approver-19.08.2.tar.xz) = 37356 +TIMESTAMP = 1572930982 +SHA256 (KDE/applications/19.08.3/ktp-approver-19.08.3.tar.xz) = 6051059761a1fe05ad696846a20752707ed6c9ce164aa551e86e3a5ddca4a65f +SIZE (KDE/applications/19.08.3/ktp-approver-19.08.3.tar.xz) = 37296 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 517111) +++ head/net-im/ktp-auth-handler/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544655 -SHA256 (KDE/applications/19.08.2/ktp-auth-handler-19.08.2.tar.xz) = b13304909d8e66adc2a0658081fd41e72b0ef7513e041b9a8f3261a8ffd7bb22 -SIZE (KDE/applications/19.08.2/ktp-auth-handler-19.08.2.tar.xz) = 46492 +TIMESTAMP = 1572930982 +SHA256 (KDE/applications/19.08.3/ktp-auth-handler-19.08.3.tar.xz) = 6275ea746a28857cc77cc031a75a5f2278cf85dd1ef3c04e47006c4316975659 +SIZE (KDE/applications/19.08.3/ktp-auth-handler-19.08.3.tar.xz) = 46416 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 517111) +++ head/net-im/ktp-call-ui/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544656 -SHA256 (KDE/applications/19.08.2/ktp-call-ui-19.08.2.tar.xz) = 0d735c34f937a436e82e994c9d60b851473d31b3dc07f1d2ec7eeeab63b83658 -SIZE (KDE/applications/19.08.2/ktp-call-ui-19.08.2.tar.xz) = 97152 +TIMESTAMP = 1572930983 +SHA256 (KDE/applications/19.08.3/ktp-call-ui-19.08.3.tar.xz) = 9245d11a28c2022ec98de6368d03ba8d9a53d8364d4f87efb142a0f843eea67d +SIZE (KDE/applications/19.08.3/ktp-call-ui-19.08.3.tar.xz) = 97260 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 517111) +++ head/net-im/ktp-common-internals/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544657 -SHA256 (KDE/applications/19.08.2/ktp-common-internals-19.08.2.tar.xz) = b08cb6dc05e325c80f9d1753db23d1969fc6c2defc571401e7b2e87772721f7e -SIZE (KDE/applications/19.08.2/ktp-common-internals-19.08.2.tar.xz) = 443916 +TIMESTAMP = 1572930984 +SHA256 (KDE/applications/19.08.3/ktp-common-internals-19.08.3.tar.xz) = 7ec6466ebaa0f4acb7e38707b013989ef0a7d50bad5520d1a53fcf17b5ef5670 +SIZE (KDE/applications/19.08.3/ktp-common-internals-19.08.3.tar.xz) = 445792 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 517111) +++ head/net-im/ktp-contact-list/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544657 -SHA256 (KDE/applications/19.08.2/ktp-contact-list-19.08.2.tar.xz) = ab5778049e1351bc5cec29e3bfd98588f24b9877d385e787eb1f68715d624d34 -SIZE (KDE/applications/19.08.2/ktp-contact-list-19.08.2.tar.xz) = 149240 +TIMESTAMP = 1572930985 +SHA256 (KDE/applications/19.08.3/ktp-contact-list-19.08.3.tar.xz) = 508085b52fff2e542ea28acb853f1cb3fcdf99d1f72ed99bc42991784fb2efd6 +SIZE (KDE/applications/19.08.3/ktp-contact-list-19.08.3.tar.xz) = 149412 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 517111) +++ head/net-im/ktp-contact-runner/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544658 -SHA256 (KDE/applications/19.08.2/ktp-contact-runner-19.08.2.tar.xz) = 6ec9fd151b98c2f48d1ef4361c063e83fe51562fc34868c032d39495ab38fb85 -SIZE (KDE/applications/19.08.2/ktp-contact-runner-19.08.2.tar.xz) = 43068 +TIMESTAMP = 1572930985 +SHA256 (KDE/applications/19.08.3/ktp-contact-runner-19.08.3.tar.xz) = fe343560b80a4d9734f0160c8257fffe762801364e5dcbb9cf82edd6ded5683c +SIZE (KDE/applications/19.08.3/ktp-contact-runner-19.08.3.tar.xz) = 42896 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 517111) +++ head/net-im/ktp-desktop-applets/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544659 -SHA256 (KDE/applications/19.08.2/ktp-desktop-applets-19.08.2.tar.xz) = 96975cf9208d215da1844619e2792be0919238a03ede71073813584042d6c774 -SIZE (KDE/applications/19.08.2/ktp-desktop-applets-19.08.2.tar.xz) = 43512 +TIMESTAMP = 1572930986 +SHA256 (KDE/applications/19.08.3/ktp-desktop-applets-19.08.3.tar.xz) = 318b6a8f40cbbd7a82a1ed55788f8832133ee8d5685182783a4c00e1b2e6fa2a +SIZE (KDE/applications/19.08.3/ktp-desktop-applets-19.08.3.tar.xz) = 43576 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 517111) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544659 -SHA256 (KDE/applications/19.08.2/ktp-filetransfer-handler-19.08.2.tar.xz) = cd2a8fb944e76b6a1ea4f8c956db2d9914a0d5bd472c3fac2e9b568144bf87ab -SIZE (KDE/applications/19.08.2/ktp-filetransfer-handler-19.08.2.tar.xz) = 46212 +TIMESTAMP = 1572930987 +SHA256 (KDE/applications/19.08.3/ktp-filetransfer-handler-19.08.3.tar.xz) = cdc90313da9a238197b69d0ebc11d8e4c6ce617063acbf2864d966aff6df1e94 +SIZE (KDE/applications/19.08.3/ktp-filetransfer-handler-19.08.3.tar.xz) = 46320 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 517111) +++ head/net-im/ktp-kded-module/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544660 -SHA256 (KDE/applications/19.08.2/ktp-kded-module-19.08.2.tar.xz) = 340bffd880fee602868cb44bc4c5474db1c34be62375298affedf3cc7eb1579f -SIZE (KDE/applications/19.08.2/ktp-kded-module-19.08.2.tar.xz) = 97028 +TIMESTAMP = 1572930988 +SHA256 (KDE/applications/19.08.3/ktp-kded-module-19.08.3.tar.xz) = c16d46035874460f98c4f59e04d50e197c1c70ae9b441dfeb53dd4b319e96d15 +SIZE (KDE/applications/19.08.3/ktp-kded-module-19.08.3.tar.xz) = 97024 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 517111) +++ head/net-im/ktp-send-file/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544661 -SHA256 (KDE/applications/19.08.2/ktp-send-file-19.08.2.tar.xz) = 30a4a27b4c37c8ca75ebc407c6070395197b9b88ba8e422d7055eee93ec0ae9d -SIZE (KDE/applications/19.08.2/ktp-send-file-19.08.2.tar.xz) = 29108 +TIMESTAMP = 1572930988 +SHA256 (KDE/applications/19.08.3/ktp-send-file-19.08.3.tar.xz) = db03d482f7bb101e1655262cd99d46e4a551141b8784bae67162d941fb13644f +SIZE (KDE/applications/19.08.3/ktp-send-file-19.08.3.tar.xz) = 28896 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 517111) +++ head/net-im/ktp-text-ui/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544661 -SHA256 (KDE/applications/19.08.2/ktp-text-ui-19.08.2.tar.xz) = a0b7d8469b12ae6820541cc38dd57fad8866ad6e236c4864b7cf94629ca0cc33 -SIZE (KDE/applications/19.08.2/ktp-text-ui-19.08.2.tar.xz) = 471240 +TIMESTAMP = 1572930989 +SHA256 (KDE/applications/19.08.3/ktp-text-ui-19.08.3.tar.xz) = 6779fad4ae6198ebf2e0759b53a8a0792bfca477df2c1f538bc00d1da281eae8 +SIZE (KDE/applications/19.08.3/ktp-text-ui-19.08.3.tar.xz) = 469764 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 517111) +++ head/print/print-manager/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544707 -SHA256 (KDE/applications/19.08.2/print-manager-19.08.2.tar.xz) = c0702208b6f485e2e44337aaf203b9e391adda22d6526bf0dd34b31230e0fb05 -SIZE (KDE/applications/19.08.2/print-manager-19.08.2.tar.xz) = 244572 +TIMESTAMP = 1572931017 +SHA256 (KDE/applications/19.08.3/print-manager-19.08.3.tar.xz) = c6420dfa711fc68a6d681d27521eac3c9f1060e57f048594b43f2941a78320ee +SIZE (KDE/applications/19.08.3/print-manager-19.08.3.tar.xz) = 245476 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 517111) +++ head/science/kalzium/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544728 -SHA256 (KDE/applications/19.08.2/kalzium-19.08.2.tar.xz) = e63d88526c86dd67ab133694dc23b6a35fd5514643bd7a7f1790db8c2a8490d9 -SIZE (KDE/applications/19.08.2/kalzium-19.08.2.tar.xz) = 26411676 +TIMESTAMP = 1572931038 +SHA256 (KDE/applications/19.08.3/kalzium-19.08.3.tar.xz) = 5dc3423a0f2646b59233f92b6a6e81b4a0bcdb819aa543c83270fe4cc5592933 +SIZE (KDE/applications/19.08.3/kalzium-19.08.3.tar.xz) = 26415448 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 517111) +++ head/science/step/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544729 -SHA256 (KDE/applications/19.08.2/step-19.08.2.tar.xz) = dede94c073b2903fa4fa6806623cb980ebe93d15cc76376aadac4ca8cd61a96c -SIZE (KDE/applications/19.08.2/step-19.08.2.tar.xz) = 871208 +TIMESTAMP = 1572931039 +SHA256 (KDE/applications/19.08.3/step-19.08.3.tar.xz) = 1197b38d9ef14305cf341eba4cd2df08695a9b3f53e2bebff8abb7cbd7a9e2aa +SIZE (KDE/applications/19.08.3/step-19.08.3.tar.xz) = 869880 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 517111) +++ head/security/kgpg/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544730 -SHA256 (KDE/applications/19.08.2/kgpg-19.08.2.tar.xz) = 90795c649cd32b65b6030ed965e0db5b0570719afa36abb5d4893268461aa841 -SIZE (KDE/applications/19.08.2/kgpg-19.08.2.tar.xz) = 2786968 +TIMESTAMP = 1572931040 +SHA256 (KDE/applications/19.08.3/kgpg-19.08.3.tar.xz) = 85bb9adbd7a7213bdd4913c2153582e938543db49cf2414b8794a850f63f3ab6 +SIZE (KDE/applications/19.08.3/kgpg-19.08.3.tar.xz) = 2786856 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 517111) +++ head/security/kleopatra/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544730 -SHA256 (KDE/applications/19.08.2/kleopatra-19.08.2.tar.xz) = 7d0667b71796f8cbf9081c74c80def1e6618366400d4fbe56e690bb7049e4085 -SIZE (KDE/applications/19.08.2/kleopatra-19.08.2.tar.xz) = 1927560 +TIMESTAMP = 1572931040 +SHA256 (KDE/applications/19.08.3/kleopatra-19.08.3.tar.xz) = 44b9873fbdeb88416d33b54491b75d35eac1589d70ef70505456e89068eb1caf +SIZE (KDE/applications/19.08.3/kleopatra-19.08.3.tar.xz) = 1928668 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 517111) +++ head/security/kpkpass/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544731 -SHA256 (KDE/applications/19.08.2/kpkpass-19.08.2.tar.xz) = daf4da30fd5c834915e6210bf64609adc116e5c6919365d000a400b6cd5f3e26 -SIZE (KDE/applications/19.08.2/kpkpass-19.08.2.tar.xz) = 23232 +TIMESTAMP = 1572931041 +SHA256 (KDE/applications/19.08.3/kpkpass-19.08.3.tar.xz) = 6d70d3bcc949e83543ae7cf9d22280c270107bd9c9cb2882d6b37f6d036f5126 +SIZE (KDE/applications/19.08.3/kpkpass-19.08.3.tar.xz) = 23260 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 517111) +++ head/security/kwalletmanager/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544732 -SHA256 (KDE/applications/19.08.2/kwalletmanager-19.08.2.tar.xz) = 5c0cd648d6bf4515cd71b4575ab8051004dcf505c2bfe502fb42b7ba01cb51b2 -SIZE (KDE/applications/19.08.2/kwalletmanager-19.08.2.tar.xz) = 786768 +TIMESTAMP = 1572931042 +SHA256 (KDE/applications/19.08.3/kwalletmanager-19.08.3.tar.xz) = 00c1362d1454f4593e1f99847b97b3da99931c74ceafc3c3350337af0038b985 +SIZE (KDE/applications/19.08.3/kwalletmanager-19.08.3.tar.xz) = 786804 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 517111) +++ head/security/libkleo/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544732 -SHA256 (KDE/applications/19.08.2/libkleo-19.08.2.tar.xz) = 0acf296ffb0144096071e47ce1365b9e5b07b59cad4700f89c875c7bee4573bd -SIZE (KDE/applications/19.08.2/libkleo-19.08.2.tar.xz) = 337736 +TIMESTAMP = 1572931043 +SHA256 (KDE/applications/19.08.3/libkleo-19.08.3.tar.xz) = 5f1a3276646c786e8e25e6765d0f4e6b6ac0e4dccd094c1810b10a10e401576e +SIZE (KDE/applications/19.08.3/libkleo-19.08.3.tar.xz) = 338888 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 517111) +++ head/sysutils/baloo-widgets/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544733 -SHA256 (KDE/applications/19.08.2/baloo-widgets-19.08.2.tar.xz) = 529f3b587098eb9b7d1aaa8b311f98c58d16ed88384fa0900f9fb9f8e242c070 -SIZE (KDE/applications/19.08.2/baloo-widgets-19.08.2.tar.xz) = 261392 +TIMESTAMP = 1572931043 +SHA256 (KDE/applications/19.08.3/baloo-widgets-19.08.3.tar.xz) = edb9284b1a7d73b0c824390aa875593650880eb77c2680a2942c9fd65f436a2d +SIZE (KDE/applications/19.08.3/baloo-widgets-19.08.3.tar.xz) = 261744 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 517111) +++ head/sysutils/baloo-widgets/pkg-plist (revision 517112) @@ -1,66 +1,66 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 -lib/libKF5BalooWidgets.so.19.8.2 +lib/libKF5BalooWidgets.so.19.8.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/ml/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 517111) +++ head/sysutils/filelight/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544734 -SHA256 (KDE/applications/19.08.2/filelight-19.08.2.tar.xz) = 313ff23fceb427509b37efa012535e651618d42bde35c62cdc7732e463c346a6 -SIZE (KDE/applications/19.08.2/filelight-19.08.2.tar.xz) = 660172 +TIMESTAMP = 1572931044 +SHA256 (KDE/applications/19.08.3/filelight-19.08.3.tar.xz) = 95fa38574292a2aa8d3d90749fbbb61c5005889ef1df1aaa04d2d789bbf4fb00 +SIZE (KDE/applications/19.08.3/filelight-19.08.3.tar.xz) = 660804 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 517111) +++ head/sysutils/k3b/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544734 -SHA256 (KDE/applications/19.08.2/k3b-19.08.2.tar.xz) = a16796a873018bc5fd9f562297fea56d3f6d32a1e903a3e145814ea7d9be5209 -SIZE (KDE/applications/19.08.2/k3b-19.08.2.tar.xz) = 10505676 +TIMESTAMP = 1572931045 +SHA256 (KDE/applications/19.08.3/k3b-19.08.3.tar.xz) = 197ea67fa9ef66f8ee084608fd1907e2b3db108eec643d5bd6a0980f838f2b23 +SIZE (KDE/applications/19.08.3/k3b-19.08.3.tar.xz) = 10500940 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 517111) +++ head/sysutils/kbackup/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544735 -SHA256 (KDE/applications/19.08.2/kbackup-19.08.2.tar.xz) = 1678ac00c1930f430d620f542dc7913bf1575106654cc9d4b534aed65e023fb8 -SIZE (KDE/applications/19.08.2/kbackup-19.08.2.tar.xz) = 358196 +TIMESTAMP = 1572931046 +SHA256 (KDE/applications/19.08.3/kbackup-19.08.3.tar.xz) = c71156528087e0c799b4c957b6525b85763bdeb35ebc58ba480878f2f0daf97d +SIZE (KDE/applications/19.08.3/kbackup-19.08.3.tar.xz) = 358156 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 517111) +++ head/sysutils/kcron/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544736 -SHA256 (KDE/applications/19.08.2/kcron-19.08.2.tar.xz) = 270ee81cba5ef9d92158a3fc71cf8c50c658468018eb0415c9d3d0bc7abea5e5 -SIZE (KDE/applications/19.08.2/kcron-19.08.2.tar.xz) = 887752 +TIMESTAMP = 1572931046 +SHA256 (KDE/applications/19.08.3/kcron-19.08.3.tar.xz) = b2270bb3390570ee49b887e5cda1c596c351fd0cd83183f091ef1b078fa55669 +SIZE (KDE/applications/19.08.3/kcron-19.08.3.tar.xz) = 888268 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 517111) +++ head/sysutils/kdebugsettings/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544736 -SHA256 (KDE/applications/19.08.2/kdebugsettings-19.08.2.tar.xz) = 2823e53da647dec2bd780a3029c6b093917faad3db973147ef74eb8f1c1733df -SIZE (KDE/applications/19.08.2/kdebugsettings-19.08.2.tar.xz) = 55360 +TIMESTAMP = 1572931047 +SHA256 (KDE/applications/19.08.3/kdebugsettings-19.08.3.tar.xz) = 10ccbc85c36a81ba7fdf3230f16c3b9974d240d17347d21aa7b67e9b5f85c78d +SIZE (KDE/applications/19.08.3/kdebugsettings-19.08.3.tar.xz) = 55472 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 517111) +++ head/sysutils/kdf/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544737 -SHA256 (KDE/applications/19.08.2/kdf-19.08.2.tar.xz) = f0a27bbf25d5791272cc8598561e53afed9840d38bf08ed3146f36701dfb7b04 -SIZE (KDE/applications/19.08.2/kdf-19.08.2.tar.xz) = 461488 +TIMESTAMP = 1572931048 +SHA256 (KDE/applications/19.08.3/kdf-19.08.3.tar.xz) = eef733c2089ce8fc40405653fa5e3aaafe67a1cc5d074f744e49b185291c0617 +SIZE (KDE/applications/19.08.3/kdf-19.08.3.tar.xz) = 461848 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 517111) +++ head/sysutils/kdialog/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544758 -SHA256 (KDE/applications/19.08.2/kdialog-19.08.2.tar.xz) = 7aef7b5a5f340cc0066e02572ec8cef8b227bc6c7f5b066677ef6422632db95a -SIZE (KDE/applications/19.08.2/kdialog-19.08.2.tar.xz) = 102300 +TIMESTAMP = 1572931049 +SHA256 (KDE/applications/19.08.3/kdialog-19.08.3.tar.xz) = 2fa2e07fb9975e2e32e26a2a17350ef253b93471017e5945a2df0fef2eeba787 +SIZE (KDE/applications/19.08.3/kdialog-19.08.3.tar.xz) = 102480 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 517111) +++ head/sysutils/kfloppy/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544758 -SHA256 (KDE/applications/19.08.2/kfloppy-19.08.2.tar.xz) = 743f9043bdc24855bb597d3f7cf2bbf4793c58be22eb73cd72ff1e3f8cff2f69 -SIZE (KDE/applications/19.08.2/kfloppy-19.08.2.tar.xz) = 198868 +TIMESTAMP = 1572931050 +SHA256 (KDE/applications/19.08.3/kfloppy-19.08.3.tar.xz) = aed5533db83513e7ad9d4108920fc0241569d6b1b649d95ef36a36bbc1f72cab +SIZE (KDE/applications/19.08.3/kfloppy-19.08.3.tar.xz) = 198760 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 517111) +++ head/sysutils/khelpcenter/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544779 -SHA256 (KDE/applications/19.08.2/khelpcenter-19.08.2.tar.xz) = 22b9f5225dfb9e8ad85becb7c2986cbee2a1366f84257fcbf76d5d7292dccdd9 -SIZE (KDE/applications/19.08.2/khelpcenter-19.08.2.tar.xz) = 3847796 +TIMESTAMP = 1572931071 +SHA256 (KDE/applications/19.08.3/khelpcenter-19.08.3.tar.xz) = a03817fb16739b1b235dc54ddeda2c2ebc6605a0c7678e02af24c05271c0b77a +SIZE (KDE/applications/19.08.3/khelpcenter-19.08.3.tar.xz) = 3846196 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 517111) +++ head/sysutils/ksystemlog/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544780 -SHA256 (KDE/applications/19.08.2/ksystemlog-19.08.2.tar.xz) = 742bff9c71cc42d7a57a7732f039a944f60fe4dd70cf71c32f37ba914b57b5de -SIZE (KDE/applications/19.08.2/ksystemlog-19.08.2.tar.xz) = 1927372 +TIMESTAMP = 1572931071 +SHA256 (KDE/applications/19.08.3/ksystemlog-19.08.3.tar.xz) = 97fca55ae5481d77628531482da99ece40cef2c81de633fe4c1e99206d17391d +SIZE (KDE/applications/19.08.3/ksystemlog-19.08.3.tar.xz) = 1928428 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 517111) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544781 -SHA256 (KDE/applications/19.08.2/signon-kwallet-extension-19.08.2.tar.xz) = 2521cd2c4f25717f5caf9915474f75614be7dec7053f1e94c1429fac7045cc29 -SIZE (KDE/applications/19.08.2/signon-kwallet-extension-19.08.2.tar.xz) = 10592 +TIMESTAMP = 1572931072 +SHA256 (KDE/applications/19.08.3/signon-kwallet-extension-19.08.3.tar.xz) = 273ff874bf08dd97a12b3b07215bc0ce9fd3c3c59b6bb1f61000411454211a65 +SIZE (KDE/applications/19.08.3/signon-kwallet-extension-19.08.3.tar.xz) = 10616 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 517111) +++ head/sysutils/sweeper/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544781 -SHA256 (KDE/applications/19.08.2/sweeper-19.08.2.tar.xz) = da65cbfc952d8b63ddfbcba373d9a828ef5acefc68196ddd4c2c602c672cbb5f -SIZE (KDE/applications/19.08.2/sweeper-19.08.2.tar.xz) = 368548 +TIMESTAMP = 1572931073 +SHA256 (KDE/applications/19.08.3/sweeper-19.08.3.tar.xz) = 0451b9319c4390cfae497922cc135d7d8c4ef74ac81f2c05d2f94458bb3fc8be +SIZE (KDE/applications/19.08.3/sweeper-19.08.3.tar.xz) = 368332 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 517111) +++ head/textproc/kompare/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544782 -SHA256 (KDE/applications/19.08.2/kompare-19.08.2.tar.xz) = b14f23ac6eb72622a06e2e489fc2d684124f520ad13e032338397fef342659eb -SIZE (KDE/applications/19.08.2/kompare-19.08.2.tar.xz) = 801976 +TIMESTAMP = 1572931074 +SHA256 (KDE/applications/19.08.3/kompare-19.08.3.tar.xz) = d0adbae35e979212e9705cb815e309059d8b3d0b7a815d7ff2cd7197eff65f44 +SIZE (KDE/applications/19.08.3/kompare-19.08.3.tar.xz) = 801168 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 517111) +++ head/textproc/libkomparediff2/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544783 -SHA256 (KDE/applications/19.08.2/libkomparediff2-19.08.2.tar.xz) = c5738f96dbda3d7272ad08ff9518722ae9b7ee737ab7e27c9e88cedb418371d7 -SIZE (KDE/applications/19.08.2/libkomparediff2-19.08.2.tar.xz) = 173800 +TIMESTAMP = 1572931074 +SHA256 (KDE/applications/19.08.3/libkomparediff2-19.08.3.tar.xz) = a1ba5616fda806d5aedab3fb080bbcef5e13c04153fd9659d9d47f0a1a11125d +SIZE (KDE/applications/19.08.3/libkomparediff2-19.08.3.tar.xz) = 173512 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 517111) +++ head/x11/konsole/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544807 -SHA256 (KDE/applications/19.08.2/konsole-19.08.2.tar.xz) = 4702fe52279c99e7d8da313285ace26955776669a78bdcb6dac7aec76cabe5ed -SIZE (KDE/applications/19.08.2/konsole-19.08.2.tar.xz) = 1144976 +TIMESTAMP = 1572931079 +SHA256 (KDE/applications/19.08.3/konsole-19.08.3.tar.xz) = 2cc610109ff8ddc6efa6ea83f0153f4b1d72e4be65d8dbde9cfd526c257e7025 +SIZE (KDE/applications/19.08.3/konsole-19.08.3.tar.xz) = 1147832 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 517111) +++ head/x11/yakuake/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572771266 -SHA256 (KDE/applications/19.08.2/yakuake-19.08.2.tar.xz) = 3ebf477069c85a8705302b6b51902a74af7bb92349fab41000f71484a4de5aee -SIZE (KDE/applications/19.08.2/yakuake-19.08.2.tar.xz) = 370952 +TIMESTAMP = 1572973362 +SHA256 (KDE/applications/19.08.3/yakuake-19.08.3.tar.xz) = 1ad2cc026eea9449690aa037ac94b09cd18696d71025204e648501fa7f2cfbaf +SIZE (KDE/applications/19.08.3/yakuake-19.08.3.tar.xz) = 371420 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 517111) +++ head/x11-clocks/kteatime/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544783 -SHA256 (KDE/applications/19.08.2/kteatime-19.08.2.tar.xz) = 075470af370b7913fdb085dd6984da91f863b6c03a4b713854e85437e6f9cdbe -SIZE (KDE/applications/19.08.2/kteatime-19.08.2.tar.xz) = 286812 +TIMESTAMP = 1572931075 +SHA256 (KDE/applications/19.08.3/kteatime-19.08.3.tar.xz) = dbe96fdd20545dc5ebe8103aed878dbbca5e015a42827129485a32fdcbf0d592 +SIZE (KDE/applications/19.08.3/kteatime-19.08.3.tar.xz) = 286792 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 517111) +++ head/x11-clocks/ktimer/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544784 -SHA256 (KDE/applications/19.08.2/ktimer-19.08.2.tar.xz) = 81be41497e14f5fb72150e238805744c9b09463ac261cf5d7d2ca011a41a05a0 -SIZE (KDE/applications/19.08.2/ktimer-19.08.2.tar.xz) = 377024 +TIMESTAMP = 1572931076 +SHA256 (KDE/applications/19.08.3/ktimer-19.08.3.tar.xz) = d8c80c3929e21a0450574d2e05e2a2384978c70f812eaab25e32402fe3a2f6c5 +SIZE (KDE/applications/19.08.3/ktimer-19.08.3.tar.xz) = 376768 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 517111) +++ head/x11-fm/dolphin/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544785 -SHA256 (KDE/applications/19.08.2/dolphin-19.08.2.tar.xz) = 0c56515737fc0f96020b3c157a93023095d1a1e23637e7670e068c6c286bbc3b -SIZE (KDE/applications/19.08.2/dolphin-19.08.2.tar.xz) = 5267556 +TIMESTAMP = 1572931077 +SHA256 (KDE/applications/19.08.3/dolphin-19.08.3.tar.xz) = de71f52324c15d692448ac4c79c1e0fcf35df5c03349a8bcbebfae20d9f69d4e +SIZE (KDE/applications/19.08.3/dolphin-19.08.3.tar.xz) = 5276344 Index: head/x11-fm/dolphin/pkg-plist =================================================================== --- head/x11-fm/dolphin/pkg-plist (revision 517111) +++ head/x11-fm/dolphin/pkg-plist (revision 517112) @@ -1,121 +1,122 @@ bin/dolphin bin/servicemenuinstaller share/qlogging-categories5/dolphin.categories etc/xdg/servicemenu.knsrc include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so %%QT_PLUGINDIR%%/dolphinpart.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/kcm_dolphinservices.so %%QT_PLUGINDIR%%/kcm_dolphinviewmodes.so share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop share/kservices5/kcmdolphinservices.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo +share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 517111) +++ head/x11-fm/konqueror/distinfo (revision 517112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570544805 -SHA256 (KDE/applications/19.08.2/konqueror-19.08.2.tar.xz) = 336da877ea44fb100ca5396bc843994d77d0939fe3c969ad8fa85f0e1644d111 -SIZE (KDE/applications/19.08.2/konqueror-19.08.2.tar.xz) = 7610208 +TIMESTAMP = 1572931078 +SHA256 (KDE/applications/19.08.3/konqueror-19.08.3.tar.xz) = d0ff5b409bbbef5394aeb0bafeb6fea6265feff929fbf4b6a451adc030542d9b +SIZE (KDE/applications/19.08.3/konqueror-19.08.3.tar.xz) = 7604888