Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 538648) +++ head/Mk/Uses/kde.mk (revision 538649) @@ -1,862 +1,862 @@ # $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.19.0 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.70.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 20.04.1 -KDE_APPLICATIONS_SHLIB_VER?= 5.14.1 +KDE_APPLICATIONS_VERSION?= 20.04.2 +KDE_APPLICATIONS_SHLIB_VER?= 5.14.2 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. 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 kquickcharts 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 kwayland-server 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_PATH= ${KDE_PREFIX}/bin/kded5 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-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-kwayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.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}/share/themes/Breeze/gtk-2.0/gtkrc 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= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme 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_PATH= ${KDE_PREFIX}/bin/kmenuedit 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= libKF5DAV.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 538648) +++ head/accessibility/kmag/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429550 -SHA256 (KDE/applications/20.04.1/kmag-20.04.1.tar.xz) = a51a876df4286d49f899791a30791509c668efebe9045930e2fb8194454493a2 -SIZE (KDE/applications/20.04.1/kmag-20.04.1.tar.xz) = 674652 +TIMESTAMP = 1591712606 +SHA256 (KDE/applications/20.04.2/kmag-20.04.2.tar.xz) = ad74e7131f5024e3291760759107923ae86d6c7ec887bcb850ac5e369fa9ee7e +SIZE (KDE/applications/20.04.2/kmag-20.04.2.tar.xz) = 674500 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 538648) +++ head/accessibility/kmousetool/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429551 -SHA256 (KDE/applications/20.04.1/kmousetool-20.04.1.tar.xz) = 28791546f1ca336aaaae0e4a2a140c1daec1c77a40aa8a6e24dac2f8515f4606 -SIZE (KDE/applications/20.04.1/kmousetool-20.04.1.tar.xz) = 113716 +TIMESTAMP = 1591712607 +SHA256 (KDE/applications/20.04.2/kmousetool-20.04.2.tar.xz) = b175ef353d9957072d7a23846c7b893ef78f327e88921f5dc7f0e3926e1b680d +SIZE (KDE/applications/20.04.2/kmousetool-20.04.2.tar.xz) = 113348 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 538648) +++ head/accessibility/kmouth/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429552 -SHA256 (KDE/applications/20.04.1/kmouth-20.04.1.tar.xz) = e7b1a7df6546e5361c060af4d107ead483e5207be78dd1f26075d7a43dedcfa9 -SIZE (KDE/applications/20.04.1/kmouth-20.04.1.tar.xz) = 1964488 +TIMESTAMP = 1591712608 +SHA256 (KDE/applications/20.04.2/kmouth-20.04.2.tar.xz) = a2260e2d6b0f30d2aac461c95b9969d75fac2b8901a6d4e3b0705e970a0917af +SIZE (KDE/applications/20.04.2/kmouth-20.04.2.tar.xz) = 1964676 Index: head/archivers/ark/Makefile =================================================================== --- head/archivers/ark/Makefile (revision 538648) +++ head/archivers/ark/Makefile (revision 538649) @@ -1,46 +1,46 @@ # $FreeBSD$ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang desktop-file-utils gettext libarchive kde:5 \ qt:5 shared-mime-info tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS OPTIONS_DEFAULT= 7ZIP ZIP DOCS OPTIONS_DEFAULT_i386= RAR OPTIONS_DEFAULT_amd64= RAR OPTIONS_SUB= YES # The 7ZIP and RAR options only need runtime dependencies; # the port builds identically with or without them. 7ZIP_DESC= Support for 7-Zip archives (runtime) 7ZIP_RUN_DEPENDS= 7z:archivers/p7zip RAR_DESC= Support for RAR archives (runtime) RAR_RUN_DEPENDS= unrar:archivers/unrar \ rar:archivers/rar ZIP_DESC= Support for ZIP archives ZIP_LIB_DEPENDS= libzip.so:archivers/libzip ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip # Override shared library version -KDE_APPLICATIONS_SHLIB_VER=20.4.1 +KDE_APPLICATIONS_SHLIB_VER=20.4.2 .include Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 538648) +++ head/archivers/ark/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429553 -SHA256 (KDE/applications/20.04.1/ark-20.04.1.tar.xz) = 3c0e213917c3b87b12bab32499f13b99df36866b94b46705cbb01e468372ab3c -SIZE (KDE/applications/20.04.1/ark-20.04.1.tar.xz) = 2587528 +TIMESTAMP = 1591712609 +SHA256 (KDE/applications/20.04.2/ark-20.04.2.tar.xz) = ba2176a5ca3ca5de7bb38ff60d276c6cb85eb1533ae0dc76b3c4095fbde0bb96 +SIZE (KDE/applications/20.04.2/ark-20.04.2.tar.xz) = 2587052 Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 538648) +++ head/astro/libkgeomap/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429554 -SHA256 (KDE/applications/20.04.1/libkgeomap-20.04.1.tar.xz) = a71f6e0900c7eb3b68528d5ef3850c9a5ed61e7e470f811d51278f7bc0f264c9 -SIZE (KDE/applications/20.04.1/libkgeomap-20.04.1.tar.xz) = 150896 +TIMESTAMP = 1591712609 +SHA256 (KDE/applications/20.04.2/libkgeomap-20.04.2.tar.xz) = 8a32b23942c7fa670dd0e8024340e0c28a9d326b8dc44f8453412ffa8748168a +SIZE (KDE/applications/20.04.2/libkgeomap-20.04.2.tar.xz) = 150952 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 538648) +++ head/astro/marble/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429555 -SHA256 (KDE/applications/20.04.1/marble-20.04.1.tar.xz) = 28cdf7161e8f3a2f00fd35cc4a384e29e7875c7177c27ff6d5dd8f8f53bcaa67 -SIZE (KDE/applications/20.04.1/marble-20.04.1.tar.xz) = 52197400 +TIMESTAMP = 1591712611 +SHA256 (KDE/applications/20.04.2/marble-20.04.2.tar.xz) = dbd31b0d81e8414db30278948a95f87a23730da0aa5b96cbf3088ec67c450714 +SIZE (KDE/applications/20.04.2/marble-20.04.2.tar.xz) = 52206460 Index: head/astro/marble/pkg-plist =================================================================== --- head/astro/marble/pkg-plist (revision 538648) +++ head/astro/marble/pkg-plist (revision 538649) @@ -1,1770 +1,1811 @@ bin/marble bin/marble-qt etc/xdg/marble.knsrc include/astro/astr2lib.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h include/marble/MarbleDeclarativePlugin.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h include/marble/marble_declarative_export.h include/marble/marble_export.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.0.17.20 lib/libastro.so.1 lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.0.28.0 lib/libmarblewidget-qt5.so.28 lib/marble/plugins/libAnnotatePlugin.so lib/marble/plugins/libAprsPlugin.so lib/marble/plugins/libAtmospherePlugin.so lib/marble/plugins/libCachePlugin.so lib/marble/plugins/libCompassFloatItem.so lib/marble/plugins/libCrosshairsPlugin.so lib/marble/plugins/libCycleStreetsPlugin.so lib/marble/plugins/libEarthquakePlugin.so lib/marble/plugins/libEclipsesPlugin.so lib/marble/plugins/libElevationProfileFloatItem.so lib/marble/plugins/libElevationProfileMarker.so lib/marble/plugins/libFlightGearPositionProviderPlugin.so lib/marble/plugins/libFoursquarePlugin.so lib/marble/plugins/libGeoUriPlugin.so lib/marble/plugins/libGosmoreReverseGeocodingPlugin.so lib/marble/plugins/libGosmoreRoutingPlugin.so lib/marble/plugins/libGpsInfo.so lib/marble/plugins/libGpsbabelPlugin.so %%GPS%%lib/marble/plugins/libGpsdPositionProviderPlugin.so lib/marble/plugins/libGpxPlugin.so lib/marble/plugins/libGraticulePlugin.so lib/marble/plugins/libHostipPlugin.so lib/marble/plugins/libJsonPlugin.so lib/marble/plugins/libKmlPlugin.so lib/marble/plugins/libLatLonPlugin.so lib/marble/plugins/libLicense.so lib/marble/plugins/libLocalDatabasePlugin.so lib/marble/plugins/libLocalOsmSearchPlugin.so lib/marble/plugins/libLogPlugin.so lib/marble/plugins/libMapQuestPlugin.so lib/marble/plugins/libMapScaleFloatItem.so lib/marble/plugins/libMeasureTool.so lib/marble/plugins/libMonavPlugin.so lib/marble/plugins/libNavigationFloatItem.so lib/marble/plugins/libNominatimReverseGeocodingPlugin.so lib/marble/plugins/libNominatimSearchPlugin.so lib/marble/plugins/libNotesPlugin.so lib/marble/plugins/libOSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/libOpenDesktopPlugin.so lib/marble/plugins/libOpenLocationCodeSearchPlugin.so lib/marble/plugins/libOpenRouteServicePlugin.so lib/marble/plugins/libOsmPlugin.so lib/marble/plugins/libOverviewMap.so %%WEBENGINE%%lib/marble/plugins/libPhoto.so lib/marble/plugins/libPn2Plugin.so lib/marble/plugins/libPntPlugin.so lib/marble/plugins/libPositionMarker.so lib/marble/plugins/libPostalCode.so lib/marble/plugins/libProgressFloatItem.so %%GPS%%lib/marble/plugins/libQtPositioningPositionProviderPlugin.so lib/marble/plugins/libRoutingPlugin.so lib/marble/plugins/libRoutinoPlugin.so lib/marble/plugins/libSatellitesPlugin.so lib/marble/plugins/libSpeedometer.so lib/marble/plugins/libStarsPlugin.so lib/marble/plugins/libSunPlugin.so %%WEBENGINE%%lib/marble/plugins/libWeather.so %%WEBENGINE%%lib/marble/plugins/libWikipedia.so lib/marble/plugins/libYoursPlugin.so lib/plugins/designer/libLatLonEditPlugin.so lib/plugins/designer/libMarbleNavigatorPlugin.so lib/plugins/designer/libMarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/libmarblethumbnail.so %%QT_PLUGINDIR%%/plasma_runner_marble.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/libmarblequick.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble-qt.desktop share/applications/org.kde.marble.desktop share/config.kcfg/marble.kcfg share/icons/hicolor/128x128/apps/marble.png share/icons/hicolor/16x16/apps/marble.png share/icons/hicolor/22x22/apps/marble.png share/icons/hicolor/32x32/apps/marble.png share/icons/hicolor/48x48/apps/marble.png share/icons/hicolor/64x64/apps/marble.png share/kservices5/marble_part.desktop share/kservices5/marble_thumbnail_geojson.desktop share/kservices5/marble_thumbnail_gpx.desktop share/kservices5/marble_thumbnail_kml.desktop share/kservices5/marble_thumbnail_kmz.desktop share/kservices5/marble_thumbnail_osm.desktop share/kservices5/plasma-applet-org.kde.plasma.worldclock.desktop share/kservices5/plasma-runner-marble.desktop share/kservices5/plasma-wallpaper-org.kde.plasma.worldmap.desktop share/kxmlgui5/marble/marble_part.rc share/kxmlgui5/marble/marbleui.rc share/locale/ar/LC_MESSAGES/marble.mo share/locale/ar/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm +share/locale/bg/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm +share/locale/bs/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm +share/locale/ca/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm +share/locale/ca@valencia/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm +share/locale/cs/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm +share/locale/da/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm +share/locale/de/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm +share/locale/el/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/en_GB/LC_MESSAGES/marble.mo share/locale/en_GB/LC_MESSAGES/marble_qt.qm +share/locale/en_GB/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_marble.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eo/LC_MESSAGES/marble.mo share/locale/eo/LC_MESSAGES/marble_qt.qm +share/locale/eo/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/eo/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm +share/locale/es/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/es/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/et/LC_MESSAGES/marble.mo share/locale/et/LC_MESSAGES/marble_qt.qm +share/locale/et/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/et/LC_MESSAGES/plasma_runner_marble.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm +share/locale/fi/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fi/LC_MESSAGES/plasma_runner_marble.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fr/LC_MESSAGES/marble.mo share/locale/fr/LC_MESSAGES/marble_qt.qm +share/locale/fr/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fr/LC_MESSAGES/plasma_runner_marble.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ga/LC_MESSAGES/marble.mo share/locale/ga/LC_MESSAGES/marble_qt.qm +share/locale/ga/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ga/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm +share/locale/gl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/gl/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/he/LC_MESSAGES/marble.mo share/locale/he/LC_MESSAGES/marble_qt.qm share/locale/hi/LC_MESSAGES/marble.mo share/locale/hi/LC_MESSAGES/marble_qt.qm share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm +share/locale/hu/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/marble.mo share/locale/it/LC_MESSAGES/marble_qt.qm +share/locale/it/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/it/LC_MESSAGES/plasma_runner_marble.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ja/LC_MESSAGES/marble.mo share/locale/ja/LC_MESSAGES/marble_qt.qm +share/locale/ja/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ja/LC_MESSAGES/plasma_runner_marble.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm +share/locale/kk/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm +share/locale/ko/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm +share/locale/lt/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo -share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm +share/locale/lv/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm +share/locale/ml/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm +share/locale/mr/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm +share/locale/nb/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm +share/locale/nds/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm +share/locale/nl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm +share/locale/nn/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm +share/locale/pl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm +share/locale/pt/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm +share/locale/pt_BR/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm +share/locale/ru/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm +share/locale/sk/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm +share/locale/sl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm +share/locale/sv/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/tr/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble_qt.qm +share/locale/tr/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/tr/LC_MESSAGES/plasma_runner_marble.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ug/LC_MESSAGES/marble.mo share/locale/ug/LC_MESSAGES/marble_qt.qm +share/locale/ug/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ug/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm +share/locale/uk/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/uk/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/wa/LC_MESSAGES/marble.mo share/locale/wa/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/marble.mo share/locale/zh_CN/LC_MESSAGES/marble_qt.qm +share/locale/zh_CN/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/zh_TW/LC_MESSAGES/marble.mo share/locale/zh_TW/LC_MESSAGES/marble_qt.qm +share/locale/zh_TW/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo %%DATADIR%%/data/LICENSE.txt %%DATADIR%%/data/audio/KDE-Sys-App-Positive.ogg %%DATADIR%%/data/audio/KDE-Sys-List-End.ogg %%DATADIR%%/data/bitmaps/airport.png %%DATADIR%%/data/bitmaps/annotation.png %%DATADIR%%/data/bitmaps/antarctic_shelves.png %%DATADIR%%/data/bitmaps/audio-x-generic.png %%DATADIR%%/data/bitmaps/bookmark.png %%DATADIR%%/data/bitmaps/border_1.png %%DATADIR%%/data/bitmaps/border_2.png %%DATADIR%%/data/bitmaps/border_disputed.png %%DATADIR%%/data/bitmaps/border_maritime.png %%DATADIR%%/data/bitmaps/city_1_orange.png %%DATADIR%%/data/bitmaps/city_1_red.png %%DATADIR%%/data/bitmaps/city_1_white.png %%DATADIR%%/data/bitmaps/city_1_yellow.png %%DATADIR%%/data/bitmaps/city_2_orange.png %%DATADIR%%/data/bitmaps/city_2_red.png %%DATADIR%%/data/bitmaps/city_2_white.png %%DATADIR%%/data/bitmaps/city_2_yellow.png %%DATADIR%%/data/bitmaps/city_3_orange.png %%DATADIR%%/data/bitmaps/city_3_red.png %%DATADIR%%/data/bitmaps/city_3_white.png %%DATADIR%%/data/bitmaps/city_3_yellow.png %%DATADIR%%/data/bitmaps/city_4_orange.png %%DATADIR%%/data/bitmaps/city_4_red.png %%DATADIR%%/data/bitmaps/city_4_white.png %%DATADIR%%/data/bitmaps/city_4_yellow.png %%DATADIR%%/data/bitmaps/coordinate.png %%DATADIR%%/data/bitmaps/crater.png %%DATADIR%%/data/bitmaps/cursor_bc.png %%DATADIR%%/data/bitmaps/cursor_bl.png %%DATADIR%%/data/bitmaps/cursor_br.png %%DATADIR%%/data/bitmaps/cursor_cl.png %%DATADIR%%/data/bitmaps/cursor_cr.png %%DATADIR%%/data/bitmaps/cursor_tc.png %%DATADIR%%/data/bitmaps/cursor_tl.png %%DATADIR%%/data/bitmaps/cursor_tr.png %%DATADIR%%/data/bitmaps/default_location.png %%DATADIR%%/data/bitmaps/document-edit.png %%DATADIR%%/data/bitmaps/earth_apollo.jpg %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical.png %%DATADIR%%/data/bitmaps/flag.png %%DATADIR%%/data/bitmaps/folder.png %%DATADIR%%/data/bitmaps/glacier.png %%DATADIR%%/data/bitmaps/highway_footway.png %%DATADIR%%/data/bitmaps/highway_motorway.png %%DATADIR%%/data/bitmaps/highway_path.png %%DATADIR%%/data/bitmaps/highway_primary.png %%DATADIR%%/data/bitmaps/highway_secondary.png %%DATADIR%%/data/bitmaps/highway_tertiary.png %%DATADIR%%/data/bitmaps/highway_track.png %%DATADIR%%/data/bitmaps/highway_trunk.png %%DATADIR%%/data/bitmaps/highway_unclassified.png %%DATADIR%%/data/bitmaps/lake.png %%DATADIR%%/data/bitmaps/lake_historic.png %%DATADIR%%/data/bitmaps/manned_landing.png %%DATADIR%%/data/bitmaps/media-playback-pause.png %%DATADIR%%/data/bitmaps/mountain_1.png %%DATADIR%%/data/bitmaps/nation.png %%DATADIR%%/data/bitmaps/notes_closed.png %%DATADIR%%/data/bitmaps/notes_open.png %%DATADIR%%/data/bitmaps/observatory.png %%DATADIR%%/data/bitmaps/ocean.png %%DATADIR%%/data/bitmaps/osm.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/allotments.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/beach.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/danger.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/embankment.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/forest.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/glacier.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_christian.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_generic.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_jewish.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grey_vertical_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/ice.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/military_red_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/orchard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/quarry.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/rock_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scree_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scrub.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/vineyard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_bog.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_mangrove.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_marsh.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_reed.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_swamp.png %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x4.svg %%DATADIR%%/data/bitmaps/other.png %%DATADIR%%/data/bitmaps/playa.png %%DATADIR%%/data/bitmaps/player-time.png %%DATADIR%%/data/bitmaps/pole_1.png %%DATADIR%%/data/bitmaps/pole_2.png %%DATADIR%%/data/bitmaps/redflag_22.png %%DATADIR%%/data/bitmaps/redflag_32.png %%DATADIR%%/data/bitmaps/river.png %%DATADIR%%/data/bitmaps/robotic_rover.png %%DATADIR%%/data/bitmaps/routing_pick.png %%DATADIR%%/data/bitmaps/routing_remove.png %%DATADIR%%/data/bitmaps/routing_step.png %%DATADIR%%/data/bitmaps/satellite.png %%DATADIR%%/data/bitmaps/shadowframe.png %%DATADIR%%/data/bitmaps/shipwreck.png %%DATADIR%%/data/bitmaps/stars/star_0_blue.png %%DATADIR%%/data/bitmaps/stars/star_0_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_0_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_0_orange.png %%DATADIR%%/data/bitmaps/stars/star_0_red.png %%DATADIR%%/data/bitmaps/stars/star_0_white.png %%DATADIR%%/data/bitmaps/stars/star_0_yellow.png %%DATADIR%%/data/bitmaps/stars/star_3_blue.png %%DATADIR%%/data/bitmaps/stars/star_3_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_3_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_3_orange.png %%DATADIR%%/data/bitmaps/stars/star_3_red.png %%DATADIR%%/data/bitmaps/stars/star_3_white.png %%DATADIR%%/data/bitmaps/stars/star_3_yellow.png %%DATADIR%%/data/bitmaps/turn-around.png %%DATADIR%%/data/bitmaps/turn-continue.png %%DATADIR%%/data/bitmaps/turn-end.png %%DATADIR%%/data/bitmaps/turn-exit-left.png %%DATADIR%%/data/bitmaps/turn-exit-right.png %%DATADIR%%/data/bitmaps/turn-ferry.png %%DATADIR%%/data/bitmaps/turn-left.png %%DATADIR%%/data/bitmaps/turn-merge.png %%DATADIR%%/data/bitmaps/turn-right.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-third.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-third.png %%DATADIR%%/data/bitmaps/turn-sharp-left.png %%DATADIR%%/data/bitmaps/turn-sharp-right.png %%DATADIR%%/data/bitmaps/turn-slight-left.png %%DATADIR%%/data/bitmaps/turn-slight-right.png %%DATADIR%%/data/bitmaps/unmanned_hard_landing.png %%DATADIR%%/data/bitmaps/unmanned_soft_landing.png %%DATADIR%%/data/bitmaps/urban_area.png %%DATADIR%%/data/bitmaps/valley.png %%DATADIR%%/data/bitmaps/volcano_1.png %%DATADIR%%/data/bitmaps/waypoint.png %%DATADIR%%/data/bitmaps/wikipedia.png %%DATADIR%%/data/credits_authors.html %%DATADIR%%/data/credits_data.html %%DATADIR%%/data/flags/flag_ad.svg %%DATADIR%%/data/flags/flag_ae.svg %%DATADIR%%/data/flags/flag_af.svg %%DATADIR%%/data/flags/flag_ag.svg %%DATADIR%%/data/flags/flag_ai.svg %%DATADIR%%/data/flags/flag_al.svg %%DATADIR%%/data/flags/flag_am.svg %%DATADIR%%/data/flags/flag_an.svg %%DATADIR%%/data/flags/flag_ao.svg %%DATADIR%%/data/flags/flag_aq.svg %%DATADIR%%/data/flags/flag_ar.svg %%DATADIR%%/data/flags/flag_as.svg %%DATADIR%%/data/flags/flag_at.svg %%DATADIR%%/data/flags/flag_au.svg %%DATADIR%%/data/flags/flag_aw.svg %%DATADIR%%/data/flags/flag_ax.svg %%DATADIR%%/data/flags/flag_az.svg %%DATADIR%%/data/flags/flag_ba.svg %%DATADIR%%/data/flags/flag_bb.svg %%DATADIR%%/data/flags/flag_bd.svg %%DATADIR%%/data/flags/flag_be.svg %%DATADIR%%/data/flags/flag_bf.svg %%DATADIR%%/data/flags/flag_bg.svg %%DATADIR%%/data/flags/flag_bh.svg %%DATADIR%%/data/flags/flag_bi.svg %%DATADIR%%/data/flags/flag_bj.svg %%DATADIR%%/data/flags/flag_bm.svg %%DATADIR%%/data/flags/flag_bn.svg %%DATADIR%%/data/flags/flag_bo.svg %%DATADIR%%/data/flags/flag_br.svg %%DATADIR%%/data/flags/flag_bs.svg %%DATADIR%%/data/flags/flag_bt.svg %%DATADIR%%/data/flags/flag_bv.svg %%DATADIR%%/data/flags/flag_bw.svg %%DATADIR%%/data/flags/flag_by.svg %%DATADIR%%/data/flags/flag_bz.svg %%DATADIR%%/data/flags/flag_ca.svg %%DATADIR%%/data/flags/flag_cc.svg %%DATADIR%%/data/flags/flag_cd.svg %%DATADIR%%/data/flags/flag_cf.svg %%DATADIR%%/data/flags/flag_cg.svg %%DATADIR%%/data/flags/flag_ch.svg %%DATADIR%%/data/flags/flag_ci.svg %%DATADIR%%/data/flags/flag_ck.svg %%DATADIR%%/data/flags/flag_cl.svg %%DATADIR%%/data/flags/flag_cm.svg %%DATADIR%%/data/flags/flag_cn.svg %%DATADIR%%/data/flags/flag_co.svg %%DATADIR%%/data/flags/flag_cr.svg %%DATADIR%%/data/flags/flag_cu.svg %%DATADIR%%/data/flags/flag_cv.svg %%DATADIR%%/data/flags/flag_cx.svg %%DATADIR%%/data/flags/flag_cy.svg %%DATADIR%%/data/flags/flag_cz.svg %%DATADIR%%/data/flags/flag_de.svg %%DATADIR%%/data/flags/flag_dj.svg %%DATADIR%%/data/flags/flag_dk.svg %%DATADIR%%/data/flags/flag_dm.svg %%DATADIR%%/data/flags/flag_do.svg %%DATADIR%%/data/flags/flag_dz.svg %%DATADIR%%/data/flags/flag_ec.svg %%DATADIR%%/data/flags/flag_ee.svg %%DATADIR%%/data/flags/flag_eg.svg %%DATADIR%%/data/flags/flag_eh.svg %%DATADIR%%/data/flags/flag_er.svg %%DATADIR%%/data/flags/flag_es.svg %%DATADIR%%/data/flags/flag_et.svg %%DATADIR%%/data/flags/flag_fi.svg %%DATADIR%%/data/flags/flag_fj.svg %%DATADIR%%/data/flags/flag_fk.svg %%DATADIR%%/data/flags/flag_fm.svg %%DATADIR%%/data/flags/flag_fo.svg %%DATADIR%%/data/flags/flag_fr.svg %%DATADIR%%/data/flags/flag_ga.svg %%DATADIR%%/data/flags/flag_gb.svg %%DATADIR%%/data/flags/flag_gd.svg %%DATADIR%%/data/flags/flag_ge.svg %%DATADIR%%/data/flags/flag_gf.svg %%DATADIR%%/data/flags/flag_gg.svg %%DATADIR%%/data/flags/flag_gh.svg %%DATADIR%%/data/flags/flag_gi.svg %%DATADIR%%/data/flags/flag_gl.svg %%DATADIR%%/data/flags/flag_gm.svg %%DATADIR%%/data/flags/flag_gn.svg %%DATADIR%%/data/flags/flag_gp.svg %%DATADIR%%/data/flags/flag_gq.svg %%DATADIR%%/data/flags/flag_gr.svg %%DATADIR%%/data/flags/flag_gs.svg %%DATADIR%%/data/flags/flag_gt.svg %%DATADIR%%/data/flags/flag_gu.svg %%DATADIR%%/data/flags/flag_gw.svg %%DATADIR%%/data/flags/flag_gy.svg %%DATADIR%%/data/flags/flag_hk.svg %%DATADIR%%/data/flags/flag_hm.svg %%DATADIR%%/data/flags/flag_hn.svg %%DATADIR%%/data/flags/flag_hr.svg %%DATADIR%%/data/flags/flag_ht.svg %%DATADIR%%/data/flags/flag_hu.svg %%DATADIR%%/data/flags/flag_id.svg %%DATADIR%%/data/flags/flag_ie.svg %%DATADIR%%/data/flags/flag_il.svg %%DATADIR%%/data/flags/flag_im.svg %%DATADIR%%/data/flags/flag_in.svg %%DATADIR%%/data/flags/flag_io.svg %%DATADIR%%/data/flags/flag_iq.svg %%DATADIR%%/data/flags/flag_ir.svg %%DATADIR%%/data/flags/flag_is.svg %%DATADIR%%/data/flags/flag_it.svg %%DATADIR%%/data/flags/flag_je.svg %%DATADIR%%/data/flags/flag_jm.svg %%DATADIR%%/data/flags/flag_jo.svg %%DATADIR%%/data/flags/flag_jp.svg %%DATADIR%%/data/flags/flag_ke.svg %%DATADIR%%/data/flags/flag_kg.svg %%DATADIR%%/data/flags/flag_kh.svg %%DATADIR%%/data/flags/flag_ki.svg %%DATADIR%%/data/flags/flag_km.svg %%DATADIR%%/data/flags/flag_kn.svg %%DATADIR%%/data/flags/flag_kp.svg %%DATADIR%%/data/flags/flag_kr.svg %%DATADIR%%/data/flags/flag_kw.svg %%DATADIR%%/data/flags/flag_ky.svg %%DATADIR%%/data/flags/flag_kz.svg %%DATADIR%%/data/flags/flag_la.svg %%DATADIR%%/data/flags/flag_lb.svg %%DATADIR%%/data/flags/flag_lc.svg %%DATADIR%%/data/flags/flag_li.svg %%DATADIR%%/data/flags/flag_lk.svg %%DATADIR%%/data/flags/flag_lr.svg %%DATADIR%%/data/flags/flag_ls.svg %%DATADIR%%/data/flags/flag_lt.svg %%DATADIR%%/data/flags/flag_lu.svg %%DATADIR%%/data/flags/flag_lv.svg %%DATADIR%%/data/flags/flag_ly.svg %%DATADIR%%/data/flags/flag_ma.svg %%DATADIR%%/data/flags/flag_mc.svg %%DATADIR%%/data/flags/flag_md.svg %%DATADIR%%/data/flags/flag_me.svg %%DATADIR%%/data/flags/flag_mg.svg %%DATADIR%%/data/flags/flag_mh.svg %%DATADIR%%/data/flags/flag_mk.svg %%DATADIR%%/data/flags/flag_ml.svg %%DATADIR%%/data/flags/flag_mm.svg %%DATADIR%%/data/flags/flag_mn.svg %%DATADIR%%/data/flags/flag_mo.svg %%DATADIR%%/data/flags/flag_mp.svg %%DATADIR%%/data/flags/flag_mq.svg %%DATADIR%%/data/flags/flag_mr.svg %%DATADIR%%/data/flags/flag_ms.svg %%DATADIR%%/data/flags/flag_mt.svg %%DATADIR%%/data/flags/flag_mu.svg %%DATADIR%%/data/flags/flag_mv.svg %%DATADIR%%/data/flags/flag_mw.svg %%DATADIR%%/data/flags/flag_mx.svg %%DATADIR%%/data/flags/flag_my.svg %%DATADIR%%/data/flags/flag_mz.svg %%DATADIR%%/data/flags/flag_na.svg %%DATADIR%%/data/flags/flag_nc.svg %%DATADIR%%/data/flags/flag_ne.svg %%DATADIR%%/data/flags/flag_nf.svg %%DATADIR%%/data/flags/flag_ng.svg %%DATADIR%%/data/flags/flag_ni.svg %%DATADIR%%/data/flags/flag_nl.svg %%DATADIR%%/data/flags/flag_no.svg %%DATADIR%%/data/flags/flag_np.svg %%DATADIR%%/data/flags/flag_nr.svg %%DATADIR%%/data/flags/flag_nu.svg %%DATADIR%%/data/flags/flag_nz.svg %%DATADIR%%/data/flags/flag_om.svg %%DATADIR%%/data/flags/flag_pa.svg %%DATADIR%%/data/flags/flag_pe.svg %%DATADIR%%/data/flags/flag_pf.svg %%DATADIR%%/data/flags/flag_pg.svg %%DATADIR%%/data/flags/flag_ph.svg %%DATADIR%%/data/flags/flag_pk.svg %%DATADIR%%/data/flags/flag_pl.svg %%DATADIR%%/data/flags/flag_pm.svg %%DATADIR%%/data/flags/flag_pn.svg %%DATADIR%%/data/flags/flag_pr.svg %%DATADIR%%/data/flags/flag_ps.svg %%DATADIR%%/data/flags/flag_pt.svg %%DATADIR%%/data/flags/flag_pw.svg %%DATADIR%%/data/flags/flag_py.svg %%DATADIR%%/data/flags/flag_qa.svg %%DATADIR%%/data/flags/flag_re.svg %%DATADIR%%/data/flags/flag_ro.svg %%DATADIR%%/data/flags/flag_rs.svg %%DATADIR%%/data/flags/flag_ru.svg %%DATADIR%%/data/flags/flag_rw.svg %%DATADIR%%/data/flags/flag_sa.svg %%DATADIR%%/data/flags/flag_sb.svg %%DATADIR%%/data/flags/flag_sc.svg %%DATADIR%%/data/flags/flag_sd.svg %%DATADIR%%/data/flags/flag_se.svg %%DATADIR%%/data/flags/flag_sg.svg %%DATADIR%%/data/flags/flag_sh.svg %%DATADIR%%/data/flags/flag_si.svg %%DATADIR%%/data/flags/flag_sj.svg %%DATADIR%%/data/flags/flag_sk.svg %%DATADIR%%/data/flags/flag_sl.svg %%DATADIR%%/data/flags/flag_sm.svg %%DATADIR%%/data/flags/flag_sn.svg %%DATADIR%%/data/flags/flag_so.svg %%DATADIR%%/data/flags/flag_sr.svg %%DATADIR%%/data/flags/flag_st.svg %%DATADIR%%/data/flags/flag_sv.svg %%DATADIR%%/data/flags/flag_sy.svg %%DATADIR%%/data/flags/flag_sz.svg %%DATADIR%%/data/flags/flag_tc.svg %%DATADIR%%/data/flags/flag_td.svg %%DATADIR%%/data/flags/flag_tf.svg %%DATADIR%%/data/flags/flag_tg.svg %%DATADIR%%/data/flags/flag_th.svg %%DATADIR%%/data/flags/flag_tj.svg %%DATADIR%%/data/flags/flag_tk.svg %%DATADIR%%/data/flags/flag_tl.svg %%DATADIR%%/data/flags/flag_tm.svg %%DATADIR%%/data/flags/flag_tn.svg %%DATADIR%%/data/flags/flag_to.svg %%DATADIR%%/data/flags/flag_tr.svg %%DATADIR%%/data/flags/flag_tt.svg %%DATADIR%%/data/flags/flag_tv.svg %%DATADIR%%/data/flags/flag_tw.svg %%DATADIR%%/data/flags/flag_tz.svg %%DATADIR%%/data/flags/flag_ua.svg %%DATADIR%%/data/flags/flag_ug.svg %%DATADIR%%/data/flags/flag_um.svg %%DATADIR%%/data/flags/flag_us.svg %%DATADIR%%/data/flags/flag_uy.svg %%DATADIR%%/data/flags/flag_uz.svg %%DATADIR%%/data/flags/flag_vc.svg %%DATADIR%%/data/flags/flag_ve.svg %%DATADIR%%/data/flags/flag_vg.svg %%DATADIR%%/data/flags/flag_vi.svg %%DATADIR%%/data/flags/flag_vn.svg %%DATADIR%%/data/flags/flag_vu.svg %%DATADIR%%/data/flags/flag_wf.svg %%DATADIR%%/data/flags/flag_ws.svg %%DATADIR%%/data/flags/flag_ye.svg %%DATADIR%%/data/flags/flag_yt.svg %%DATADIR%%/data/flags/flag_za.svg %%DATADIR%%/data/flags/flag_zm.svg %%DATADIR%%/data/flags/flag_zw.svg %%DATADIR%%/data/landcolors.leg %%DATADIR%%/data/legend.css %%DATADIR%%/data/legend.html %%DATADIR%%/data/licenses/lgpl2.txt %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/behaim1492-preview.png %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.dgml %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.kml %%DATADIR%%/data/maps/earth/behaim1492/figuren.kml %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend.html %%DATADIR%%/data/maps/earth/behaim1492/legend/Martin_Behaim.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend/globus.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/texte.kml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble-preview.png %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.dgml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.jpg %%DATADIR%%/data/maps/earth/bluemarble/legend/desert.png %%DATADIR%%/data/maps/earth/bluemarble/legend/ice.png %%DATADIR%%/data/maps/earth/bluemarble/legend/mountain.png %%DATADIR%%/data/maps/earth/bluemarble/legend/vegetation.png %%DATADIR%%/data/maps/earth/bluemarble/legend/water.png %%DATADIR%%/data/maps/earth/citylights/citylights-preview.png %%DATADIR%%/data/maps/earth/citylights/citylights.dgml %%DATADIR%%/data/maps/earth/citylights/citylights.jpg %%DATADIR%%/data/maps/earth/citylights/legend/city.png %%DATADIR%%/data/maps/earth/citylights/legend/darkterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/lightterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/water.png %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/hillshading/0/0/0.png %%DATADIR%%/data/maps/earth/humanitarian/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/Alcatraz.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Brasilia.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Church of the Holy Sepulchre.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Death Valley.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Desert breath.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Disneyland.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Dunnottar Castle.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Eiffel Tower.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Kheops Pyramid.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Klyuchevskaya Sopka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Maree Man.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Moscow Kremlin.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Nazca Lines.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palace Het Loo.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palm Jumeirah.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Russell Square.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Santorini.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Shuttle Landing Facility.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sofievka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/St Peter's Basilica.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Stonehenge.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sydney Opera House.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taj Mahal.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taranaki.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The Great Wall of China.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The World.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Vesuvius.jpg %%DATADIR%%/data/maps/earth/openstreetmap/legend.html %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportapron.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportrunway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/boundary.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridge.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/byway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/cycleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/footway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_hotel2.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_motel.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_court.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_firestation.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_library.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_playground.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_post_office.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_public_building.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_toilets.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_college.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_nursery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_school.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_university.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_bar.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_biergarten.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_cafe.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_drinkingtap.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_fastfood.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_ice_cream.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_pub.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_restaurant.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_dentist.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_doctors.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_hospital.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_pharmacy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_veterinary.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_atm.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_bank.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_currency_exchange.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_christian.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_unknown.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/poi_embassy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/power_station_gas.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_alcohol.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_bakery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_book.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_car.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_clothes.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_convenience.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_gift.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_cinema.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_monument.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_ruin.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_theatre.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/motorway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/primaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railwaystation.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/secondaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/significantbuilding.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/subway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/summitpeak.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/track.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tram.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/trunkroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tunnel.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unclassifiedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unsurfacedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap-preview.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap.dgml %%DATADIR%%/data/maps/earth/openstreetmap/tour.kml %%DATADIR%%/data/maps/earth/plain/plain-preview.png %%DATADIR%%/data/maps/earth/plain/plain.dgml %%DATADIR%%/data/maps/earth/political/political-preview.png %%DATADIR%%/data/maps/earth/political/political.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec-preview.png %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.jpg %%DATADIR%%/data/maps/earth/precip-july/precip-july-preview.png %%DATADIR%%/data/maps/earth/precip-july/precip-july.dgml %%DATADIR%%/data/maps/earth/precip-july/precip-july.jpg %%DATADIR%%/data/maps/earth/schagen1689/legend.html %%DATADIR%%/data/maps/earth/schagen1689/legend/lake.png %%DATADIR%%/data/maps/earth/schagen1689/legend/mountain.png %%DATADIR%%/data/maps/earth/schagen1689/legend/river.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_orig.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_title.png %%DATADIR%%/data/maps/earth/schagen1689/legend/town.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689-preview.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.dgml %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.jpg %%DATADIR%%/data/maps/earth/sentinel2/0/0/0.jpg %%DATADIR%%/data/maps/earth/sentinel2/legend.html %%DATADIR%%/data/maps/earth/sentinel2/sentinel2-preview.png %%DATADIR%%/data/maps/earth/sentinel2/sentinel2.dgml %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000015.jpg %%DATADIR%%/data/maps/earth/srtm/srtm-preview.png %%DATADIR%%/data/maps/earth/srtm/srtm.dgml %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000000.png %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000001.png %%DATADIR%%/data/maps/earth/srtm2/srtm2.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec-preview.png %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.jpg %%DATADIR%%/data/maps/earth/temp-july/temp-july-preview.png %%DATADIR%%/data/maps/earth/temp-july/temp-july.dgml %%DATADIR%%/data/maps/earth/temp-july/temp-july.jpg %%DATADIR%%/data/maps/earth/vectorosm/0/0/0.o5m %%DATADIR%%/data/maps/earth/vectorosm/legend.html %%DATADIR%%/data/maps/earth/vectorosm/vectorosm-preview.png %%DATADIR%%/data/maps/earth/vectorosm/vectorosm.dgml %%DATADIR%%/data/maps/moon/clementine/clementine-preview.png %%DATADIR%%/data/maps/moon/clementine/clementine.dgml %%DATADIR%%/data/maps/moon/clementine/clementine.jpg %%DATADIR%%/data/maps/moon/clementine/legend.html %%DATADIR%%/data/maps/moon/clementine/tour.kml %%DATADIR%%/data/mwdbii/DATELINE.PNT %%DATADIR%%/data/mwdbii/PCOAST.PNT %%DATADIR%%/data/mwdbii/PDIFFBORDER.PNT %%DATADIR%%/data/mwdbii/PGLACIER.PNT %%DATADIR%%/data/mwdbii/PISLAND.PNT %%DATADIR%%/data/mwdbii/PLAKE.PNT %%DATADIR%%/data/mwdbii/PLAKEISLAND.PNT %%DATADIR%%/data/mwdbii/PUSA48.DIFF.PNT %%DATADIR%%/data/mwdbii/RIVER.PNT %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_maritime_indicator.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_breakaway_disputed_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_countries.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_pacific_groupings.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_1_states_provinces_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_polys.pn2 %%DATADIR%%/data/naturalearth/ne_50m_coastline.pn2 %%DATADIR%%/data/naturalearth/ne_50m_glaciated_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes_historic.pn2 %%DATADIR%%/data/naturalearth/ne_50m_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_playas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_rivers_lake_centerlines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_urban_areas.pn2 %%DATADIR%%/data/placemarks/baseplacemarks.cache %%DATADIR%%/data/placemarks/boundaryplacemarks.cache %%DATADIR%%/data/placemarks/cityplacemarks.cache %%DATADIR%%/data/placemarks/elevplacemarks.cache %%DATADIR%%/data/placemarks/moonlandingsites.cache %%DATADIR%%/data/placemarks/moonterrain.cache %%DATADIR%%/data/placemarks/otherplacemarks.cache %%DATADIR%%/data/precipcolors.leg %%DATADIR%%/data/seacolors.leg %%DATADIR%%/data/stars/constellations.dat %%DATADIR%%/data/stars/deepsky.png %%DATADIR%%/data/stars/dso.dat %%DATADIR%%/data/stars/names.csv %%DATADIR%%/data/stars/stars.dat %%DATADIR%%/data/svg/application-x-marble-gray.png %%DATADIR%%/data/svg/application-x-marble.png %%DATADIR%%/data/svg/application-x-marble.svg %%DATADIR%%/data/svg/bookmark.svg %%DATADIR%%/data/svg/coordinate.svg %%DATADIR%%/data/svg/dot-circle-regular.svg %%DATADIR%%/data/svg/glow.png %%DATADIR%%/data/svg/lunarmap.svg %%DATADIR%%/data/svg/marble-logo-32dpi.png %%DATADIR%%/data/svg/marble-logo-72dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-32dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-72dpi.png %%DATADIR%%/data/svg/marble-logo.png %%DATADIR%%/data/svg/marble-logo.svg %%DATADIR%%/data/svg/marsmap.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bike_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_boat_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bus_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_car_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_railway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_run_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_subway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_walk_48px.svg %%DATADIR%%/data/svg/material/maps/ic_tram_48px.svg %%DATADIR%%/data/svg/moon.png %%DATADIR%%/data/svg/osmcarto/svg/airtransport/aerodrome.svg %%DATADIR%%/data/svg/osmcarto/svg/airtransport/helipad.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/archaeological_site.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/artwork.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/atm.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bank.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bar.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/biergarten.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cafe.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/car_wash.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cave.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cinema.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/community_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/courthouse-16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/drinking_water.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/emergency_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fast_food.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/firestation.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fountain-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/information.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/library.20.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/monument.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/mountain_rescue.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/museum.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/nightclub.18.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/picnic.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/playground.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/police.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_box-12.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_office-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/prison.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/pub.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/recycling.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/restaurant.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/social_facility.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/telephone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/theatre.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/toilets.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/tourist_memorial.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/town_hall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/viewpoint.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_tower.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/windmill.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/buddhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/christian.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/hinduist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/jewish.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/muslim.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/place_of_worship.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/power_wind-16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/shintoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/sikhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/taoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/dentist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/doctors.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/hospital.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/pharmacy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/veterinary-14.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/bench.16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/entrance.10.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/gate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/liftgate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/mini_roundabout.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/peak.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower_small.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/pylon.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/railway_station.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/saddle.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/speedcamera.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/spring.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/square.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/traffic_light.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-autumn.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-winter.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/volcano.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/waste_basket.10.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/golf.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/miniature_golf.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/communications.16.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/hunting-stand.16.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-8.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-adminlevel2.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/art.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/bag-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beauty-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beverages-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/butcher-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/car_parts-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/chemist-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/computer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/confectionery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/copyshop.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/deli.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/department_store-16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/florist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/garden_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/greengrocer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/hifi-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/ice-cream-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/kiosk-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/laundry-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/mobile_phone.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/motorcycle-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/musical_instrument-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/newsagent-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/outdoor-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/perfumery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/photo-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/seafood-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_alcohol.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bakery.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_books.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_car.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_clothes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_convenience.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_diy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_electronics.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_furniture.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_gift.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_hairdresser.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_jewelry.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_mobile_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_optician.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_pet.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_shoes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_supermarket.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shopping_car_repair.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/sports.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/stationery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tea.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tobacco.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/toys-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/travel_agency-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/variety_store-14.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/alpinehut.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bicycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_station.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_stop.12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/camping.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/car_share.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/caravan_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/charging_station.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/elevator-12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/embassy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/ford.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/fuel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/guest_house.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hostel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hotel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/lighthouse.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motorcycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/parking.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/railway_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_car.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_ski.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/shelter.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/subway_entrance.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/taxi.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/traffic_light_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/wilderness_hut.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/zebra_crossing.svg %%DATADIR%%/data/svg/sun.png %%DATADIR%%/data/svg/sunshine.png %%DATADIR%%/data/svg/thenounproject/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.svg %%DATADIR%%/data/svg/track_turtle.svg %%DATADIR%%/data/svg/wikipedia.svg %%DATADIR%%/data/svg/wikipedia_shadow.svg %%DATADIR%%/data/svg/worldmap.svg %%DATADIR%%/data/tempcolors.leg %%DATADIR%%/data/weather/bbc-stations.xml %%DATADIR%%/data/weather/weather-clear-night.png %%DATADIR%%/data/weather/weather-clear.png %%DATADIR%%/data/weather/weather-clouds-night.png %%DATADIR%%/data/weather/weather-clouds.png %%DATADIR%%/data/weather/weather-few-clouds-night.png %%DATADIR%%/data/weather/weather-few-clouds.png %%DATADIR%%/data/weather/weather-hail.png %%DATADIR%%/data/weather/weather-many-clouds.png %%DATADIR%%/data/weather/weather-mist.png %%DATADIR%%/data/weather/weather-none-available.png %%DATADIR%%/data/weather/weather-showers-day.png %%DATADIR%%/data/weather/weather-showers-night.png %%DATADIR%%/data/weather/weather-showers-scattered-day.png %%DATADIR%%/data/weather/weather-showers-scattered-night.png %%DATADIR%%/data/weather/weather-showers-scattered.png %%DATADIR%%/data/weather/weather-showers.png %%DATADIR%%/data/weather/weather-snow-rain.png %%DATADIR%%/data/weather/weather-snow-scattered-day.png %%DATADIR%%/data/weather/weather-snow-scattered-night.png %%DATADIR%%/data/weather/weather-snow-scattered.png %%DATADIR%%/data/weather/weather-snow.png %%DATADIR%%/data/weather/weather-storm-day.png %%DATADIR%%/data/weather/weather-storm-night.png %%DATADIR%%/data/weather/weather-storm.png %%DATADIR%%/data/weather/wind-arrows.svgz share/metainfo/org.kde.marble.appdata.xml share/metainfo/org.kde.plasma.worldmap.appdata.xml share/metainfo/org.kde.plasma.worldclock.appdata.xml share/mime/packages/geo.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configMapDisplay.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.json share/plasma/wallpapers/org.kde.plasma.worldmap/contents/config/main.xml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/config.qml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/main.qml share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.desktop share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 538648) +++ head/audio/audiocd-kio/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429556 -SHA256 (KDE/applications/20.04.1/audiocd-kio-20.04.1.tar.xz) = d3d7392c76ff285ef6d9195da6ea0d7c7dc1e5113afebd64111f62af56ef9662 -SIZE (KDE/applications/20.04.1/audiocd-kio-20.04.1.tar.xz) = 358584 +TIMESTAMP = 1591712611 +SHA256 (KDE/applications/20.04.2/audiocd-kio-20.04.2.tar.xz) = 99664af57b6bd0d51c28ff666323e6deb4959ae0b83e7061d517bbdfb211c894 +SIZE (KDE/applications/20.04.2/audiocd-kio-20.04.2.tar.xz) = 489304 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 538648) +++ head/audio/audiocd-kio/pkg-plist (revision 538649) @@ -1,292 +1,293 @@ share/qlogging-categories5/kio_audiocd.categories include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/kservices5/audiocd.protocol share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/ast/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo +share/locale/ia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/solid/actions/solid_audiocd.desktop Index: head/audio/elisa/distinfo =================================================================== --- head/audio/elisa/distinfo (revision 538648) +++ head/audio/elisa/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429557 -SHA256 (KDE/applications/20.04.1/elisa-20.04.1.tar.xz) = c471e38f5ccc380f73eae10dec2f7fa9eefb81eae3203c99710e0e2ed03d6efa -SIZE (KDE/applications/20.04.1/elisa-20.04.1.tar.xz) = 1407152 +TIMESTAMP = 1591724286 +SHA256 (KDE/applications/20.04.2/elisa-20.04.2.tar.xz) = d46b8eab27aa183362d6298dacbcec04e57126f25b122f1db31f6819f42dd893 +SIZE (KDE/applications/20.04.2/elisa-20.04.2.tar.xz) = 1407692 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 538648) +++ head/audio/juk/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429558 -SHA256 (KDE/applications/20.04.1/juk-20.04.1.tar.xz) = b9feff202cd216ded86a880a4da36fd3fd8b57a3508a61dc628b416fe7817a1b -SIZE (KDE/applications/20.04.1/juk-20.04.1.tar.xz) = 1869896 +TIMESTAMP = 1591712612 +SHA256 (KDE/applications/20.04.2/juk-20.04.2.tar.xz) = 2756d8b67fcbb95d9b30e1aa8f79e30dff2353086b138f6a62243a7bd1586115 +SIZE (KDE/applications/20.04.2/juk-20.04.2.tar.xz) = 1869788 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 538648) +++ head/audio/kmix/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429559 -SHA256 (KDE/applications/20.04.1/kmix-20.04.1.tar.xz) = cd06a84b3b94ac8f3cebd69e34c36ed19998ba8d70067a0dcb989f72af1745d9 -SIZE (KDE/applications/20.04.1/kmix-20.04.1.tar.xz) = 1006916 +TIMESTAMP = 1591712613 +SHA256 (KDE/applications/20.04.2/kmix-20.04.2.tar.xz) = 6cbd745bd3214c7b14ddae13d6d214d866734028192865fda25ebc944e7f75d7 +SIZE (KDE/applications/20.04.2/kmix-20.04.2.tar.xz) = 1007080 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 538648) +++ head/audio/kwave/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429559 -SHA256 (KDE/applications/20.04.1/kwave-20.04.1.tar.xz) = dc4754b651380e9c6c8ac740f37ea118a7e6e2d91ee5ce4abaf10976c7414a7b -SIZE (KDE/applications/20.04.1/kwave-20.04.1.tar.xz) = 6195960 +TIMESTAMP = 1591712614 +SHA256 (KDE/applications/20.04.2/kwave-20.04.2.tar.xz) = 055de6b199008006108779451c74007f1e781fb1ee2d957018783015edb50e79 +SIZE (KDE/applications/20.04.2/kwave-20.04.2.tar.xz) = 6195816 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 538648) +++ head/audio/libkcddb/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429560 -SHA256 (KDE/applications/20.04.1/libkcddb-20.04.1.tar.xz) = 1068e8263cc9f0c93ecee9a27cd2a2fdc4e417524d765c28c4ba368aa4f299bb -SIZE (KDE/applications/20.04.1/libkcddb-20.04.1.tar.xz) = 427308 +TIMESTAMP = 1591712615 +SHA256 (KDE/applications/20.04.2/libkcddb-20.04.2.tar.xz) = a48cc2c81da2882d59eed961c9f5a0ad979e1d7c02e21aec7233b7ed7bf2c452 +SIZE (KDE/applications/20.04.2/libkcddb-20.04.2.tar.xz) = 427412 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 538648) +++ head/audio/libkcompactdisc/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429561 -SHA256 (KDE/applications/20.04.1/libkcompactdisc-20.04.1.tar.xz) = 7d693691e5ce39890b6f5ddd12f73c3ee31cf6e17ce2485ab3366bdc2188c447 -SIZE (KDE/applications/20.04.1/libkcompactdisc-20.04.1.tar.xz) = 88784 +TIMESTAMP = 1591712616 +SHA256 (KDE/applications/20.04.2/libkcompactdisc-20.04.2.tar.xz) = 9ac8b6efc31b6055cfc03891af878d10ac5e1fec039ff3b3e3fce56c7110872b +SIZE (KDE/applications/20.04.2/libkcompactdisc-20.04.2.tar.xz) = 88720 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 538648) +++ head/databases/akonadi/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429562 -SHA256 (KDE/applications/20.04.1/akonadi-20.04.1.tar.xz) = 0bffbcd00e0d4f4f3a2084ce6a42da8f05fdf14cb361141b4b734e35203d764e -SIZE (KDE/applications/20.04.1/akonadi-20.04.1.tar.xz) = 1584156 +TIMESTAMP = 1591712616 +SHA256 (KDE/applications/20.04.2/akonadi-20.04.2.tar.xz) = b2e4bb3a8038ecb47bcdecc25edad21a6c5eb0366c1e739064ccaa3f13b20f16 +SIZE (KDE/applications/20.04.2/akonadi-20.04.2.tar.xz) = 1584156 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 538648) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429563 -SHA256 (KDE/applications/20.04.1/akonadi-calendar-tools-20.04.1.tar.xz) = 611e500f2d8b931fa9eef6821e51c7aec1586911e1d5a47cedc91131df83a3c4 -SIZE (KDE/applications/20.04.1/akonadi-calendar-tools-20.04.1.tar.xz) = 224572 +TIMESTAMP = 1591712617 +SHA256 (KDE/applications/20.04.2/akonadi-calendar-tools-20.04.2.tar.xz) = e0c1c99ee52347da9942f494272f979d7d692b6c3e7a05dc67ac74a27df963f2 +SIZE (KDE/applications/20.04.2/akonadi-calendar-tools-20.04.2.tar.xz) = 224616 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 538648) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429564 -SHA256 (KDE/applications/20.04.1/akonadi-import-wizard-20.04.1.tar.xz) = 483c2fd59209284e24d15f03052a96c1d25f89f719e0500b2e774cc7f72bc833 -SIZE (KDE/applications/20.04.1/akonadi-import-wizard-20.04.1.tar.xz) = 439084 +TIMESTAMP = 1591712618 +SHA256 (KDE/applications/20.04.2/akonadi-import-wizard-20.04.2.tar.xz) = 3573bb200102d9439f65e278c4c1fc5e3adc6d8049898ebeab859ded159304eb +SIZE (KDE/applications/20.04.2/akonadi-import-wizard-20.04.2.tar.xz) = 439148 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 538648) +++ head/deskutils/akonadiconsole/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429565 -SHA256 (KDE/applications/20.04.1/akonadiconsole-20.04.1.tar.xz) = d62039d66c996902f16575918d278996b895a872ea0a5046b0aa4d39746b556a -SIZE (KDE/applications/20.04.1/akonadiconsole-20.04.1.tar.xz) = 193596 +TIMESTAMP = 1591712619 +SHA256 (KDE/applications/20.04.2/akonadiconsole-20.04.2.tar.xz) = 453ea3ed27b897b588d7adc9dc0865655efde841ecbcc9aceba84a923071eef8 +SIZE (KDE/applications/20.04.2/akonadiconsole-20.04.2.tar.xz) = 193656 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 538648) +++ head/deskutils/akregator/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429565 -SHA256 (KDE/applications/20.04.1/akregator-20.04.1.tar.xz) = 574c507cbe2e26c4b4d2a840c0f686e3dc807eed448dca07f331e1a639f4219c -SIZE (KDE/applications/20.04.1/akregator-20.04.1.tar.xz) = 2196636 +TIMESTAMP = 1591712620 +SHA256 (KDE/applications/20.04.2/akregator-20.04.2.tar.xz) = f5f79894bf939d9448a51da3a52eb81d8609831e55a8e7eeb556374d63e5b0fd +SIZE (KDE/applications/20.04.2/akregator-20.04.2.tar.xz) = 2196800 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 538648) +++ head/deskutils/grantlee-editor/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429566 -SHA256 (KDE/applications/20.04.1/grantlee-editor-20.04.1.tar.xz) = 8652c1401aa903cff84524cd74d5eab3c20c1808fbcb245ff349cd862e89f25d -SIZE (KDE/applications/20.04.1/grantlee-editor-20.04.1.tar.xz) = 111228 +TIMESTAMP = 1591712621 +SHA256 (KDE/applications/20.04.2/grantlee-editor-20.04.2.tar.xz) = 95206ed8f3372198f77e3b9307828d94d79c8278f41624d6467de3eddef77819 +SIZE (KDE/applications/20.04.2/grantlee-editor-20.04.2.tar.xz) = 111212 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 538648) +++ head/deskutils/grantleetheme/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429567 -SHA256 (KDE/applications/20.04.1/grantleetheme-20.04.1.tar.xz) = 5d6a173f42e79610832fa1616b705e2d6b5c0ab652ec528f06c069b058614b3d -SIZE (KDE/applications/20.04.1/grantleetheme-20.04.1.tar.xz) = 54964 +TIMESTAMP = 1591712621 +SHA256 (KDE/applications/20.04.2/grantleetheme-20.04.2.tar.xz) = 112520067c6ee714f4412318ee126a9582e44fdcb584660847fe33840e3dc2e5 +SIZE (KDE/applications/20.04.2/grantleetheme-20.04.2.tar.xz) = 55008 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 538648) +++ head/deskutils/kaddressbook/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429568 -SHA256 (KDE/applications/20.04.1/kaddressbook-20.04.1.tar.xz) = 5771d59ca8612366cf7ed336fffdb021bbbf0cac634a6165d722aa836483edee -SIZE (KDE/applications/20.04.1/kaddressbook-20.04.1.tar.xz) = 2427612 +TIMESTAMP = 1591712622 +SHA256 (KDE/applications/20.04.2/kaddressbook-20.04.2.tar.xz) = 74b79b5682e1475bd75240468d4fe61cd8bbb8cf8bffe64cb72587623ad0eb00 +SIZE (KDE/applications/20.04.2/kaddressbook-20.04.2.tar.xz) = 2427676 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 538648) +++ head/deskutils/kalarm/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429569 -SHA256 (KDE/applications/20.04.1/kalarm-20.04.1.tar.xz) = d1a910bd1a7b19e15167c83ec51be7946cc84cb473c3ae536684d6f6e2eacb32 -SIZE (KDE/applications/20.04.1/kalarm-20.04.1.tar.xz) = 1840592 +TIMESTAMP = 1591712623 +SHA256 (KDE/applications/20.04.2/kalarm-20.04.2.tar.xz) = dbe88105a14920f1d4113e4c0842ae7ead01db1d5362e3a41305791ccc2a9f33 +SIZE (KDE/applications/20.04.2/kalarm-20.04.2.tar.xz) = 1840924 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 538648) +++ head/deskutils/kcharselect/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429570 -SHA256 (KDE/applications/20.04.1/kcharselect-20.04.1.tar.xz) = 634dcb6d6b0a723525319f1c056f2808d008d9ee99faf559bcbecfa20df042d0 -SIZE (KDE/applications/20.04.1/kcharselect-20.04.1.tar.xz) = 335584 +TIMESTAMP = 1591712624 +SHA256 (KDE/applications/20.04.2/kcharselect-20.04.2.tar.xz) = 50fff8cfa3dea3f51312b1c3d629d633a66f6cb6c1ca62bdd26f1f5a72f00de2 +SIZE (KDE/applications/20.04.2/kcharselect-20.04.2.tar.xz) = 335648 Index: head/deskutils/kdeconnect-kde/distinfo =================================================================== --- head/deskutils/kdeconnect-kde/distinfo (revision 538648) +++ head/deskutils/kdeconnect-kde/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429571 -SHA256 (KDE/applications/20.04.1/kdeconnect-kde-20.04.1.tar.xz) = 788d5d514f329decd956ae79c93260d309a042a275a6e61a2a883bb79abcd0ce -SIZE (KDE/applications/20.04.1/kdeconnect-kde-20.04.1.tar.xz) = 428764 +TIMESTAMP = 1591722743 +SHA256 (KDE/applications/20.04.2/kdeconnect-kde-20.04.2.tar.xz) = 37a606f243dcce42cdb84f5d27123845b6377e1f7043a618ad2f31b69653037b +SIZE (KDE/applications/20.04.2/kdeconnect-kde-20.04.2.tar.xz) = 429760 Index: head/deskutils/kdeconnect-kde/pkg-plist =================================================================== --- head/deskutils/kdeconnect-kde/pkg-plist (revision 538648) +++ head/deskutils/kdeconnect-kde/pkg-plist (revision 538649) @@ -1,603 +1,611 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.1 lib/libkdeconnectcore.so.1.4.0 lib/libkdeconnectinterfaces.so.1 lib/libkdeconnectinterfaces.so.1.4.0 lib/libkdeconnectpluginkcm.so.1 lib/libkdeconnectpluginkcm.so.1.4.0 lib/libkdeconnectsmshelper.so.1 lib/libkdeconnectsmshelper.so.1.4.0 %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.settings.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect.smshandler.desktop share/applications/org.kde.kdeconnect.telhandler.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/icons/hicolor/128x128/apps/kdeconnect.png share/icons/hicolor/16x16/apps/kdeconnect.png share/icons/hicolor/22x22/apps/kdeconnect.png share/icons/hicolor/256x256/apps/kdeconnect.png share/icons/hicolor/32x32/apps/kdeconnect.png share/icons/hicolor/32x32/status/laptopconnected.png share/icons/hicolor/32x32/status/laptopdisconnected.png share/icons/hicolor/32x32/status/laptoptrusted.png share/icons/hicolor/32x32/status/smartphoneconnected.png share/icons/hicolor/32x32/status/smartphonedisconnected.png share/icons/hicolor/32x32/status/smartphonetrusted.png share/icons/hicolor/32x32/status/tabletconnected.png share/icons/hicolor/32x32/status/tabletdisconnected.png share/icons/hicolor/32x32/status/tablettrusted.png share/icons/hicolor/32x32/status/tvconnected.png share/icons/hicolor/32x32/status/tvdisconnected.png share/icons/hicolor/32x32/status/tvtrusted.png share/icons/hicolor/48x48/apps/kdeconnect.png share/icons/hicolor/64x64/apps/kdeconnect.png share/icons/hicolor/scalable/apps/kdeconnect.svgz share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/icons/hicolor/scalable/status/laptopconnected.svg share/icons/hicolor/scalable/status/laptopdisconnected.svg share/icons/hicolor/scalable/status/laptoptrusted.svg share/icons/hicolor/scalable/status/smartphoneconnected.svg share/icons/hicolor/scalable/status/smartphonedisconnected.svg share/icons/hicolor/scalable/status/smartphonetrusted.svg share/icons/hicolor/scalable/status/tabletconnected.svg share/icons/hicolor/scalable/status/tabletdisconnected.svg share/icons/hicolor/scalable/status/tablettrusted.svg share/icons/hicolor/scalable/status/tvconnected.svg share/icons/hicolor/scalable/status/tvdisconnected.svg share/icons/hicolor/scalable/status/tvtrusted.svg share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/kdeconnect_findthisdevice_config.desktop share/kservices5/kdeconnect_pausemusic_config.desktop share/kservices5/kdeconnect_runcommand_config.desktop share/kservices5/kdeconnect_sendnotifications_config.desktop share/kservices5/kdeconnect_share_config.desktop share/kservices5/plasma-kdeconnect.desktop share/kservicetypes5/kdeconnect_plugin.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo -share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo -share/locale/da/LC_MESSAGES/kdeconnect-kded.mo -share/locale/da/LC_MESSAGES/kdeconnect-kio.mo -share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo -share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo -share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo +share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/da/LC_MESSAGES/kdeconnect-kded.mo +share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo +share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo +share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo +share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo +share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo +share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.kcm.appdata.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/zsh/site-functions/_kdeconnect Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 538648) +++ head/deskutils/kdepim-addons/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429572 -SHA256 (KDE/applications/20.04.1/kdepim-addons-20.04.1.tar.xz) = de4b504094754251cb74ca028decae8f8e1e7193e4bffe9c6850857331c46f39 -SIZE (KDE/applications/20.04.1/kdepim-addons-20.04.1.tar.xz) = 2064784 +TIMESTAMP = 1591712625 +SHA256 (KDE/applications/20.04.2/kdepim-addons-20.04.2.tar.xz) = 6daa6b0b00dfa36047d26595c882a5b95f1e848e6545b7999a5b7344771dd3fb +SIZE (KDE/applications/20.04.2/kdepim-addons-20.04.2.tar.xz) = 2065332 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 538648) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429573 -SHA256 (KDE/applications/20.04.1/kdepim-apps-libs-20.04.1.tar.xz) = 916d17c08de218f786f3515c25fbfca1d2d686e8efad686082569da4a5cb3855 -SIZE (KDE/applications/20.04.1/kdepim-apps-libs-20.04.1.tar.xz) = 84752 +TIMESTAMP = 1591712626 +SHA256 (KDE/applications/20.04.2/kdepim-apps-libs-20.04.2.tar.xz) = 76a39e6cf75125664c413e5b749fb7b0bae5905b774f0e5a38835bd961e0caa8 +SIZE (KDE/applications/20.04.2/kdepim-apps-libs-20.04.2.tar.xz) = 84836 Index: head/deskutils/kdepim-apps-libs/pkg-plist =================================================================== --- head/deskutils/kdepim-apps-libs/pkg-plist (revision 538648) +++ head/deskutils/kdepim-apps-libs/pkg-plist (revision 538649) @@ -1,190 +1,191 @@ share/qlogging-categories5/kdepim-apps-lib.categories share/qlogging-categories5/kdepim-apps-lib.renamecategories include/KF5/FollowupReminder/FollowUpReminderInfo include/KF5/FollowupReminder/FollowUpReminderUtil include/KF5/KAddressBookImportExport/KAddressBookContactSelectionDialog include/KF5/KAddressBookImportExport/KAddressBookContactSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookExportSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookImportExportContactList include/KF5/KAddressBookImportExport/KAddressBookImportExportPlugin include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginInterface include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginManager include/KF5/KaddressbookGrantlee/GrantleeContactFormatter include/KF5/KaddressbookGrantlee/GrantleeContactGroupFormatter include/KF5/KaddressbookGrantlee/GrantleeContactViewer include/KF5/KaddressbookGrantlee/GrantleePrint include/KF5/KdepimDBusInterfaces/ReminderClient include/KF5/KdepimDBusInterfaces/UriHandler include/KF5/SendLater/SendLaterDialog include/KF5/SendLater/SendLaterInfo include/KF5/SendLater/SendLaterUtil include/KF5/followupreminder/followupreminder_export.h include/KF5/followupreminder/followupreminderagentsettings.h include/KF5/followupreminder/followupreminderinfo.h include/KF5/followupreminder/followupreminderutil.h include/KF5/followupreminder_version.h include/KF5/kaddressbookgrantlee/grantleecontactformatter.h include/KF5/kaddressbookgrantlee/grantleecontactgroupformatter.h include/KF5/kaddressbookgrantlee/grantleecontactviewer.h include/KF5/kaddressbookgrantlee/grantleeprint.h include/KF5/kaddressbookgrantlee/kaddressbook_grantlee_export.h include/KF5/kaddressbookgrantlee_version.h include/KF5/kaddressbookimportexport/kaddressbook_importexport_export.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectiondialog.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookexportselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactfields.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactlist.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugin.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugininterface.h include/KF5/kaddressbookimportexport/kaddressbookimportexportpluginmanager.h include/KF5/kaddressbookimportexport_version.h include/KF5/kdepimdbusinterfaces/kdepimdbusinterfaces_export.h include/KF5/kdepimdbusinterfaces/reminderclient.h include/KF5/kdepimdbusinterfaces/urihandler.h include/KF5/kdepimdbusinterfaces_version.h include/KF5/sendlater/sendlater_export.h include/KF5/sendlater/sendlateragentsettings.h include/KF5/sendlater/sendlaterdialog.h include/KF5/sendlater/sendlaterinfo.h include/KF5/sendlater/sendlaterutil.h include/KF5/sendlater_version.h lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfig.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfigVersion.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfig.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfigVersion.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfig.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfigVersion.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfig.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfigVersion.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets.cmake lib/cmake/KF5SendLater/KF5SendLaterConfig.cmake lib/cmake/KF5SendLater/KF5SendLaterConfigVersion.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets.cmake lib/libKF5FollowupReminder.so lib/libKF5FollowupReminder.so.5 lib/libKF5FollowupReminder.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookGrantlee.so lib/libKF5KaddressbookGrantlee.so.5 lib/libKF5KaddressbookGrantlee.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookImportExport.so lib/libKF5KaddressbookImportExport.so.5 lib/libKF5KaddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KdepimDBusInterfaces.so lib/libKF5KdepimDBusInterfaces.so.5 lib/libKF5KdepimDBusInterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5SendLater.so lib/libKF5SendLater.so.5 lib/libKF5SendLater.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_FollowupReminder.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookGrantlee.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookImportExport.pri %%QT_MKSPECDIR%%/modules/qt_KdepimDBusInterfaces.pri %%QT_MKSPECDIR%%/modules/qt_SendLater.pri share/locale/ar/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ar/LC_MESSAGES/libsendlater.mo share/locale/bs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/bs/LC_MESSAGES/libsendlater.mo share/locale/ca/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca/LC_MESSAGES/libsendlater.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca@valencia/LC_MESSAGES/libsendlater.mo share/locale/cs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/cs/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/cs/LC_MESSAGES/libsendlater.mo share/locale/da/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/da/LC_MESSAGES/libsendlater.mo share/locale/de/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/de/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/de/LC_MESSAGES/libsendlater.mo share/locale/el/LC_MESSAGES/libsendlater.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/en_GB/LC_MESSAGES/libsendlater.mo share/locale/es/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/es/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/es/LC_MESSAGES/libsendlater.mo share/locale/et/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/et/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/et/LC_MESSAGES/libsendlater.mo share/locale/fi/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fi/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fi/LC_MESSAGES/libsendlater.mo share/locale/fr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fr/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fr/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/gl/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/hu/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/hu/LC_MESSAGES/libsendlater.mo share/locale/ia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ia/LC_MESSAGES/libsendlater.mo share/locale/it/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/it/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/it/LC_MESSAGES/libsendlater.mo share/locale/ja/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ja/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ja/LC_MESSAGES/libsendlater.mo share/locale/kk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/kk/LC_MESSAGES/libsendlater.mo share/locale/ko/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ko/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ko/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/lt/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nb/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nb/LC_MESSAGES/libsendlater.mo share/locale/nds/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nds/LC_MESSAGES/libsendlater.mo share/locale/nl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nl/LC_MESSAGES/libsendlater.mo +share/locale/nn/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pl/LC_MESSAGES/libsendlater.mo share/locale/pt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt/LC_MESSAGES/libsendlater.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt_BR/LC_MESSAGES/libsendlater.mo share/locale/ro/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ro/LC_MESSAGES/libsendlater.mo share/locale/ru/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ru/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ru/LC_MESSAGES/libsendlater.mo share/locale/sk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sk/LC_MESSAGES/libsendlater.mo share/locale/sl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sl/LC_MESSAGES/libsendlater.mo share/locale/sr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sr/LC_MESSAGES/libsendlater.mo share/locale/sv/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sv/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sv/LC_MESSAGES/libsendlater.mo share/locale/tr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/tr/LC_MESSAGES/libsendlater.mo share/locale/ug/LC_MESSAGES/libsendlater.mo share/locale/uk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/uk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/uk/LC_MESSAGES/libsendlater.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_CN/LC_MESSAGES/libsendlater.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_TW/LC_MESSAGES/libsendlater.mo Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 538648) +++ head/deskutils/kdepim-runtime/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429573 -SHA256 (KDE/applications/20.04.1/kdepim-runtime-20.04.1.tar.xz) = efa538972e1d97aee7a8cb7357256818b432ba4c7c3a264eb493b2b739e9c4c6 -SIZE (KDE/applications/20.04.1/kdepim-runtime-20.04.1.tar.xz) = 1740016 +TIMESTAMP = 1591712627 +SHA256 (KDE/applications/20.04.2/kdepim-runtime-20.04.2.tar.xz) = cd54019d60e78ff8d3cd291fdda36fe2f03ace4591f5bbbc3521e999f071f0a0 +SIZE (KDE/applications/20.04.2/kdepim-runtime-20.04.2.tar.xz) = 1740368 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 538648) +++ head/deskutils/keditbookmarks/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429574 -SHA256 (KDE/applications/20.04.1/keditbookmarks-20.04.1.tar.xz) = a715a06c76d8f3e9f786b80cb1c23093d0e243631cc2476012c6ba27e55e4de1 -SIZE (KDE/applications/20.04.1/keditbookmarks-20.04.1.tar.xz) = 187732 +TIMESTAMP = 1591712627 +SHA256 (KDE/applications/20.04.2/keditbookmarks-20.04.2.tar.xz) = e38614d7b72fb25f40efd83b548e9fbdd75ff06deaeb77390c4a7673c285e975 +SIZE (KDE/applications/20.04.2/keditbookmarks-20.04.2.tar.xz) = 187064 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 538648) +++ head/deskutils/kfind/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429575 -SHA256 (KDE/applications/20.04.1/kfind-20.04.1.tar.xz) = 5ee825ec4e9327cd2c4bbbd7a5665de17203e612cf04b19359459e80b2896644 -SIZE (KDE/applications/20.04.1/kfind-20.04.1.tar.xz) = 272016 +TIMESTAMP = 1591712628 +SHA256 (KDE/applications/20.04.2/kfind-20.04.2.tar.xz) = 917ebc1f845fba942237ae924f171dd8427f76fe7d343fbcde25c855b90c7a8e +SIZE (KDE/applications/20.04.2/kfind-20.04.2.tar.xz) = 271592 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 538648) +++ head/deskutils/kmail/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429576 -SHA256 (KDE/applications/20.04.1/kmail-20.04.1.tar.xz) = 77fcbd6dad9d6dcf302db8591bdaefe8379314939a90c9ca3555ab5be2ef0e1b -SIZE (KDE/applications/20.04.1/kmail-20.04.1.tar.xz) = 4721272 +TIMESTAMP = 1591712629 +SHA256 (KDE/applications/20.04.2/kmail-20.04.2.tar.xz) = 10fca989f68c6c477cf4c47d0b3301f6db62a4187e4d20487504a547ba166b25 +SIZE (KDE/applications/20.04.2/kmail-20.04.2.tar.xz) = 4721788 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 538648) +++ head/deskutils/kmail-account-wizard/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429577 -SHA256 (KDE/applications/20.04.1/kmail-account-wizard-20.04.1.tar.xz) = 4dadc238ba43bb5f0d1ebeef3a8696b508851d4e331b18b691831a0227259241 -SIZE (KDE/applications/20.04.1/kmail-account-wizard-20.04.1.tar.xz) = 158288 +TIMESTAMP = 1591712630 +SHA256 (KDE/applications/20.04.2/kmail-account-wizard-20.04.2.tar.xz) = bb01e6fa3d46a99332ec9f92e9595f0928e262b2cf8bd9cf38e7b968ccd8618c +SIZE (KDE/applications/20.04.2/kmail-account-wizard-20.04.2.tar.xz) = 158268 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 538648) +++ head/deskutils/knotes/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429578 -SHA256 (KDE/applications/20.04.1/knotes-20.04.1.tar.xz) = 5dc6764ab4d3cfd18a1a1a8caa2f01499ad32e5dd7f03a8b0bcfdcb2dcb1048e -SIZE (KDE/applications/20.04.1/knotes-20.04.1.tar.xz) = 320772 +TIMESTAMP = 1591712631 +SHA256 (KDE/applications/20.04.2/knotes-20.04.2.tar.xz) = 37e3fb20304f93e3cb77ae2c12c7fe1d1f790e06cb5842979019a75dd917a5a7 +SIZE (KDE/applications/20.04.2/knotes-20.04.2.tar.xz) = 320968 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 538648) +++ head/deskutils/kontact/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429578 -SHA256 (KDE/applications/20.04.1/kontact-20.04.1.tar.xz) = 4911776068a8ec41b19769957018782a061cc3d090e7631a00de2ed4723f224b -SIZE (KDE/applications/20.04.1/kontact-20.04.1.tar.xz) = 793320 +TIMESTAMP = 1591712631 +SHA256 (KDE/applications/20.04.2/kontact-20.04.2.tar.xz) = caa65482e60008e633fa013f24984879822e5d4c7cac472b699a369f6e3672b3 +SIZE (KDE/applications/20.04.2/kontact-20.04.2.tar.xz) = 793368 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 538648) +++ head/deskutils/korganizer/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429579 -SHA256 (KDE/applications/20.04.1/korganizer-20.04.1.tar.xz) = 5964961df1b34949e879c37286af64f4f7976250323d7d7ff297829c1b1d9f12 -SIZE (KDE/applications/20.04.1/korganizer-20.04.1.tar.xz) = 2240224 +TIMESTAMP = 1591712632 +SHA256 (KDE/applications/20.04.2/korganizer-20.04.2.tar.xz) = 81322609b3f5e257b35fb49491391f70a7895105e6eff34e7bd69ce4473a61b3 +SIZE (KDE/applications/20.04.2/korganizer-20.04.2.tar.xz) = 2240516 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 538648) +++ head/deskutils/kruler/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429580 -SHA256 (KDE/applications/20.04.1/kruler-20.04.1.tar.xz) = 8726f5580a1e0ea1f3dd16806bd99fbaad41d279a77037fdc6b07af7a910cd6c -SIZE (KDE/applications/20.04.1/kruler-20.04.1.tar.xz) = 250488 +TIMESTAMP = 1591712633 +SHA256 (KDE/applications/20.04.2/kruler-20.04.2.tar.xz) = a20eb488f9b1cd4273affa2ad4e2e502d735fe9b5aea7dbab686a745c37825cd +SIZE (KDE/applications/20.04.2/kruler-20.04.2.tar.xz) = 250528 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 538648) +++ head/deskutils/libkdepim/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429581 -SHA256 (KDE/applications/20.04.1/libkdepim-20.04.1.tar.xz) = 0a36c8b799f102cc3ca4a880297ba2a14ba371f7d7f53cea9baf2b1a4c995a2d -SIZE (KDE/applications/20.04.1/libkdepim-20.04.1.tar.xz) = 333836 +TIMESTAMP = 1591712634 +SHA256 (KDE/applications/20.04.2/libkdepim-20.04.2.tar.xz) = 3356ec5d380350e49eb88511559237a225113f9f7342c3f213460bbcc74cb75b +SIZE (KDE/applications/20.04.2/libkdepim-20.04.2.tar.xz) = 333848 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 538648) +++ head/deskutils/mbox-importer/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429582 -SHA256 (KDE/applications/20.04.1/mbox-importer-20.04.1.tar.xz) = a6d5af5eafee5ec32bad4a0677e6eae1c03006e93801d71a6011cc3b0225b6cc -SIZE (KDE/applications/20.04.1/mbox-importer-20.04.1.tar.xz) = 33516 +TIMESTAMP = 1591712635 +SHA256 (KDE/applications/20.04.2/mbox-importer-20.04.2.tar.xz) = 50e0b468bdcb7af5900fb9ba5ca343cd21ff734043b90505329704b396d994af +SIZE (KDE/applications/20.04.2/mbox-importer-20.04.2.tar.xz) = 33520 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 538648) +++ head/deskutils/pim-data-exporter/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429583 -SHA256 (KDE/applications/20.04.1/pim-data-exporter-20.04.1.tar.xz) = e05ffffb1f790f9e74559f40fa6b48bd75c3973f519e8825db0e330d425392d0 -SIZE (KDE/applications/20.04.1/pim-data-exporter-20.04.1.tar.xz) = 207792 +TIMESTAMP = 1591712635 +SHA256 (KDE/applications/20.04.2/pim-data-exporter-20.04.2.tar.xz) = 0235b9a2070d83efac2c9f27ac68d3a6841ffe3d5cbeaec52468d14393bead00 +SIZE (KDE/applications/20.04.2/pim-data-exporter-20.04.2.tar.xz) = 278028 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 538648) +++ head/deskutils/pim-sieve-editor/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429583 -SHA256 (KDE/applications/20.04.1/pim-sieve-editor-20.04.1.tar.xz) = c9a382a7a2f33939da5a47149499d859eecaa67936ac1321ad4c0ca1ae28a13e -SIZE (KDE/applications/20.04.1/pim-sieve-editor-20.04.1.tar.xz) = 452876 +TIMESTAMP = 1591712636 +SHA256 (KDE/applications/20.04.2/pim-sieve-editor-20.04.2.tar.xz) = 593c8c433bb0b2341c796c022594684baf77931578f42cbd532b624bf1a940d7 +SIZE (KDE/applications/20.04.2/pim-sieve-editor-20.04.2.tar.xz) = 452988 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 538648) +++ head/devel/cervisia/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429584 -SHA256 (KDE/applications/20.04.1/cervisia-20.04.1.tar.xz) = c74a98d1baa447f517894951ac956f5a3e44ac4bea9d745c7d493436ad5507e9 -SIZE (KDE/applications/20.04.1/cervisia-20.04.1.tar.xz) = 1896684 +TIMESTAMP = 1591712637 +SHA256 (KDE/applications/20.04.2/cervisia-20.04.2.tar.xz) = 508e585d11f5fdebd548997e7871566a76040c5dff98f3dfab5d9adab5244ba5 +SIZE (KDE/applications/20.04.2/cervisia-20.04.2.tar.xz) = 1896544 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 538648) +++ head/devel/dolphin-plugins/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429585 -SHA256 (KDE/applications/20.04.1/dolphin-plugins-20.04.1.tar.xz) = f97c2b77d1b4fd74a2e4a242b5b9a66f7d8f05a185d012ee5646d5f38c26e489 -SIZE (KDE/applications/20.04.1/dolphin-plugins-20.04.1.tar.xz) = 210668 +TIMESTAMP = 1591712638 +SHA256 (KDE/applications/20.04.2/dolphin-plugins-20.04.2.tar.xz) = c8bac93e799b5bcaac5f9afe258d69494a01c4f6956aabebe47d08d7a0ee5403 +SIZE (KDE/applications/20.04.2/dolphin-plugins-20.04.2.tar.xz) = 211048 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 538648) +++ head/devel/kapptemplate/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429586 -SHA256 (KDE/applications/20.04.1/kapptemplate-20.04.1.tar.xz) = f1a179a21197eaabac798e79815c43df4df6bd0161aab674e0a9c6725acab18a -SIZE (KDE/applications/20.04.1/kapptemplate-20.04.1.tar.xz) = 325440 +TIMESTAMP = 1591712639 +SHA256 (KDE/applications/20.04.2/kapptemplate-20.04.2.tar.xz) = 91df1bb906169ad2f5bdd09d3301e8ae0abdaf63009951677a8607c7d7b060d1 +SIZE (KDE/applications/20.04.2/kapptemplate-20.04.2.tar.xz) = 325468 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 538648) +++ head/devel/kcachegrind/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429587 -SHA256 (KDE/applications/20.04.1/kcachegrind-20.04.1.tar.xz) = 4cdbd03e0f27811c16b4c3a31ea25c13468d26641067f76aa0fd06e98c3ea13b -SIZE (KDE/applications/20.04.1/kcachegrind-20.04.1.tar.xz) = 810100 +TIMESTAMP = 1591712639 +SHA256 (KDE/applications/20.04.2/kcachegrind-20.04.2.tar.xz) = b2b5fac52c01a0d11cfe0875f2f87dfe60f854c196d58e3a9ff14a557ebfd7b2 +SIZE (KDE/applications/20.04.2/kcachegrind-20.04.2.tar.xz) = 810032 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 538648) +++ head/devel/kde-dev-scripts/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429587 -SHA256 (KDE/applications/20.04.1/kde-dev-scripts-20.04.1.tar.xz) = 82fe7f3c0713cd9d5613478fb9b9c2208ce9f0add6cedc713001f2022dab18c8 -SIZE (KDE/applications/20.04.1/kde-dev-scripts-20.04.1.tar.xz) = 378476 +TIMESTAMP = 1591712640 +SHA256 (KDE/applications/20.04.2/kde-dev-scripts-20.04.2.tar.xz) = 10925ff0d302f6c8fa8b419d521519324e00eb2b8c8e4b3616324ee3dee8a032 +SIZE (KDE/applications/20.04.2/kde-dev-scripts-20.04.2.tar.xz) = 378448 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 538648) +++ head/devel/kde-dev-utils/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429588 -SHA256 (KDE/applications/20.04.1/kde-dev-utils-20.04.1.tar.xz) = 01b2d23fd94358b9d771b81680da310830da09e190ded465d20c5ea68cea08a0 -SIZE (KDE/applications/20.04.1/kde-dev-utils-20.04.1.tar.xz) = 64452 +TIMESTAMP = 1591712641 +SHA256 (KDE/applications/20.04.2/kde-dev-utils-20.04.2.tar.xz) = 6ac75b7bb695b7ba5bba24ebb37e97c8e2374daca12cdcbdd5d605d55bd70933 +SIZE (KDE/applications/20.04.2/kde-dev-utils-20.04.2.tar.xz) = 64540 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 538648) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429590 -SHA256 (KDE/applications/20.04.1/kdesdk-thumbnailers-20.04.1.tar.xz) = 2efad05749d2bb8148917cfc57880299d4b889bc25781e4c6a23413d74a4d029 -SIZE (KDE/applications/20.04.1/kdesdk-thumbnailers-20.04.1.tar.xz) = 17492 +TIMESTAMP = 1591712642 +SHA256 (KDE/applications/20.04.2/kdesdk-thumbnailers-20.04.2.tar.xz) = 1c633f05201c3414f9bdc201a13480f3c258d36ef2aa5b5885a5aa42ee393bd9 +SIZE (KDE/applications/20.04.2/kdesdk-thumbnailers-20.04.2.tar.xz) = 17464 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 538648) +++ head/devel/kio-extras/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429590 -SHA256 (KDE/applications/20.04.1/kio-extras-20.04.1.tar.xz) = 4a81b3f8f81fa7b6d0677d6706bbb9c995db27643ce40fca6501c2c56c2d8f33 -SIZE (KDE/applications/20.04.1/kio-extras-20.04.1.tar.xz) = 617460 +TIMESTAMP = 1591712643 +SHA256 (KDE/applications/20.04.2/kio-extras-20.04.2.tar.xz) = fd81859ac88a53dddd4e421bd4b7d1b9c9073f18d381dc9a3370fc703bd3e629 +SIZE (KDE/applications/20.04.2/kio-extras-20.04.2.tar.xz) = 618236 Index: head/devel/kio-extras/pkg-plist =================================================================== --- head/devel/kio-extras/pkg-plist (revision 538648) +++ head/devel/kio-extras/pkg-plist (revision 538649) @@ -1,816 +1,817 @@ share/qlogging-categories5/kio-extras.categories include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION%% %%TAGLIB%%%%QT_PLUGINDIR%%/audiothumbnail.so %%QT_PLUGINDIR%%/comicbookthumbnail.so %%QT_PLUGINDIR%%/cursorthumbnail.so %%QT_PLUGINDIR%%/djvuthumbnail.so %%QT_PLUGINDIR%%/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/exrthumbnail.so %%QT_PLUGINDIR%%/imagethumbnail.so %%QT_PLUGINDIR%%/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/networkwatcher.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kio/about.so %%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/network.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%QT_PLUGINDIR%%/kf5/kio/settings.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%QT_PLUGINDIR%%/kfileaudiopreview.so %%QT_PLUGINDIR%%/kritathumbnail.so %%QT_PLUGINDIR%%/opendocumentthumbnail.so %%QT_PLUGINDIR%%/svgthumbnail.so %%QT_PLUGINDIR%%/textthumbnail.so %%QT_PLUGINDIR%%/windowsexethumbnail.so %%QT_PLUGINDIR%%/windowsimagethumbnail.so share/config.kcfg/jpegcreatorsettings5.kcfg share/dbus-1/interfaces/kf5_org.kde.network.kioslavenotifier.xml %%MTP%%share/dbus-1/services/org.kde.kmtp.daemon.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf share/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/about.protocol share/kservices5/activities.protocol share/kservices5/ar.protocol %%TAGLIB%%share/kservices5/audiothumbnail.desktop share/kservices5/bookmarks.protocol share/kservices5/bzip.protocol share/kservices5/bzip2.protocol share/kservices5/cursorthumbnail.desktop share/kservices5/comicbookthumbnail.desktop share/kservices5/directorythumbnail.desktop share/kservices5/djvuthumbnail.desktop share/kservices5/ebookthumbnail.desktop %%EXR%%share/kservices5/exrthumbnail.desktop share/kservices5/filenamesearch.protocol share/kservices5/fish.protocol share/kservices5/gzip.protocol share/kservices5/imagethumbnail.desktop share/kservices5/info.protocol share/kservices5/jpegthumbnail.desktop share/kservices5/kraorathumbnail.desktop share/kservices5/lzma.protocol share/kservices5/man.protocol %%MTP%%share/kservices5/mtp.protocol share/kservices5/network.protocol share/kservices5/opendocumentthumbnail.desktop share/kservices5/recentdocuments.protocol share/kservices5/settings.protocol share/kservices5/sevenz.protocol %%SSH%%share/kservices5/sftp.protocol share/kservices5/svgthumbnail.desktop share/kservices5/tar.protocol share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.protocol share/kservices5/zip.protocol share/kservicetypes5/thumbcreator.desktop share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/ast/LC_MESSAGES/kio5_fish.mo share/locale/ast/LC_MESSAGES/kio5_mtp.mo share/locale/ast/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_network.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_network.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_network.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_network.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_network.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_network.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_network.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_network.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_mtp.mo share/locale/eu/LC_MESSAGES/kio5_network.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_network.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_network.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo +share/locale/ia/LC_MESSAGES/kio5_network.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_network.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_network.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kk/LC_MESSAGES/kio5_activities.mo share/locale/kk/LC_MESSAGES/kio5_archive.mo share/locale/kk/LC_MESSAGES/kio5_bookmarks.mo share/locale/kk/LC_MESSAGES/kio5_fish.mo share/locale/kk/LC_MESSAGES/kio5_info.mo share/locale/kk/LC_MESSAGES/kio5_man.mo share/locale/kk/LC_MESSAGES/kio5_nfs.mo share/locale/kk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/kk/LC_MESSAGES/kio5_sftp.mo share/locale/kk/LC_MESSAGES/kio5_smb.mo share/locale/kk/LC_MESSAGES/kio5_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview5.mo share/locale/km/LC_MESSAGES/kio5_activities.mo share/locale/km/LC_MESSAGES/kio5_archive.mo share/locale/km/LC_MESSAGES/kio5_bookmarks.mo share/locale/km/LC_MESSAGES/kio5_fish.mo share/locale/km/LC_MESSAGES/kio5_info.mo share/locale/km/LC_MESSAGES/kio5_man.mo share/locale/km/LC_MESSAGES/kio5_nfs.mo share/locale/km/LC_MESSAGES/kio5_recentdocuments.mo share/locale/km/LC_MESSAGES/kio5_sftp.mo share/locale/km/LC_MESSAGES/kio5_smb.mo share/locale/km/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_network.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_network.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ml/LC_MESSAGES/kio5_archive.mo share/locale/ml/LC_MESSAGES/kio5_bookmarks.mo share/locale/ml/LC_MESSAGES/kio5_fish.mo share/locale/ml/LC_MESSAGES/kio5_info.mo share/locale/ml/LC_MESSAGES/kio5_man.mo share/locale/ml/LC_MESSAGES/kio5_nfs.mo share/locale/ml/LC_MESSAGES/kio5_sftp.mo share/locale/ml/LC_MESSAGES/kio5_smb.mo share/locale/ml/LC_MESSAGES/kio5_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mr/LC_MESSAGES/kio5_activities.mo share/locale/mr/LC_MESSAGES/kio5_archive.mo share/locale/mr/LC_MESSAGES/kio5_bookmarks.mo share/locale/mr/LC_MESSAGES/kio5_fish.mo share/locale/mr/LC_MESSAGES/kio5_info.mo share/locale/mr/LC_MESSAGES/kio5_man.mo share/locale/mr/LC_MESSAGES/kio5_nfs.mo share/locale/mr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/mr/LC_MESSAGES/kio5_sftp.mo share/locale/mr/LC_MESSAGES/kio5_smb.mo share/locale/mr/LC_MESSAGES/kio5_thumbnail.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nb/LC_MESSAGES/kio5_activities.mo share/locale/nb/LC_MESSAGES/kio5_archive.mo share/locale/nb/LC_MESSAGES/kio5_bookmarks.mo share/locale/nb/LC_MESSAGES/kio5_fish.mo share/locale/nb/LC_MESSAGES/kio5_info.mo share/locale/nb/LC_MESSAGES/kio5_man.mo share/locale/nb/LC_MESSAGES/kio5_nfs.mo share/locale/nb/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nb/LC_MESSAGES/kio5_sftp.mo share/locale/nb/LC_MESSAGES/kio5_smb.mo share/locale/nb/LC_MESSAGES/kio5_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nds/LC_MESSAGES/kio5_activities.mo share/locale/nds/LC_MESSAGES/kio5_archive.mo share/locale/nds/LC_MESSAGES/kio5_bookmarks.mo share/locale/nds/LC_MESSAGES/kio5_fish.mo share/locale/nds/LC_MESSAGES/kio5_info.mo share/locale/nds/LC_MESSAGES/kio5_man.mo share/locale/nds/LC_MESSAGES/kio5_nfs.mo share/locale/nds/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nds/LC_MESSAGES/kio5_sftp.mo share/locale/nds/LC_MESSAGES/kio5_smb.mo share/locale/nds/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_network.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_network.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_network.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_network.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_network.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_network.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_network.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_network.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_network.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_network.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo share/mime/packages/kf5_network.xml %%MTP%%share/remoteview/mtp-network.desktop share/remoteview/network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 538648) +++ head/devel/lokalize/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429591 -SHA256 (KDE/applications/20.04.1/lokalize-20.04.1.tar.xz) = e3006440f9499aacc230e1938e3470b6af01814b2ab29912412205b98851f586 -SIZE (KDE/applications/20.04.1/lokalize-20.04.1.tar.xz) = 1718224 +TIMESTAMP = 1591712643 +SHA256 (KDE/applications/20.04.2/lokalize-20.04.2.tar.xz) = 5be017fd63f96053f49d91ca01c6bb3b760c959fc8df47a20cb1705a9b63db5c +SIZE (KDE/applications/20.04.2/lokalize-20.04.2.tar.xz) = 1719008 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 538648) +++ head/devel/poxml/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429592 -SHA256 (KDE/applications/20.04.1/poxml-20.04.1.tar.xz) = 69a49d0f150e592a1457a36faeeec8c7ad21c70ef3420d7b91ec743d8a2ec441 -SIZE (KDE/applications/20.04.1/poxml-20.04.1.tar.xz) = 43156 +TIMESTAMP = 1591712644 +SHA256 (KDE/applications/20.04.2/poxml-20.04.2.tar.xz) = e5af330fad3f0ecadbaa2f19612101fa933b4134072175448b8b6b47b409e041 +SIZE (KDE/applications/20.04.2/poxml-20.04.2.tar.xz) = 43240 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 538648) +++ head/devel/umbrello/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429593 -SHA256 (KDE/applications/20.04.1/umbrello-20.04.1.tar.xz) = 2289b8314414b132269133b38ddcc6b861d85f725623defec8114c2ea148d2c4 -SIZE (KDE/applications/20.04.1/umbrello-20.04.1.tar.xz) = 4383840 +TIMESTAMP = 1591712645 +SHA256 (KDE/applications/20.04.2/umbrello-20.04.2.tar.xz) = dd9b0749757b3c4b5cf4c073ca9ecad3b11f90bf09200d794a90843339e13fed +SIZE (KDE/applications/20.04.2/umbrello-20.04.2.tar.xz) = 5546804 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 538648) +++ head/editors/kate/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429594 -SHA256 (KDE/applications/20.04.1/kate-20.04.1.tar.xz) = f1707e85aa858cc7f1d71ca3400ee12e96c012fb8dd3e472a7387b7dc0f02b5b -SIZE (KDE/applications/20.04.1/kate-20.04.1.tar.xz) = 5826720 +TIMESTAMP = 1591712646 +SHA256 (KDE/applications/20.04.2/kate-20.04.2.tar.xz) = 6b255987ba3d413ac34d668c75677a5b68f7cad2ce3d11ceb6e1d6977f46c478 +SIZE (KDE/applications/20.04.2/kate-20.04.2.tar.xz) = 5829952 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 538648) +++ head/games/blinken/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429595 -SHA256 (KDE/applications/20.04.1/blinken-20.04.1.tar.xz) = 51b55f749d10af0ad00bce7f42bfd7877c66a665f31e02a05ad515205e22f620 -SIZE (KDE/applications/20.04.1/blinken-20.04.1.tar.xz) = 2821432 +TIMESTAMP = 1591712647 +SHA256 (KDE/applications/20.04.2/blinken-20.04.2.tar.xz) = f25f09d1ea7711fda1884f2939a5b3a1f5a2090402548ab535ef2c3f9e45baf8 +SIZE (KDE/applications/20.04.2/blinken-20.04.2.tar.xz) = 2821680 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 538648) +++ head/games/bomber/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429596 -SHA256 (KDE/applications/20.04.1/bomber-20.04.1.tar.xz) = bbb8e041365d7866a3c3a1e1804398ddec262f78322455acdd66b9abe89918fc -SIZE (KDE/applications/20.04.1/bomber-20.04.1.tar.xz) = 820240 +TIMESTAMP = 1591712648 +SHA256 (KDE/applications/20.04.2/bomber-20.04.2.tar.xz) = 4f98eb4241a95a0e1225f716531e3be498da894ac9862c08c259002e01245cfe +SIZE (KDE/applications/20.04.2/bomber-20.04.2.tar.xz) = 820384 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 538648) +++ head/games/bovo/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429597 -SHA256 (KDE/applications/20.04.1/bovo-20.04.1.tar.xz) = 04800ade7e832de7b717c9698b1da2940a581a7fa0c0ac7fa8be84def1580c8a -SIZE (KDE/applications/20.04.1/bovo-20.04.1.tar.xz) = 200220 +TIMESTAMP = 1591712648 +SHA256 (KDE/applications/20.04.2/bovo-20.04.2.tar.xz) = 32d224ff985df6e949ad25be7a41e332afcaa228ffa45a0c5d24ca3c43d61fce +SIZE (KDE/applications/20.04.2/bovo-20.04.2.tar.xz) = 200268 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 538648) +++ head/games/granatier/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429597 -SHA256 (KDE/applications/20.04.1/granatier-20.04.1.tar.xz) = 06fbd240bc7f035dc8e105deb2ae85c800b2f1a2c4c812f7e3c872dd5a0a9a90 -SIZE (KDE/applications/20.04.1/granatier-20.04.1.tar.xz) = 1944576 +TIMESTAMP = 1591712649 +SHA256 (KDE/applications/20.04.2/granatier-20.04.2.tar.xz) = ff6b45ca290d8a9ad66faad1d4792ccaec7f671c8dc6fb83a7f663d411e6e391 +SIZE (KDE/applications/20.04.2/granatier-20.04.2.tar.xz) = 1944564 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 538648) +++ head/games/kanagram/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429598 -SHA256 (KDE/applications/20.04.1/kanagram-20.04.1.tar.xz) = 55f3901c606739078eb1da52639db7ed5646daac909123a8b136d6cea5d569bd -SIZE (KDE/applications/20.04.1/kanagram-20.04.1.tar.xz) = 8024164 +TIMESTAMP = 1591712650 +SHA256 (KDE/applications/20.04.2/kanagram-20.04.2.tar.xz) = 7804ee9977a0d4d70ab49bac3897c967ed0517a7109329409682c6a6853e11ca +SIZE (KDE/applications/20.04.2/kanagram-20.04.2.tar.xz) = 8025664 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 538648) +++ head/games/kapman/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429599 -SHA256 (KDE/applications/20.04.1/kapman-20.04.1.tar.xz) = 051a11bc02f7b555a0c3196485514d06794c6d63f3e55a9c7b0597c7ee992baa -SIZE (KDE/applications/20.04.1/kapman-20.04.1.tar.xz) = 2526156 +TIMESTAMP = 1591712651 +SHA256 (KDE/applications/20.04.2/kapman-20.04.2.tar.xz) = 653d87db55d75aa4163433cd881dd54a2c53770624ed3e27821303cfbf5405c4 +SIZE (KDE/applications/20.04.2/kapman-20.04.2.tar.xz) = 2526184 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 538648) +++ head/games/katomic/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429600 -SHA256 (KDE/applications/20.04.1/katomic-20.04.1.tar.xz) = 852be12aed5e5dadc84724ac9707b9a4b4edf73b3b5f2b6b12661007ec7d3407 -SIZE (KDE/applications/20.04.1/katomic-20.04.1.tar.xz) = 1424088 +TIMESTAMP = 1591712652 +SHA256 (KDE/applications/20.04.2/katomic-20.04.2.tar.xz) = 294104cf6be97395edf620fd3e76accc6aee8604ae43f08c3d1233d81ae048db +SIZE (KDE/applications/20.04.2/katomic-20.04.2.tar.xz) = 1424152 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 538648) +++ head/games/kblackbox/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429601 -SHA256 (KDE/applications/20.04.1/kblackbox-20.04.1.tar.xz) = 8d9949c584b213abbdae7ddcb06ca3c03274f7ff6be4c2a09bb5539fda9f3c59 -SIZE (KDE/applications/20.04.1/kblackbox-20.04.1.tar.xz) = 447044 +TIMESTAMP = 1591712652 +SHA256 (KDE/applications/20.04.2/kblackbox-20.04.2.tar.xz) = c39b9be82acf9a7c04eaef11cdec0716b39f4f7d6775fc3624d19bf54313f47f +SIZE (KDE/applications/20.04.2/kblackbox-20.04.2.tar.xz) = 446952 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 538648) +++ head/games/kblocks/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429602 -SHA256 (KDE/applications/20.04.1/kblocks-20.04.1.tar.xz) = 6580387f9364b44a31834528db0046a2bcd6398070db947bfa48690739f01951 -SIZE (KDE/applications/20.04.1/kblocks-20.04.1.tar.xz) = 1907076 +TIMESTAMP = 1591712653 +SHA256 (KDE/applications/20.04.2/kblocks-20.04.2.tar.xz) = b6bb7663c1959751999480df82fee4f1ba3d01cd641f71ecf453a125d8a9a7ac +SIZE (KDE/applications/20.04.2/kblocks-20.04.2.tar.xz) = 1906856 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 538648) +++ head/games/kbounce/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429602 -SHA256 (KDE/applications/20.04.1/kbounce-20.04.1.tar.xz) = 9a752b37694e26268129e2aa2dc550e72c75f0c8cfd9248eca097bb00fe5cfab -SIZE (KDE/applications/20.04.1/kbounce-20.04.1.tar.xz) = 3467240 +TIMESTAMP = 1591712654 +SHA256 (KDE/applications/20.04.2/kbounce-20.04.2.tar.xz) = c4ce3ebdc1e1739bf767f7db9c46d4a0a6b9f4456f7f1951a618e18ad31d5c3e +SIZE (KDE/applications/20.04.2/kbounce-20.04.2.tar.xz) = 3467060 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 538648) +++ head/games/kbreakout/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429603 -SHA256 (KDE/applications/20.04.1/kbreakout-20.04.1.tar.xz) = 9c4ca0f9123c70f738fc16565106127169336eb438a813ed0683072df1171b71 -SIZE (KDE/applications/20.04.1/kbreakout-20.04.1.tar.xz) = 2280264 +TIMESTAMP = 1591712655 +SHA256 (KDE/applications/20.04.2/kbreakout-20.04.2.tar.xz) = 97658ee464e84ce05913b498f503b6992f06cf30a7fce3813b741a9fd057ad2f +SIZE (KDE/applications/20.04.2/kbreakout-20.04.2.tar.xz) = 2281044 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 538648) +++ head/games/kdiamond/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429605 -SHA256 (KDE/applications/20.04.1/kdiamond-20.04.1.tar.xz) = 9ed4c3caaefe3be86b7123434595f458f02ef60db212664f162a4e03795763a8 -SIZE (KDE/applications/20.04.1/kdiamond-20.04.1.tar.xz) = 4693952 +TIMESTAMP = 1591712656 +SHA256 (KDE/applications/20.04.2/kdiamond-20.04.2.tar.xz) = 12383a41ea3571e6d4448fe7d06c8dae3e2c3b9a4cb44b94b9919ef0ba643fba +SIZE (KDE/applications/20.04.2/kdiamond-20.04.2.tar.xz) = 4694188 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 538648) +++ head/games/kfourinline/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429606 -SHA256 (KDE/applications/20.04.1/kfourinline-20.04.1.tar.xz) = a2303eadde7e4c7937d3afa3c2ba274b56e9d12b314c55c569107b3d10b035c7 -SIZE (KDE/applications/20.04.1/kfourinline-20.04.1.tar.xz) = 640040 +TIMESTAMP = 1591712657 +SHA256 (KDE/applications/20.04.2/kfourinline-20.04.2.tar.xz) = 40cc3893b22bd13895d0462f8c5ada457147ac363fcc11c616a4b5625ad5769a +SIZE (KDE/applications/20.04.2/kfourinline-20.04.2.tar.xz) = 639740 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 538648) +++ head/games/kgoldrunner/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429607 -SHA256 (KDE/applications/20.04.1/kgoldrunner-20.04.1.tar.xz) = 3aac3d6e6e6439c003f22f0b8841eb7b915cb9c8c48f21ab7c781dc0087021db -SIZE (KDE/applications/20.04.1/kgoldrunner-20.04.1.tar.xz) = 4429500 +TIMESTAMP = 1591712658 +SHA256 (KDE/applications/20.04.2/kgoldrunner-20.04.2.tar.xz) = cb01dc0f98c5cee5386ee320e5a933016281a0acad16ed32be7c54e51fb9d107 +SIZE (KDE/applications/20.04.2/kgoldrunner-20.04.2.tar.xz) = 4429508 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 538648) +++ head/games/khangman/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429608 -SHA256 (KDE/applications/20.04.1/khangman-20.04.1.tar.xz) = b502f916efe4e3a16bf740a92ff32c1a5f55add473d15c62a4a63f9024418e2f -SIZE (KDE/applications/20.04.1/khangman-20.04.1.tar.xz) = 7110768 +TIMESTAMP = 1591712659 +SHA256 (KDE/applications/20.04.2/khangman-20.04.2.tar.xz) = 20e45e63d4b4cfc69678265d222f32a8dd351dcd4671d8140ffb7ca4746a960b +SIZE (KDE/applications/20.04.2/khangman-20.04.2.tar.xz) = 7112988 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 538648) +++ head/games/kigo/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429608 -SHA256 (KDE/applications/20.04.1/kigo-20.04.1.tar.xz) = dcc732cc39062014dae19f526f0564258b7b75dca648c9700292a7d5ba0014b4 -SIZE (KDE/applications/20.04.1/kigo-20.04.1.tar.xz) = 5227080 +TIMESTAMP = 1591712660 +SHA256 (KDE/applications/20.04.2/kigo-20.04.2.tar.xz) = 5d52be630c0ea7da5da2fd9294729e3437f90b0bffaa261e071dacfbd5114a4d +SIZE (KDE/applications/20.04.2/kigo-20.04.2.tar.xz) = 5227300 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 538648) +++ head/games/killbots/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429609 -SHA256 (KDE/applications/20.04.1/killbots-20.04.1.tar.xz) = f2946d1c9ad5cd7234476f562f698923573edc4089f401770dd49114082f8345 -SIZE (KDE/applications/20.04.1/killbots-20.04.1.tar.xz) = 1173648 +TIMESTAMP = 1591712660 +SHA256 (KDE/applications/20.04.2/killbots-20.04.2.tar.xz) = 997d5309e7dc95bbe69618d0894018b71a7436216310f95a56bea83872c8cef1 +SIZE (KDE/applications/20.04.2/killbots-20.04.2.tar.xz) = 1173688 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 538648) +++ head/games/kiriki/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429610 -SHA256 (KDE/applications/20.04.1/kiriki-20.04.1.tar.xz) = 7362025232aeb40481ac344da71e1b108fbc74e30083d107d5cdb8e5b2ffb1a1 -SIZE (KDE/applications/20.04.1/kiriki-20.04.1.tar.xz) = 373420 +TIMESTAMP = 1591712661 +SHA256 (KDE/applications/20.04.2/kiriki-20.04.2.tar.xz) = 509de138a8747855c31fd7b2474acea095cf848e0fdaef639276ff277093080e +SIZE (KDE/applications/20.04.2/kiriki-20.04.2.tar.xz) = 373500 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 538648) +++ head/games/kjumpingcube/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429611 -SHA256 (KDE/applications/20.04.1/kjumpingcube-20.04.1.tar.xz) = c1918ec80759a019ce5821eb7445de629bcb68df3cc47db08f9121881bab506b -SIZE (KDE/applications/20.04.1/kjumpingcube-20.04.1.tar.xz) = 288992 +TIMESTAMP = 1591712662 +SHA256 (KDE/applications/20.04.2/kjumpingcube-20.04.2.tar.xz) = af638e9576754b11a9e938283547a6b7832d5de4017061bba1d429219c6760be +SIZE (KDE/applications/20.04.2/kjumpingcube-20.04.2.tar.xz) = 289000 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 538648) +++ head/games/klickety/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429612 -SHA256 (KDE/applications/20.04.1/klickety-20.04.1.tar.xz) = 5964fb7926d342f3516c13e4aaecd5166913af853b063e51196a92fff4ebd8dc -SIZE (KDE/applications/20.04.1/klickety-20.04.1.tar.xz) = 1390580 +TIMESTAMP = 1591712663 +SHA256 (KDE/applications/20.04.2/klickety-20.04.2.tar.xz) = 1d2fa3c6ffa3d8a1e5883d16f9a94bc5b04842696c0aea5197bb293fbc893c30 +SIZE (KDE/applications/20.04.2/klickety-20.04.2.tar.xz) = 1390764 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 538648) +++ head/games/klines/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429613 -SHA256 (KDE/applications/20.04.1/klines-20.04.1.tar.xz) = 0d0f124ee9a5d5b7ecd3bfd687b6f665b46dc5db6dabbefac9cde4ba0ad68f22 -SIZE (KDE/applications/20.04.1/klines-20.04.1.tar.xz) = 1782048 +TIMESTAMP = 1591712664 +SHA256 (KDE/applications/20.04.2/klines-20.04.2.tar.xz) = aa799787e0226a8ec0c5ddb0858045375fc6579f904a352ac05f2e42082b75e1 +SIZE (KDE/applications/20.04.2/klines-20.04.2.tar.xz) = 1782400 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 538648) +++ head/games/kmahjongg/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429614 -SHA256 (KDE/applications/20.04.1/kmahjongg-20.04.1.tar.xz) = fdfbf777f41b98de4f004594b2f08eb06971a4e2a236a52ded1f66b2757f0a7b -SIZE (KDE/applications/20.04.1/kmahjongg-20.04.1.tar.xz) = 3427948 +TIMESTAMP = 1591712664 +SHA256 (KDE/applications/20.04.2/kmahjongg-20.04.2.tar.xz) = 14981f2403c029365fa965cdf29f4608dd8d124871be409cb2eed340b47b0de9 +SIZE (KDE/applications/20.04.2/kmahjongg-20.04.2.tar.xz) = 3428040 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 538648) +++ head/games/kmines/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429614 -SHA256 (KDE/applications/20.04.1/kmines-20.04.1.tar.xz) = a167441b999216ad410657fb94e50f71ba27ea8a9e52a5dedcd24985e937d163 -SIZE (KDE/applications/20.04.1/kmines-20.04.1.tar.xz) = 899972 +TIMESTAMP = 1591712665 +SHA256 (KDE/applications/20.04.2/kmines-20.04.2.tar.xz) = f926ad3a49cf711b900e2a8ed281b774f64189d1361e2bb0cb0497293d8a6272 +SIZE (KDE/applications/20.04.2/kmines-20.04.2.tar.xz) = 899980 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 538648) +++ head/games/knavalbattle/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429615 -SHA256 (KDE/applications/20.04.1/knavalbattle-20.04.1.tar.xz) = 36a13173f14433109007851a952d9a9ba28f4646ce48b9450854e62ab72f88af -SIZE (KDE/applications/20.04.1/knavalbattle-20.04.1.tar.xz) = 1282476 +TIMESTAMP = 1591712666 +SHA256 (KDE/applications/20.04.2/knavalbattle-20.04.2.tar.xz) = bd50ef54234f5e38c8bc70a01c6162ce888bcbdf3e207ed98c62a35518b54174 +SIZE (KDE/applications/20.04.2/knavalbattle-20.04.2.tar.xz) = 1282552 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 538648) +++ head/games/knetwalk/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429616 -SHA256 (KDE/applications/20.04.1/knetwalk-20.04.1.tar.xz) = 3144bad390f29371361774d2e696c65891942191035cec3fb249d679227f9569 -SIZE (KDE/applications/20.04.1/knetwalk-20.04.1.tar.xz) = 1259220 +TIMESTAMP = 1591712667 +SHA256 (KDE/applications/20.04.2/knetwalk-20.04.2.tar.xz) = cd8b20f1f2aeaaf26b3d07da2dc94fb212cdb452b37f711bc62850e3e23e76d6 +SIZE (KDE/applications/20.04.2/knetwalk-20.04.2.tar.xz) = 1259128 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 538648) +++ head/games/knights/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429617 -SHA256 (KDE/applications/20.04.1/knights-20.04.1.tar.xz) = 7038b75a5ea6cdecffb2105c0f27f9e7f44287d41b13a7bb31c468612ce82a87 -SIZE (KDE/applications/20.04.1/knights-20.04.1.tar.xz) = 3522956 +TIMESTAMP = 1591712668 +SHA256 (KDE/applications/20.04.2/knights-20.04.2.tar.xz) = 1f53ddc6f032c135bc2d2e936a396b03e13aeb1f33d3651e38a5b17d746d50c5 +SIZE (KDE/applications/20.04.2/knights-20.04.2.tar.xz) = 3523004 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 538648) +++ head/games/kolf/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429618 -SHA256 (KDE/applications/20.04.1/kolf-20.04.1.tar.xz) = 48d615f63928f29f7043bdf750899fda98f7329d1f170ceb6e1b75e77b5cf37f -SIZE (KDE/applications/20.04.1/kolf-20.04.1.tar.xz) = 1020064 +TIMESTAMP = 1591712668 +SHA256 (KDE/applications/20.04.2/kolf-20.04.2.tar.xz) = 69309aff21098caaa9263e96e624a0de46b3ab748ff33e507c613e73c19ce573 +SIZE (KDE/applications/20.04.2/kolf-20.04.2.tar.xz) = 1020792 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 538648) +++ head/games/kollision/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429619 -SHA256 (KDE/applications/20.04.1/kollision-20.04.1.tar.xz) = fc6c01ec19583b910af3a7d4155abc9ec30518c88399b8e540bb1febf477aee5 -SIZE (KDE/applications/20.04.1/kollision-20.04.1.tar.xz) = 280916 +TIMESTAMP = 1591712669 +SHA256 (KDE/applications/20.04.2/kollision-20.04.2.tar.xz) = 5dc31b03e19cfb1e743f3b7ed6017c58c5df55a00fbd8cb28701e999573e1cd5 +SIZE (KDE/applications/20.04.2/kollision-20.04.2.tar.xz) = 280928 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 538648) +++ head/games/konquest/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429620 -SHA256 (KDE/applications/20.04.1/konquest-20.04.1.tar.xz) = f2f18ac95cb1ee72d20d3adbf884ca514edc6bdc960ef9c1361d565cba23cdd8 -SIZE (KDE/applications/20.04.1/konquest-20.04.1.tar.xz) = 660064 +TIMESTAMP = 1591712670 +SHA256 (KDE/applications/20.04.2/konquest-20.04.2.tar.xz) = 0142d6a57a84268e1de1d20123705858c7fb3823dd2b501676f1fa235f1922b7 +SIZE (KDE/applications/20.04.2/konquest-20.04.2.tar.xz) = 660312 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 538648) +++ head/games/kpat/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429620 -SHA256 (KDE/applications/20.04.1/kpat-20.04.1.tar.xz) = 647527a727df2d3ee41054025ebe3703f6da6c4d2a56262260d2dac0a78da22c -SIZE (KDE/applications/20.04.1/kpat-20.04.1.tar.xz) = 3577156 +TIMESTAMP = 1591712671 +SHA256 (KDE/applications/20.04.2/kpat-20.04.2.tar.xz) = bad46abf7aec96399488b513b5aadc80bb198c8d3cfbd63db5141b1b37357481 +SIZE (KDE/applications/20.04.2/kpat-20.04.2.tar.xz) = 3578676 Index: head/games/kpat/pkg-plist =================================================================== --- head/games/kpat/pkg-plist (revision 538648) +++ head/games/kpat/pkg-plist (revision 538649) @@ -1,109 +1,142 @@ bin/kpat etc/xdg/kcardtheme.knsrc share/qlogging-categories5/kpat.categories etc/xdg/kpat.knsrc lib/libkcardgame.so man/de/man6/kpat.6.gz man/es/man6/kpat.6.gz man/et/man6/kpat.6.gz man/it/man6/kpat.6.gz man/man6/kpat.6.gz man/nl/man6/kpat.6.gz man/pt/man6/kpat.6.gz man/pt_BR/man6/kpat.6.gz man/ru/man6/kpat.6.gz man/sv/man6/kpat.6.gz man/uk/man6/kpat.6.gz share/applications/org.kde.kpat.desktop share/config.kcfg/kpat.kcfg share/icons/hicolor/128x128/apps/kpat.png share/icons/hicolor/16x16/apps/kpat.png share/icons/hicolor/22x22/apps/kpat.png share/icons/hicolor/24x24/apps/kpat.png share/icons/hicolor/256x256/apps/kpat.png share/icons/hicolor/32x32/apps/kpat.png share/icons/hicolor/48x48/apps/kpat.png share/icons/hicolor/64x64/apps/kpat.png %%DATADIR%%/previews/1.png %%DATADIR%%/previews/10.png %%DATADIR%%/previews/11.png %%DATADIR%%/previews/12.png %%DATADIR%%/previews/17.png %%DATADIR%%/previews/18.png %%DATADIR%%/previews/2.png %%DATADIR%%/previews/3.png %%DATADIR%%/previews/5.png %%DATADIR%%/previews/7.png %%DATADIR%%/previews/8.png %%DATADIR%%/previews/9.png %%DATADIR%%/sounds/card-down.ogg %%DATADIR%%/sounds/card-pickup.ogg %%DATADIR%%/themes/ancientegypt.desktop %%DATADIR%%/themes/ancientegypt.png %%DATADIR%%/themes/ancientegypt.svgz %%DATADIR%%/themes/cleangreen.desktop %%DATADIR%%/themes/cleangreen.png %%DATADIR%%/themes/cleangreen.svgz %%DATADIR%%/themes/greenblaze.desktop %%DATADIR%%/themes/greenblaze.png %%DATADIR%%/themes/greenblaze.svgz %%DATADIR%%/themes/oldertheme.desktop %%DATADIR%%/themes/oldertheme.png %%DATADIR%%/themes/oldertheme.svgz share/kxmlgui5/kpat/kpatui.rc share/locale/ar/LC_MESSAGES/kpat.mo share/locale/bg/LC_MESSAGES/kpat.mo share/locale/bs/LC_MESSAGES/kpat.mo +share/locale/bs/LC_MESSAGES/kpat_mimetypes.mo share/locale/ca/LC_MESSAGES/kpat.mo +share/locale/ca/LC_MESSAGES/kpat_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/kpat.mo +share/locale/ca@valencia/LC_MESSAGES/kpat_mimetypes.mo share/locale/cs/LC_MESSAGES/kpat.mo +share/locale/cs/LC_MESSAGES/kpat_mimetypes.mo share/locale/da/LC_MESSAGES/kpat.mo +share/locale/da/LC_MESSAGES/kpat_mimetypes.mo share/locale/de/LC_MESSAGES/kpat.mo +share/locale/de/LC_MESSAGES/kpat_mimetypes.mo share/locale/el/LC_MESSAGES/kpat.mo +share/locale/el/LC_MESSAGES/kpat_mimetypes.mo share/locale/en_GB/LC_MESSAGES/kpat.mo +share/locale/en_GB/LC_MESSAGES/kpat_mimetypes.mo share/locale/eo/LC_MESSAGES/kpat.mo share/locale/es/LC_MESSAGES/kpat.mo +share/locale/es/LC_MESSAGES/kpat_mimetypes.mo share/locale/et/LC_MESSAGES/kpat.mo +share/locale/et/LC_MESSAGES/kpat_mimetypes.mo share/locale/eu/LC_MESSAGES/kpat.mo share/locale/fa/LC_MESSAGES/kpat.mo share/locale/fi/LC_MESSAGES/kpat.mo +share/locale/fi/LC_MESSAGES/kpat_mimetypes.mo share/locale/fr/LC_MESSAGES/kpat.mo +share/locale/fr/LC_MESSAGES/kpat_mimetypes.mo share/locale/ga/LC_MESSAGES/kpat.mo share/locale/gl/LC_MESSAGES/kpat.mo +share/locale/gl/LC_MESSAGES/kpat_mimetypes.mo share/locale/he/LC_MESSAGES/kpat.mo share/locale/hi/LC_MESSAGES/kpat.mo share/locale/hr/LC_MESSAGES/kpat.mo share/locale/hu/LC_MESSAGES/kpat.mo share/locale/id/LC_MESSAGES/kpat.mo +share/locale/id/LC_MESSAGES/kpat_mimetypes.mo share/locale/is/LC_MESSAGES/kpat.mo share/locale/it/LC_MESSAGES/kpat.mo +share/locale/it/LC_MESSAGES/kpat_mimetypes.mo share/locale/ja/LC_MESSAGES/kpat.mo +share/locale/ja/LC_MESSAGES/kpat_mimetypes.mo share/locale/kk/LC_MESSAGES/kpat.mo share/locale/km/LC_MESSAGES/kpat.mo share/locale/ko/LC_MESSAGES/kpat.mo +share/locale/ko/LC_MESSAGES/kpat_mimetypes.mo share/locale/lt/LC_MESSAGES/kpat.mo +share/locale/lt/LC_MESSAGES/kpat_mimetypes.mo share/locale/lv/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat.mo +share/locale/ml/LC_MESSAGES/kpat_mimetypes.mo share/locale/mr/LC_MESSAGES/kpat.mo share/locale/nb/LC_MESSAGES/kpat.mo share/locale/nds/LC_MESSAGES/kpat.mo share/locale/nl/LC_MESSAGES/kpat.mo +share/locale/nl/LC_MESSAGES/kpat_mimetypes.mo share/locale/nn/LC_MESSAGES/kpat.mo +share/locale/nn/LC_MESSAGES/kpat_mimetypes.mo share/locale/pa/LC_MESSAGES/kpat.mo share/locale/pl/LC_MESSAGES/kpat.mo +share/locale/pl/LC_MESSAGES/kpat_mimetypes.mo share/locale/pt/LC_MESSAGES/kpat.mo +share/locale/pt/LC_MESSAGES/kpat_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/kpat.mo +share/locale/pt_BR/LC_MESSAGES/kpat_mimetypes.mo share/locale/ro/LC_MESSAGES/kpat.mo share/locale/ru/LC_MESSAGES/kpat.mo +share/locale/ru/LC_MESSAGES/kpat_mimetypes.mo share/locale/sk/LC_MESSAGES/kpat.mo +share/locale/sk/LC_MESSAGES/kpat_mimetypes.mo share/locale/sl/LC_MESSAGES/kpat.mo +share/locale/sl/LC_MESSAGES/kpat_mimetypes.mo share/locale/sr/LC_MESSAGES/kpat.mo +share/locale/sr/LC_MESSAGES/kpat_mimetypes.mo share/locale/sv/LC_MESSAGES/kpat.mo +share/locale/sv/LC_MESSAGES/kpat_mimetypes.mo share/locale/tr/LC_MESSAGES/kpat.mo +share/locale/tr/LC_MESSAGES/kpat_mimetypes.mo share/locale/ug/LC_MESSAGES/kpat.mo share/locale/uk/LC_MESSAGES/kpat.mo +share/locale/uk/LC_MESSAGES/kpat_mimetypes.mo share/locale/wa/LC_MESSAGES/kpat.mo share/locale/zh_CN/LC_MESSAGES/kpat.mo +share/locale/zh_CN/LC_MESSAGES/kpat_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/kpat.mo +share/locale/zh_TW/LC_MESSAGES/kpat_mimetypes.mo share/metainfo/org.kde.kpat.appdata.xml share/mime/packages/kpatience.xml Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 538648) +++ head/games/kreversi/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429621 -SHA256 (KDE/applications/20.04.1/kreversi-20.04.1.tar.xz) = b9cf0a7729744fcd761f2eefb1e1b13693b4917928afd5236bd0fb248164c97c -SIZE (KDE/applications/20.04.1/kreversi-20.04.1.tar.xz) = 946852 +TIMESTAMP = 1591712672 +SHA256 (KDE/applications/20.04.2/kreversi-20.04.2.tar.xz) = 0b21ac95f24421e82fce7ad5e9551d1af9ec8d68cd2523a755b223e68cf6a720 +SIZE (KDE/applications/20.04.2/kreversi-20.04.2.tar.xz) = 947024 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 538648) +++ head/games/kshisen/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429622 -SHA256 (KDE/applications/20.04.1/kshisen-20.04.1.tar.xz) = 9029c459f60b13feb00de2ac2755a73b319b18cf1a53ee38e4fa0b075e5831f6 -SIZE (KDE/applications/20.04.1/kshisen-20.04.1.tar.xz) = 821760 +TIMESTAMP = 1591712673 +SHA256 (KDE/applications/20.04.2/kshisen-20.04.2.tar.xz) = ec21e1ceb57fb3f8d69fbf2350313f8d9e80b66e2537dcfce2ed39a23dcca4d2 +SIZE (KDE/applications/20.04.2/kshisen-20.04.2.tar.xz) = 821976 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 538648) +++ head/games/ksirk/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429623 -SHA256 (KDE/applications/20.04.1/ksirk-20.04.1.tar.xz) = a7b20b97ac22c54b0f6e2ebbb8e6105a2087010d62b887e875d8a22df399a5f9 -SIZE (KDE/applications/20.04.1/ksirk-20.04.1.tar.xz) = 6988764 +TIMESTAMP = 1591712673 +SHA256 (KDE/applications/20.04.2/ksirk-20.04.2.tar.xz) = 494bfff41a67d01b0792be013bc52c2c3c857aca132be36e7da820c86322bb25 +SIZE (KDE/applications/20.04.2/ksirk-20.04.2.tar.xz) = 6989044 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 538648) +++ head/games/ksnakeduel/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429624 -SHA256 (KDE/applications/20.04.1/ksnakeduel-20.04.1.tar.xz) = bff33c30e7d264f47b023c66680d09c31bda17f01859a65a2711ce8b59c34083 -SIZE (KDE/applications/20.04.1/ksnakeduel-20.04.1.tar.xz) = 605604 +TIMESTAMP = 1591712674 +SHA256 (KDE/applications/20.04.2/ksnakeduel-20.04.2.tar.xz) = 8a2d397200538845945772f9fcfd4be343a0ea4a0ff8193283aa876fa5fc094f +SIZE (KDE/applications/20.04.2/ksnakeduel-20.04.2.tar.xz) = 605764 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 538648) +++ head/games/kspaceduel/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429625 -SHA256 (KDE/applications/20.04.1/kspaceduel-20.04.1.tar.xz) = af22a7944b30cfc8e26f88a19a25eba880691f52baf7b35606e1634d4707bd3b -SIZE (KDE/applications/20.04.1/kspaceduel-20.04.1.tar.xz) = 612260 +TIMESTAMP = 1591712675 +SHA256 (KDE/applications/20.04.2/kspaceduel-20.04.2.tar.xz) = 0c6da130b4574588122ec7999a54af328178e362ccb03e81315e9b992c764b85 +SIZE (KDE/applications/20.04.2/kspaceduel-20.04.2.tar.xz) = 612404 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 538648) +++ head/games/ksquares/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429626 -SHA256 (KDE/applications/20.04.1/ksquares-20.04.1.tar.xz) = 561407854ce0ea2a0408be7088cdbcd1355d2281670b520bd52ccb61341f9b55 -SIZE (KDE/applications/20.04.1/ksquares-20.04.1.tar.xz) = 261072 +TIMESTAMP = 1591712676 +SHA256 (KDE/applications/20.04.2/ksquares-20.04.2.tar.xz) = 8a9ffd3679d851ded462dc540735461d661c3ea06923675f52bbd4d2b5e986e6 +SIZE (KDE/applications/20.04.2/ksquares-20.04.2.tar.xz) = 261128 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 538648) +++ head/games/ksudoku/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429626 -SHA256 (KDE/applications/20.04.1/ksudoku-20.04.1.tar.xz) = f4ff5d465b56b7f2c0c399ae22d8897c3530bf2254a639b26c31ed8c0351d21c -SIZE (KDE/applications/20.04.1/ksudoku-20.04.1.tar.xz) = 1655784 +TIMESTAMP = 1591712677 +SHA256 (KDE/applications/20.04.2/ksudoku-20.04.2.tar.xz) = 03c3a7d5f251aaec7ac0c9948186f9092c372d8dd504651a52e018b0e14630c8 +SIZE (KDE/applications/20.04.2/ksudoku-20.04.2.tar.xz) = 1655696 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 538648) +++ head/games/ktuberling/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429628 -SHA256 (KDE/applications/20.04.1/ktuberling-20.04.1.tar.xz) = 15026bf0aa8c4cf4d7e12da931466d195aea65d1daff2fd74971ac1524f0c55f -SIZE (KDE/applications/20.04.1/ktuberling-20.04.1.tar.xz) = 70729228 +TIMESTAMP = 1591712678 +SHA256 (KDE/applications/20.04.2/ktuberling-20.04.2.tar.xz) = 86046f6b830370695ea9759e9eaa8ed148df270b8ba9803f926a8510012bdc9d +SIZE (KDE/applications/20.04.2/ktuberling-20.04.2.tar.xz) = 70724068 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 538648) +++ head/games/kubrick/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429629 -SHA256 (KDE/applications/20.04.1/kubrick-20.04.1.tar.xz) = 197fb16a531dcf5be141962bef2a01e877f1f26c65b4de72d6e193b7287744e1 -SIZE (KDE/applications/20.04.1/kubrick-20.04.1.tar.xz) = 317996 +TIMESTAMP = 1591712679 +SHA256 (KDE/applications/20.04.2/kubrick-20.04.2.tar.xz) = 503ed1095347a7e5b96906052a32adf3a5079b66c8db409dec6d9ba073edb11f +SIZE (KDE/applications/20.04.2/kubrick-20.04.2.tar.xz) = 317852 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 538648) +++ head/games/libkdegames/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429630 -SHA256 (KDE/applications/20.04.1/libkdegames-20.04.1.tar.xz) = 233ce6110a4cda82f2469e220db5e99ec464d8afcd77c5a4522572c9e1ce59f7 -SIZE (KDE/applications/20.04.1/libkdegames-20.04.1.tar.xz) = 6378952 +TIMESTAMP = 1591712680 +SHA256 (KDE/applications/20.04.2/libkdegames-20.04.2.tar.xz) = 5608e83971dc6989769c0f76e53b1e87a6be4ed97fbf4d55e5bf3daac546c662 +SIZE (KDE/applications/20.04.2/libkdegames-20.04.2.tar.xz) = 6386556 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 538648) +++ head/games/libkmahjongg/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429630 -SHA256 (KDE/applications/20.04.1/libkmahjongg-20.04.1.tar.xz) = 7c2d3ae0c4154ad9215392cb1478c5dbd010acfa3db969fd74c038d1d04cbf56 -SIZE (KDE/applications/20.04.1/libkmahjongg-20.04.1.tar.xz) = 1684512 +TIMESTAMP = 1591712680 +SHA256 (KDE/applications/20.04.2/libkmahjongg-20.04.2.tar.xz) = 9466733c3e0ff8dfcd4eee8bc0467b978ab47e39ded1fe19f7ab9ac263909550 +SIZE (KDE/applications/20.04.2/libkmahjongg-20.04.2.tar.xz) = 1684800 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 538648) +++ head/games/lskat/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429631 -SHA256 (KDE/applications/20.04.1/lskat-20.04.1.tar.xz) = 214faf9c5a842a5693e1e8184e326d70ab061935d2b2c1ccd405e6bf5d2270a6 -SIZE (KDE/applications/20.04.1/lskat-20.04.1.tar.xz) = 1219992 +TIMESTAMP = 1591712681 +SHA256 (KDE/applications/20.04.2/lskat-20.04.2.tar.xz) = ac4796edfc43968c8d3a1722307636ea3104ebcbb7589e9712f09abacbef96d1 +SIZE (KDE/applications/20.04.2/lskat-20.04.2.tar.xz) = 1219660 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 538648) +++ head/games/palapeli/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429632 -SHA256 (KDE/applications/20.04.1/palapeli-20.04.1.tar.xz) = 0983ad830b6aecd21b5569282a31c0353d89822047af2e8262740f266931d8e2 -SIZE (KDE/applications/20.04.1/palapeli-20.04.1.tar.xz) = 2071904 +TIMESTAMP = 1591712682 +SHA256 (KDE/applications/20.04.2/palapeli-20.04.2.tar.xz) = 03d708dada23feea5afb74e14b5a1395eb68c6a50f88dcf3b67186594cc4a87b +SIZE (KDE/applications/20.04.2/palapeli-20.04.2.tar.xz) = 2072004 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 538648) +++ head/games/picmi/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429633 -SHA256 (KDE/applications/20.04.1/picmi-20.04.1.tar.xz) = db4dba3934ce9d304dcdcaa1df404674e830efcf2a82386c7d7ad3433c95c407 -SIZE (KDE/applications/20.04.1/picmi-20.04.1.tar.xz) = 1360824 +TIMESTAMP = 1591712683 +SHA256 (KDE/applications/20.04.2/picmi-20.04.2.tar.xz) = c8aaf3d0c93a5bba37a044de9c8a158e6d498b8ae77eab253883051f95fdc7ed +SIZE (KDE/applications/20.04.2/picmi-20.04.2.tar.xz) = 1360832 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 538648) +++ head/graphics/gwenview/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429634 -SHA256 (KDE/applications/20.04.1/gwenview-20.04.1.tar.xz) = 80c2103f8ec8333b8ab08949dea8c5b670a4e3f73309fbaf5172f7e8371f13e1 -SIZE (KDE/applications/20.04.1/gwenview-20.04.1.tar.xz) = 5741100 +TIMESTAMP = 1591712684 +SHA256 (KDE/applications/20.04.2/gwenview-20.04.2.tar.xz) = 49c3a14bc2b5cc14d027b3500cf1386b8c57b65b9a1edef001c4222aa616587e +SIZE (KDE/applications/20.04.2/gwenview-20.04.2.tar.xz) = 5741168 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 538648) +++ head/graphics/kamera/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429635 -SHA256 (KDE/applications/20.04.1/kamera-20.04.1.tar.xz) = d0e0346535d334972b25248d54006e9c3cc3ebd8f1a517c9f11301a5ceff4bf4 -SIZE (KDE/applications/20.04.1/kamera-20.04.1.tar.xz) = 103728 +TIMESTAMP = 1591712684 +SHA256 (KDE/applications/20.04.2/kamera-20.04.2.tar.xz) = 1ed494bfa17ba98fcc417c650adcd4ce4ce9ee95b6c55adb63641e3384a42e56 +SIZE (KDE/applications/20.04.2/kamera-20.04.2.tar.xz) = 103824 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 538648) +++ head/graphics/kcolorchooser/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429635 -SHA256 (KDE/applications/20.04.1/kcolorchooser-20.04.1.tar.xz) = 7810437f7282eb9ad6491a5884a44c8ffd749940e4ffc85e3666e30b93b88cfc -SIZE (KDE/applications/20.04.1/kcolorchooser-20.04.1.tar.xz) = 21780 +TIMESTAMP = 1591712685 +SHA256 (KDE/applications/20.04.2/kcolorchooser-20.04.2.tar.xz) = 155a01e032fbb5c3bcd537ed872fcf09bc6f001b5d01c867e6ae4f10b07967de +SIZE (KDE/applications/20.04.2/kcolorchooser-20.04.2.tar.xz) = 21828 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 538648) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429637 -SHA256 (KDE/applications/20.04.1/kdegraphics-mobipocket-20.04.1.tar.xz) = 1a617212f196be24a23620a238c7918d00fa2f56280ee5a6f139797d7628e2b2 -SIZE (KDE/applications/20.04.1/kdegraphics-mobipocket-20.04.1.tar.xz) = 16456 +TIMESTAMP = 1591712686 +SHA256 (KDE/applications/20.04.2/kdegraphics-mobipocket-20.04.2.tar.xz) = 3627ff68b46cabbb45b62fb7feb18a55b4295844979fc16f1552ac0eba097b56 +SIZE (KDE/applications/20.04.2/kdegraphics-mobipocket-20.04.2.tar.xz) = 16528 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 538648) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429638 -SHA256 (KDE/applications/20.04.1/svgpart-20.04.1.tar.xz) = 963637581d0377a5326223f4cc3ef3b1daa10bc335271a0f3f8f4b3a82a53af9 -SIZE (KDE/applications/20.04.1/svgpart-20.04.1.tar.xz) = 21140 +TIMESTAMP = 1591712687 +SHA256 (KDE/applications/20.04.2/svgpart-20.04.2.tar.xz) = b419c66b02979a3f48bb86ce04ea8265311e28169c843406b867200904d3b058 +SIZE (KDE/applications/20.04.2/svgpart-20.04.2.tar.xz) = 21192 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 538648) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429638 -SHA256 (KDE/applications/20.04.1/kdegraphics-thumbnailers-20.04.1.tar.xz) = 91b2a6f95fe19ddea64999bdb62e1820c43eebfe2f2cf3f261b04a5d392c8915 -SIZE (KDE/applications/20.04.1/kdegraphics-thumbnailers-20.04.1.tar.xz) = 46480 +TIMESTAMP = 1591712688 +SHA256 (KDE/applications/20.04.2/kdegraphics-thumbnailers-20.04.2.tar.xz) = e20017679559395dd33fdc744bd1e40416349be91c8ed1b12e4c0c398bfbcecf +SIZE (KDE/applications/20.04.2/kdegraphics-thumbnailers-20.04.2.tar.xz) = 46500 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 538648) +++ head/graphics/kimagemapeditor/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429639 -SHA256 (KDE/applications/20.04.1/kimagemapeditor-20.04.1.tar.xz) = 2e0488664085dd52ec681e92c96ab86aa6087d15aeeb29f99b7867376f76e274 -SIZE (KDE/applications/20.04.1/kimagemapeditor-20.04.1.tar.xz) = 1071240 +TIMESTAMP = 1591712689 +SHA256 (KDE/applications/20.04.2/kimagemapeditor-20.04.2.tar.xz) = d9cd8a04c3d099f3a941965ebe2931e19d1b7c143ef182259175c837b37b5107 +SIZE (KDE/applications/20.04.2/kimagemapeditor-20.04.2.tar.xz) = 1071284 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 538648) +++ head/graphics/kipi-plugins/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429640 -SHA256 (KDE/applications/20.04.1/kipi-plugins-20.04.1.tar.xz) = 49f969d9078b3395ff307f499e1e17a04e46efb3461822795649b972432bec0a -SIZE (KDE/applications/20.04.1/kipi-plugins-20.04.1.tar.xz) = 1642932 +TIMESTAMP = 1591718918 +SHA256 (KDE/applications/20.04.2/kipi-plugins-20.04.2.tar.xz) = 73e8b7d8ca28dc630a7112065eda8757a7ac47d5417b86b75c309c3382f06748 +SIZE (KDE/applications/20.04.2/kipi-plugins-20.04.2.tar.xz) = 1643080 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 538648) +++ head/graphics/kolourpaint/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429641 -SHA256 (KDE/applications/20.04.1/kolourpaint-20.04.1.tar.xz) = 897154fc53b7406ded0a78466300fa98ff7be36f85a324aefdc040f676ed5f25 -SIZE (KDE/applications/20.04.1/kolourpaint-20.04.1.tar.xz) = 5652164 +TIMESTAMP = 1591712690 +SHA256 (KDE/applications/20.04.2/kolourpaint-20.04.2.tar.xz) = 51c4f709a9059581b9d79e3cd9d2f3752e213de4e68855334090bb9dfc41a60d +SIZE (KDE/applications/20.04.2/kolourpaint-20.04.2.tar.xz) = 5652284 Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 538648) +++ head/graphics/kqtquickcharts/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429642 -SHA256 (KDE/applications/20.04.1/kqtquickcharts-20.04.1.tar.xz) = 2376df3641f2e421ba7fe10c8e6f14b8e5299641b4e94ae27f97fee46a19b7f3 -SIZE (KDE/applications/20.04.1/kqtquickcharts-20.04.1.tar.xz) = 25636 +TIMESTAMP = 1591722510 +SHA256 (KDE/applications/20.04.2/kqtquickcharts-20.04.2.tar.xz) = 0c24f1f268d4e5e2342b49b50c6edc9faaa21146f6f8f508a5599dd000dceaf5 +SIZE (KDE/applications/20.04.2/kqtquickcharts-20.04.2.tar.xz) = 25624 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 538648) +++ head/graphics/libkdcraw/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429643 -SHA256 (KDE/applications/20.04.1/libkdcraw-20.04.1.tar.xz) = 21cf13ec2184702c8196e2e21dda831809d636932968f503f60bde48ee248c29 -SIZE (KDE/applications/20.04.1/libkdcraw-20.04.1.tar.xz) = 41944 +TIMESTAMP = 1591712690 +SHA256 (KDE/applications/20.04.2/libkdcraw-20.04.2.tar.xz) = 1e5727789ab0abcdad43c46327d044a2185bbbd684f13794af9a590255aead8f +SIZE (KDE/applications/20.04.2/libkdcraw-20.04.2.tar.xz) = 41912 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 538648) +++ head/graphics/libkexiv2/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429643 -SHA256 (KDE/applications/20.04.1/libkexiv2-20.04.1.tar.xz) = 91c23aacc2fc51970a5bd141de689c51c454d72b489ff842b5b8534c21c7b9a4 -SIZE (KDE/applications/20.04.1/libkexiv2-20.04.1.tar.xz) = 64544 +TIMESTAMP = 1591712691 +SHA256 (KDE/applications/20.04.2/libkexiv2-20.04.2.tar.xz) = 81ea2e2c818bb9d7d52025aecf1a2a348e68f822b78285cd887dd46e44a640f2 +SIZE (KDE/applications/20.04.2/libkexiv2-20.04.2.tar.xz) = 64536 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 538648) +++ head/graphics/libkipi/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429644 -SHA256 (KDE/applications/20.04.1/libkipi-20.04.1.tar.xz) = b818634c52b657db875ea1c84ee43b5b5a4a699cd384b84bd7d70909aee33b6d -SIZE (KDE/applications/20.04.1/libkipi-20.04.1.tar.xz) = 103580 +TIMESTAMP = 1591712692 +SHA256 (KDE/applications/20.04.2/libkipi-20.04.2.tar.xz) = a1dabe2910b2a8cf74c6efa7b5164eea3bb9e9ab459939905e8c9fec7f991147 +SIZE (KDE/applications/20.04.2/libkipi-20.04.2.tar.xz) = 103572 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 538648) +++ head/graphics/libksane/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429645 -SHA256 (KDE/applications/20.04.1/libksane-20.04.1.tar.xz) = e88d173d5f46049fad345caa308e1041ef619317df9783c84d30c2b35379eb0a -SIZE (KDE/applications/20.04.1/libksane-20.04.1.tar.xz) = 143612 +TIMESTAMP = 1591712693 +SHA256 (KDE/applications/20.04.2/libksane-20.04.2.tar.xz) = d159f65b2d6f040e02dc6e867fa3e0e31d32d6dda789ff2bfec72d365b5b8744 +SIZE (KDE/applications/20.04.2/libksane-20.04.2.tar.xz) = 143664 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 538648) +++ head/graphics/okular/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429646 -SHA256 (KDE/applications/20.04.1/okular-20.04.1.tar.xz) = 10e29f50f7616b4784ce673ef7fd6c04d622b02c175f96cd127a99cc5cffa9bc -SIZE (KDE/applications/20.04.1/okular-20.04.1.tar.xz) = 7236580 +TIMESTAMP = 1591712694 +SHA256 (KDE/applications/20.04.2/okular-20.04.2.tar.xz) = b783aaac1661d1d8ec5c5e26fdec7035a6b0241a21d18caac1587ecfde44c49b +SIZE (KDE/applications/20.04.2/okular-20.04.2.tar.xz) = 7237876 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 538648) +++ head/graphics/spectacle/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429647 -SHA256 (KDE/applications/20.04.1/spectacle-20.04.1.tar.xz) = 24890d9283c7d7df126bc9449ba09612e11d35860feca8e899be29e86bcc95fe -SIZE (KDE/applications/20.04.1/spectacle-20.04.1.tar.xz) = 661788 +TIMESTAMP = 1591712694 +SHA256 (KDE/applications/20.04.2/spectacle-20.04.2.tar.xz) = 39f16ca9c30de73d11dfc0da902c712bf260a1cd69c87bc950db896db8188866 +SIZE (KDE/applications/20.04.2/spectacle-20.04.2.tar.xz) = 662260 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 538648) +++ head/japanese/kiten/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429648 -SHA256 (KDE/applications/20.04.1/kiten-20.04.1.tar.xz) = 62ef7e45692709f296f89de25c4dc649cf0e510233a486549869ba3c884b5f41 -SIZE (KDE/applications/20.04.1/kiten-20.04.1.tar.xz) = 11282712 +TIMESTAMP = 1591712695 +SHA256 (KDE/applications/20.04.2/kiten-20.04.2.tar.xz) = c5d002ba2ee4a11913457808da67f9c7ee5dbcf1731fad11842a4aa338862c82 +SIZE (KDE/applications/20.04.2/kiten-20.04.2.tar.xz) = 11286976 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 538648) +++ head/lang/kross-interpreters/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429669 -SHA256 (KDE/applications/20.04.1/kross-interpreters-20.04.1.tar.xz) = fa5839fca67d89f33b94cf38acef42e5f556d9ea3c995030ff72dc30ae8fc51c -SIZE (KDE/applications/20.04.1/kross-interpreters-20.04.1.tar.xz) = 151240 +TIMESTAMP = 1591712716 +SHA256 (KDE/applications/20.04.2/kross-interpreters-20.04.2.tar.xz) = cea45091d1f3e65a745f8d9d38059420ff2bbdfcb584f195dd26192022c396a0 +SIZE (KDE/applications/20.04.2/kross-interpreters-20.04.2.tar.xz) = 151292 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 538648) +++ head/lang/kturtle/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429670 -SHA256 (KDE/applications/20.04.1/kturtle-20.04.1.tar.xz) = eee20401ea3644b4abbe0f6aadbd4068109b2239aabb35e7899633696e802948 -SIZE (KDE/applications/20.04.1/kturtle-20.04.1.tar.xz) = 1833764 +TIMESTAMP = 1591712717 +SHA256 (KDE/applications/20.04.2/kturtle-20.04.2.tar.xz) = 94881fec0a3b045aa222136b4ee996bdfbbf62b208d4344a644febc95046bd09 +SIZE (KDE/applications/20.04.2/kturtle-20.04.2.tar.xz) = 1833776 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 538648) +++ head/math/analitza/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429670 -SHA256 (KDE/applications/20.04.1/analitza-20.04.1.tar.xz) = d8a3f0e31b26ed4d845f037e5957b1a100b95266fce427bee27765593282f6b6 -SIZE (KDE/applications/20.04.1/analitza-20.04.1.tar.xz) = 332852 +TIMESTAMP = 1591712718 +SHA256 (KDE/applications/20.04.2/analitza-20.04.2.tar.xz) = 4232afcbb7956ef3815a4cfefdeb703ae29027133982781a8ad5654ee80e2196 +SIZE (KDE/applications/20.04.2/analitza-20.04.2.tar.xz) = 332632 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 538648) +++ head/math/cantor/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429671 -SHA256 (KDE/applications/20.04.1/cantor-20.04.1.tar.xz) = 6066b18b6c2feb8a14bab3a5ca844ef636d3a46ec8a6a7fc5c726f19542033be -SIZE (KDE/applications/20.04.1/cantor-20.04.1.tar.xz) = 9026456 +TIMESTAMP = 1591712719 +SHA256 (KDE/applications/20.04.2/cantor-20.04.2.tar.xz) = 1cc909a968b16f942ef48a4e74baac99aadc21cbf26cc0f885729aabae16ceea +SIZE (KDE/applications/20.04.2/cantor-20.04.2.tar.xz) = 9028088 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 538648) +++ head/math/kalgebra/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429672 -SHA256 (KDE/applications/20.04.1/kalgebra-20.04.1.tar.xz) = b49588319105d49132caad8d0a104613467c7369af945fa769d4fc024fb43f09 -SIZE (KDE/applications/20.04.1/kalgebra-20.04.1.tar.xz) = 1158236 +TIMESTAMP = 1591712719 +SHA256 (KDE/applications/20.04.2/kalgebra-20.04.2.tar.xz) = 2da9af32d70c09cd9d114735959d9d2d1fce5f3344938c68490960846479491c +SIZE (KDE/applications/20.04.2/kalgebra-20.04.2.tar.xz) = 1158340 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 538648) +++ head/math/kbruch/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429673 -SHA256 (KDE/applications/20.04.1/kbruch-20.04.1.tar.xz) = 15bc46fc263694b4a15e963892d9c22d6f76ea993da59ecf5de7ed94207878b2 -SIZE (KDE/applications/20.04.1/kbruch-20.04.1.tar.xz) = 5605636 +TIMESTAMP = 1591712720 +SHA256 (KDE/applications/20.04.2/kbruch-20.04.2.tar.xz) = ca07474acfc4a330c3420f6e37be4584074969884531dc918d31f0b07afa4183 +SIZE (KDE/applications/20.04.2/kbruch-20.04.2.tar.xz) = 5606300 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 538648) +++ head/math/kcalc/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429674 -SHA256 (KDE/applications/20.04.1/kcalc-20.04.1.tar.xz) = cb90d263b77378a25ba2409618b61dec412a57fb922c7c81a07fe7f1eea32f70 -SIZE (KDE/applications/20.04.1/kcalc-20.04.1.tar.xz) = 374372 +TIMESTAMP = 1591712721 +SHA256 (KDE/applications/20.04.2/kcalc-20.04.2.tar.xz) = 3f68a36c94cf309fb9c4a2aafc7bc2fa6c0d61c8fc967d60155d10d4028d61a0 +SIZE (KDE/applications/20.04.2/kcalc-20.04.2.tar.xz) = 374404 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 538648) +++ head/math/kig/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429675 -SHA256 (KDE/applications/20.04.1/kig-20.04.1.tar.xz) = 2d2a07b69fd2b657b738a73f7d0b5c733d2acc5821846de1efae78bfcb9a5fb1 -SIZE (KDE/applications/20.04.1/kig-20.04.1.tar.xz) = 3500292 +TIMESTAMP = 1591712722 +SHA256 (KDE/applications/20.04.2/kig-20.04.2.tar.xz) = afe7f08e5a1a06bda1a2773e6889907b4799db9c11e3b98974060f7c785ff047 +SIZE (KDE/applications/20.04.2/kig-20.04.2.tar.xz) = 3482912 Index: head/math/kig/pkg-plist =================================================================== --- head/math/kig/pkg-plist (revision 538648) +++ head/math/kig/pkg-plist (revision 538649) @@ -1,470 +1,366 @@ bin/kig bin/pykig.py %%QT_PLUGINDIR%%/kigpart.so man/ca/man1/kig.1.gz man/de/man1/kig.1.gz man/es/man1/kig.1.gz man/et/man1/kig.1.gz man/it/man1/kig.1.gz man/man1/kig.1.gz man/nl/man1/kig.1.gz man/pt_BR/man1/kig.1.gz man/ru/man1/kig.1.gz man/sv/man1/kig.1.gz man/uk/man1/kig.1.gz share/applications/org.kde.kig.desktop share/icons/hicolor/128x128/apps/kig.png share/icons/hicolor/128x128/mimetypes/application-x-kig.png share/icons/hicolor/16x16/apps/kig.png share/icons/hicolor/16x16/mimetypes/application-x-kig.png share/icons/hicolor/22x22/apps/kig.png share/icons/hicolor/22x22/mimetypes/application-x-kig.png share/icons/hicolor/32x32/apps/kig.png share/icons/hicolor/32x32/mimetypes/application-x-kig.png share/icons/hicolor/48x48/apps/kig.png share/icons/hicolor/48x48/mimetypes/application-x-kig.png share/icons/hicolor/64x64/apps/kig.png share/icons/hicolor/64x64/mimetypes/application-x-kig.png share/icons/hicolor/scalable/apps/kig.svgz share/icons/hicolor/scalable/mimetypes/application-x-kig.svgz share/katepart5/syntax/python-kig.xml %%DATADIR%%/builtin-macros/circle_by_center_and_line.kigt %%DATADIR%%/builtin-macros/circle_by_point_and_diameter.kigt %%DATADIR%%/builtin-macros/equitriangle.kigt %%DATADIR%%/builtin-macros/evolute.kigt %%DATADIR%%/builtin-macros/osculating_circle.kigt %%DATADIR%%/builtin-macros/square.kigt %%DATADIR%%/builtin-macros/vector_difference.kigt %%DATADIR%%/icons/hicolor/16x16/actions/kig_xfig.png %%DATADIR%%/icons/hicolor/22x22/actions/angle.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_size.png %%DATADIR%%/icons/hicolor/22x22/actions/arc.png %%DATADIR%%/icons/hicolor/22x22/actions/arc_center.png %%DATADIR%%/icons/hicolor/22x22/actions/areaCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/attacher.png %%DATADIR%%/icons/hicolor/22x22/actions/baseCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/bezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/beziercurves.png %%DATADIR%%/icons/hicolor/22x22/actions/bisection.png %%DATADIR%%/icons/hicolor/22x22/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/22x22/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcl.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebpd.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebps.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebtp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/circumference.png %%DATADIR%%/icons/hicolor/22x22/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/22x22/actions/conicb5p.png %%DATADIR%%/icons/hicolor/22x22/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/convexhull.png %%DATADIR%%/icons/hicolor/22x22/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/directrix.png %%DATADIR%%/icons/hicolor/22x22/actions/distance.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/22x22/actions/en.png %%DATADIR%%/icons/hicolor/22x22/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/22x22/actions/equitriangle.png %%DATADIR%%/icons/hicolor/22x22/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/22x22/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/22x22/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/22x22/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/22x22/actions/intersection.png %%DATADIR%%/icons/hicolor/22x22/actions/inversion.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_text.png %%DATADIR%%/icons/hicolor/22x22/actions/line.png %%DATADIR%%/icons/hicolor/22x22/actions/linebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/locus.png %%DATADIR%%/icons/hicolor/22x22/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/openpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/paint.png %%DATADIR%%/icons/hicolor/22x22/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/22x22/actions/parallel.png %%DATADIR%%/icons/hicolor/22x22/actions/perpendicular.png %%DATADIR%%/icons/hicolor/22x22/actions/point.png %%DATADIR%%/icons/hicolor/22x22/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/22x22/actions/pointxy.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonsides.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/22x22/actions/projection.png %%DATADIR%%/icons/hicolor/22x22/actions/python.png %%DATADIR%%/icons/hicolor/22x22/actions/radicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/ray.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/rotation.png %%DATADIR%%/icons/hicolor/22x22/actions/scale.png %%DATADIR%%/icons/hicolor/22x22/actions/segment.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/22x22/actions/similitude.png %%DATADIR%%/icons/hicolor/22x22/actions/sizer.png %%DATADIR%%/icons/hicolor/22x22/actions/slope.png %%DATADIR%%/icons/hicolor/22x22/actions/square.png %%DATADIR%%/icons/hicolor/22x22/actions/stretch.png %%DATADIR%%/icons/hicolor/22x22/actions/tangent.png %%DATADIR%%/icons/hicolor/22x22/actions/test.png %%DATADIR%%/icons/hicolor/22x22/actions/testcollinear.png %%DATADIR%%/icons/hicolor/22x22/actions/testcontains.png %%DATADIR%%/icons/hicolor/22x22/actions/testdistance.png %%DATADIR%%/icons/hicolor/22x22/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/22x22/actions/testparallel.png %%DATADIR%%/icons/hicolor/22x22/actions/translation.png %%DATADIR%%/icons/hicolor/22x22/actions/triangle.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/vectordifference.png %%DATADIR%%/icons/hicolor/22x22/actions/vectorsum.png %%DATADIR%%/icons/hicolor/22x22/actions/view_fit_to_page.png %%DATADIR%%/icons/hicolor/22x22/actions/w.png %%DATADIR%%/icons/hicolor/32x32/actions/angle.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_size.png %%DATADIR%%/icons/hicolor/32x32/actions/arc.png %%DATADIR%%/icons/hicolor/32x32/actions/arc_center.png %%DATADIR%%/icons/hicolor/32x32/actions/areaCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/attacher.png %%DATADIR%%/icons/hicolor/32x32/actions/baseCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/bezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/beziercurves.png %%DATADIR%%/icons/hicolor/32x32/actions/bisection.png %%DATADIR%%/icons/hicolor/32x32/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/32x32/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcl.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebpd.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebps.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebtp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/circumference.png %%DATADIR%%/icons/hicolor/32x32/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/32x32/actions/conicb5p.png %%DATADIR%%/icons/hicolor/32x32/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/convexhull.png %%DATADIR%%/icons/hicolor/32x32/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/directrix.png %%DATADIR%%/icons/hicolor/32x32/actions/distance.png %%DATADIR%%/icons/hicolor/32x32/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/32x32/actions/en.png %%DATADIR%%/icons/hicolor/32x32/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/32x32/actions/equitriangle.png %%DATADIR%%/icons/hicolor/32x32/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/32x32/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/32x32/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/32x32/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/32x32/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/32x32/actions/intersection.png %%DATADIR%%/icons/hicolor/32x32/actions/inversion.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_text.png %%DATADIR%%/icons/hicolor/32x32/actions/line.png %%DATADIR%%/icons/hicolor/32x32/actions/linebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/locus.png %%DATADIR%%/icons/hicolor/32x32/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/openpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/paint.png %%DATADIR%%/icons/hicolor/32x32/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/32x32/actions/parallel.png %%DATADIR%%/icons/hicolor/32x32/actions/perpendicular.png %%DATADIR%%/icons/hicolor/32x32/actions/point.png %%DATADIR%%/icons/hicolor/32x32/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/32x32/actions/pointxy.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonsides.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/32x32/actions/projection.png %%DATADIR%%/icons/hicolor/32x32/actions/python.png %%DATADIR%%/icons/hicolor/32x32/actions/radicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/ray.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/rotation.png %%DATADIR%%/icons/hicolor/32x32/actions/scale.png %%DATADIR%%/icons/hicolor/32x32/actions/segment.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/32x32/actions/similitude.png %%DATADIR%%/icons/hicolor/32x32/actions/sizer.png %%DATADIR%%/icons/hicolor/32x32/actions/slope.png %%DATADIR%%/icons/hicolor/32x32/actions/square.png %%DATADIR%%/icons/hicolor/32x32/actions/stretch.png %%DATADIR%%/icons/hicolor/32x32/actions/tangent.png %%DATADIR%%/icons/hicolor/32x32/actions/test.png %%DATADIR%%/icons/hicolor/32x32/actions/testcollinear.png %%DATADIR%%/icons/hicolor/32x32/actions/testcontains.png %%DATADIR%%/icons/hicolor/32x32/actions/testdistance.png %%DATADIR%%/icons/hicolor/32x32/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/32x32/actions/testparallel.png %%DATADIR%%/icons/hicolor/32x32/actions/translation.png %%DATADIR%%/icons/hicolor/32x32/actions/triangle.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/actions/vectordifference.png %%DATADIR%%/icons/hicolor/32x32/actions/vectorsum.png %%DATADIR%%/icons/hicolor/32x32/actions/w.png %%DATADIR%%/icons/hicolor/scalable/actions/angle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_bisector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_size.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc_center.svgz %%DATADIR%%/icons/hicolor/scalable/actions/areaCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/attacher.svgz %%DATADIR%%/icons/hicolor/scalable/actions/baseCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/beziercurves.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bisection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centerofcurvature.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centralsymmetry.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcl.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebpd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebps.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circumference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicasymptotes.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicb5p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/coniclineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicsradicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/controlpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/convexhull.svgz %%DATADIR%%/icons/hicolor/scalable/actions/curvelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/directrix.svgz %%DATADIR%%/icons/hicolor/scalable/actions/distance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ellipsebffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/en.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equilateralhyperbolab4p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equitriangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericaffinity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericprojectivity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/halflinebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/harmonichomology.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hexagonbcv.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hyperbolabffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/intersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/inversion.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_numericvalue.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_text.svgz %%DATADIR%%/icons/hicolor/scalable/actions/line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/linebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/locus.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mirrorpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/openpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/paint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parabolabtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/perpendicular.svgz %%DATADIR%%/icons/hicolor/scalable/actions/point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointOnLine.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointxy.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonsides.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonvertices.svgz %%DATADIR%%/icons/hicolor/scalable/actions/projection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/python.svgz %%DATADIR%%/icons/hicolor/scalable/actions/radicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ray.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rotation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/scale.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_golden_point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_midpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segmentaxis.svgz %%DATADIR%%/icons/hicolor/scalable/actions/similitude.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sizer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/slope.svgz %%DATADIR%%/icons/hicolor/scalable/actions/square.svgz %%DATADIR%%/icons/hicolor/scalable/actions/stretch.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tangent.svgz %%DATADIR%%/icons/hicolor/scalable/actions/test.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcollinear.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcontains.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testdistance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testorthogonal.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testparallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/translation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/triangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectordifference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectorsum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/w.svgz %%DATADIR%%/tips share/kservices5/kig_part.desktop share/kxmlgui5/kig/kigpartui.rc share/kxmlgui5/kig/kigui.rc -share/locale/ar/LC_MESSAGES/kfile_drgeo.mo -share/locale/ar/LC_MESSAGES/kfile_kig.mo share/locale/ar/LC_MESSAGES/kig.mo -share/locale/bg/LC_MESSAGES/kfile_drgeo.mo -share/locale/bg/LC_MESSAGES/kfile_kig.mo share/locale/bg/LC_MESSAGES/kig.mo -share/locale/bs/LC_MESSAGES/kfile_drgeo.mo -share/locale/bs/LC_MESSAGES/kfile_kig.mo share/locale/bs/LC_MESSAGES/kig.mo -share/locale/ca/LC_MESSAGES/kfile_drgeo.mo -share/locale/ca/LC_MESSAGES/kfile_kig.mo share/locale/ca/LC_MESSAGES/kig.mo -share/locale/ca@valencia/LC_MESSAGES/kfile_drgeo.mo -share/locale/ca@valencia/LC_MESSAGES/kfile_kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo -share/locale/cs/LC_MESSAGES/kfile_drgeo.mo -share/locale/cs/LC_MESSAGES/kfile_kig.mo share/locale/cs/LC_MESSAGES/kig.mo -share/locale/da/LC_MESSAGES/kfile_drgeo.mo -share/locale/da/LC_MESSAGES/kfile_kig.mo share/locale/da/LC_MESSAGES/kig.mo -share/locale/de/LC_MESSAGES/kfile_drgeo.mo -share/locale/de/LC_MESSAGES/kfile_kig.mo share/locale/de/LC_MESSAGES/kig.mo -share/locale/el/LC_MESSAGES/kfile_drgeo.mo -share/locale/el/LC_MESSAGES/kfile_kig.mo share/locale/el/LC_MESSAGES/kig.mo -share/locale/en_GB/LC_MESSAGES/kfile_drgeo.mo -share/locale/en_GB/LC_MESSAGES/kfile_kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo -share/locale/eo/LC_MESSAGES/kfile_drgeo.mo -share/locale/eo/LC_MESSAGES/kfile_kig.mo share/locale/eo/LC_MESSAGES/kig.mo -share/locale/es/LC_MESSAGES/kfile_drgeo.mo -share/locale/es/LC_MESSAGES/kfile_kig.mo share/locale/es/LC_MESSAGES/kig.mo -share/locale/et/LC_MESSAGES/kfile_drgeo.mo -share/locale/et/LC_MESSAGES/kfile_kig.mo share/locale/et/LC_MESSAGES/kig.mo -share/locale/eu/LC_MESSAGES/kfile_drgeo.mo -share/locale/eu/LC_MESSAGES/kfile_kig.mo share/locale/eu/LC_MESSAGES/kig.mo -share/locale/fa/LC_MESSAGES/kfile_drgeo.mo -share/locale/fa/LC_MESSAGES/kfile_kig.mo share/locale/fa/LC_MESSAGES/kig.mo -share/locale/fi/LC_MESSAGES/kfile_drgeo.mo -share/locale/fi/LC_MESSAGES/kfile_kig.mo share/locale/fi/LC_MESSAGES/kig.mo -share/locale/fr/LC_MESSAGES/kfile_drgeo.mo -share/locale/fr/LC_MESSAGES/kfile_kig.mo share/locale/fr/LC_MESSAGES/kig.mo -share/locale/ga/LC_MESSAGES/kfile_drgeo.mo -share/locale/ga/LC_MESSAGES/kfile_kig.mo share/locale/ga/LC_MESSAGES/kig.mo -share/locale/gl/LC_MESSAGES/kfile_drgeo.mo -share/locale/gl/LC_MESSAGES/kfile_kig.mo share/locale/gl/LC_MESSAGES/kig.mo -share/locale/he/LC_MESSAGES/kfile_drgeo.mo -share/locale/he/LC_MESSAGES/kfile_kig.mo -share/locale/hi/LC_MESSAGES/kfile_drgeo.mo -share/locale/hi/LC_MESSAGES/kfile_kig.mo share/locale/hi/LC_MESSAGES/kig.mo -share/locale/hr/LC_MESSAGES/kfile_drgeo.mo -share/locale/hr/LC_MESSAGES/kfile_kig.mo share/locale/hr/LC_MESSAGES/kig.mo -share/locale/hu/LC_MESSAGES/kfile_drgeo.mo -share/locale/hu/LC_MESSAGES/kfile_kig.mo share/locale/hu/LC_MESSAGES/kig.mo -share/locale/is/LC_MESSAGES/kfile_drgeo.mo -share/locale/is/LC_MESSAGES/kfile_kig.mo share/locale/is/LC_MESSAGES/kig.mo -share/locale/it/LC_MESSAGES/kfile_drgeo.mo -share/locale/it/LC_MESSAGES/kfile_kig.mo share/locale/it/LC_MESSAGES/kig.mo -share/locale/ja/LC_MESSAGES/kfile_drgeo.mo -share/locale/ja/LC_MESSAGES/kfile_kig.mo share/locale/ja/LC_MESSAGES/kig.mo -share/locale/kk/LC_MESSAGES/kfile_drgeo.mo -share/locale/kk/LC_MESSAGES/kfile_kig.mo share/locale/kk/LC_MESSAGES/kig.mo -share/locale/km/LC_MESSAGES/kfile_drgeo.mo -share/locale/km/LC_MESSAGES/kfile_kig.mo share/locale/km/LC_MESSAGES/kig.mo -share/locale/ko/LC_MESSAGES/kfile_drgeo.mo -share/locale/ko/LC_MESSAGES/kfile_kig.mo -share/locale/lt/LC_MESSAGES/kfile_drgeo.mo -share/locale/lt/LC_MESSAGES/kfile_kig.mo share/locale/lt/LC_MESSAGES/kig.mo -share/locale/lv/LC_MESSAGES/kfile_drgeo.mo -share/locale/lv/LC_MESSAGES/kfile_kig.mo share/locale/lv/LC_MESSAGES/kig.mo -share/locale/ml/LC_MESSAGES/kfile_drgeo.mo -share/locale/ml/LC_MESSAGES/kfile_kig.mo share/locale/ml/LC_MESSAGES/kig.mo -share/locale/mr/LC_MESSAGES/kfile_drgeo.mo -share/locale/mr/LC_MESSAGES/kfile_kig.mo share/locale/mr/LC_MESSAGES/kig.mo -share/locale/nb/LC_MESSAGES/kfile_drgeo.mo -share/locale/nb/LC_MESSAGES/kfile_kig.mo share/locale/nb/LC_MESSAGES/kig.mo -share/locale/nds/LC_MESSAGES/kfile_drgeo.mo -share/locale/nds/LC_MESSAGES/kfile_kig.mo share/locale/nds/LC_MESSAGES/kig.mo -share/locale/nl/LC_MESSAGES/kfile_drgeo.mo -share/locale/nl/LC_MESSAGES/kfile_kig.mo share/locale/nl/LC_MESSAGES/kig.mo -share/locale/nn/LC_MESSAGES/kfile_drgeo.mo -share/locale/nn/LC_MESSAGES/kfile_kig.mo share/locale/nn/LC_MESSAGES/kig.mo -share/locale/pa/LC_MESSAGES/kfile_drgeo.mo -share/locale/pa/LC_MESSAGES/kfile_kig.mo share/locale/pa/LC_MESSAGES/kig.mo -share/locale/pl/LC_MESSAGES/kfile_drgeo.mo -share/locale/pl/LC_MESSAGES/kfile_kig.mo share/locale/pl/LC_MESSAGES/kig.mo -share/locale/pt/LC_MESSAGES/kfile_drgeo.mo -share/locale/pt/LC_MESSAGES/kfile_kig.mo share/locale/pt/LC_MESSAGES/kig.mo -share/locale/pt_BR/LC_MESSAGES/kfile_drgeo.mo -share/locale/pt_BR/LC_MESSAGES/kfile_kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo -share/locale/ro/LC_MESSAGES/kfile_drgeo.mo -share/locale/ro/LC_MESSAGES/kfile_kig.mo share/locale/ro/LC_MESSAGES/kig.mo -share/locale/ru/LC_MESSAGES/kfile_drgeo.mo -share/locale/ru/LC_MESSAGES/kfile_kig.mo share/locale/ru/LC_MESSAGES/kig.mo -share/locale/sk/LC_MESSAGES/kfile_drgeo.mo -share/locale/sk/LC_MESSAGES/kfile_kig.mo share/locale/sk/LC_MESSAGES/kig.mo -share/locale/sl/LC_MESSAGES/kfile_drgeo.mo -share/locale/sl/LC_MESSAGES/kfile_kig.mo share/locale/sl/LC_MESSAGES/kig.mo -share/locale/sr/LC_MESSAGES/kfile_drgeo.mo -share/locale/sr/LC_MESSAGES/kfile_kig.mo -share/locale/sv/LC_MESSAGES/kfile_drgeo.mo -share/locale/sv/LC_MESSAGES/kfile_kig.mo share/locale/sv/LC_MESSAGES/kig.mo -share/locale/tr/LC_MESSAGES/kfile_drgeo.mo -share/locale/tr/LC_MESSAGES/kfile_kig.mo share/locale/tr/LC_MESSAGES/kig.mo -share/locale/ug/LC_MESSAGES/kfile_drgeo.mo -share/locale/ug/LC_MESSAGES/kfile_kig.mo share/locale/ug/LC_MESSAGES/kig.mo -share/locale/uk/LC_MESSAGES/kfile_drgeo.mo -share/locale/uk/LC_MESSAGES/kfile_kig.mo share/locale/uk/LC_MESSAGES/kig.mo -share/locale/zh_CN/LC_MESSAGES/kfile_drgeo.mo -share/locale/zh_CN/LC_MESSAGES/kfile_kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo -share/locale/zh_TW/LC_MESSAGES/kfile_drgeo.mo -share/locale/zh_TW/LC_MESSAGES/kfile_kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/metainfo/org.kde.kig.appdata.xml Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 538648) +++ head/math/kmplot/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429676 -SHA256 (KDE/applications/20.04.1/kmplot-20.04.1.tar.xz) = a851b568b01323fbf97b14866f1ed8371f69b23ef508484e5fc91484ff622cd9 -SIZE (KDE/applications/20.04.1/kmplot-20.04.1.tar.xz) = 3056716 +TIMESTAMP = 1591712723 +SHA256 (KDE/applications/20.04.2/kmplot-20.04.2.tar.xz) = 0ee433d52e849bd64411dcf6a81dbbf680dd63b888c9de968ca60d51597f3be0 +SIZE (KDE/applications/20.04.2/kmplot-20.04.2.tar.xz) = 3056336 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 538648) +++ head/math/rocs/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429677 -SHA256 (KDE/applications/20.04.1/rocs-20.04.1.tar.xz) = f19e5a07b033c6fc11aff352e979e24f2d0274d901cbc3bd37f8b0b5bb01234c -SIZE (KDE/applications/20.04.1/rocs-20.04.1.tar.xz) = 1507368 +TIMESTAMP = 1591712724 +SHA256 (KDE/applications/20.04.2/rocs-20.04.2.tar.xz) = 2162c9d925c4d9968176cc5c7da57c21505139c1464e4ecbb992ea5e840fb5db +SIZE (KDE/applications/20.04.2/rocs-20.04.2.tar.xz) = 1507436 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 538648) +++ head/misc/artikulate/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429677 -SHA256 (KDE/applications/20.04.1/artikulate-20.04.1.tar.xz) = a6275e9745b792f93fd9a8f0852c4f298cfb9d1bf9ba43ca3f9992a70eaa51d6 -SIZE (KDE/applications/20.04.1/artikulate-20.04.1.tar.xz) = 1077996 +TIMESTAMP = 1591712724 +SHA256 (KDE/applications/20.04.2/artikulate-20.04.2.tar.xz) = 9eb06fe614859b40219f4d5b868e642d276f9bc7c9e850762e2a50531b7e2a41 +SIZE (KDE/applications/20.04.2/artikulate-20.04.2.tar.xz) = 1079440 Index: head/misc/artikulate/pkg-plist =================================================================== --- head/misc/artikulate/pkg-plist (revision 538648) +++ head/misc/artikulate/pkg-plist (revision 538649) @@ -1,51 +1,52 @@ bin/artikulate bin/artikulate_editor etc/xdg/artikulate.knsrc lib/libartikulatecore.so.0 lib/libartikulatelearnerprofile.so.0 lib/libartikulatesound.so.0 %%QT_PLUGINDIR%%/artikulate/libsound/qtmultimediabackend.so share/applications/org.kde.artikulate.desktop share/config.kcfg/artikulate.kcfg share/icons/hicolor/16x16/apps/artikulate.png share/icons/hicolor/32x32/apps/artikulate.png share/icons/hicolor/48x48/apps/artikulate.png share/icons/hicolor/64x64/apps/artikulate.png share/icons/hicolor/scalable/apps/artikulate.svg share/locale/bs/LC_MESSAGES/artikulate.mo share/locale/ca/LC_MESSAGES/artikulate.mo share/locale/ca@valencia/LC_MESSAGES/artikulate.mo share/locale/cs/LC_MESSAGES/artikulate.mo share/locale/da/LC_MESSAGES/artikulate.mo share/locale/de/LC_MESSAGES/artikulate.mo share/locale/el/LC_MESSAGES/artikulate.mo share/locale/en_GB/LC_MESSAGES/artikulate.mo share/locale/eo/LC_MESSAGES/artikulate.mo share/locale/es/LC_MESSAGES/artikulate.mo share/locale/et/LC_MESSAGES/artikulate.mo share/locale/fi/LC_MESSAGES/artikulate.mo share/locale/fr/LC_MESSAGES/artikulate.mo share/locale/gl/LC_MESSAGES/artikulate.mo share/locale/hu/LC_MESSAGES/artikulate.mo +share/locale/ia/LC_MESSAGES/artikulate.mo share/locale/it/LC_MESSAGES/artikulate.mo share/locale/ja/LC_MESSAGES/artikulate.mo share/locale/lt/LC_MESSAGES/artikulate.mo share/locale/ml/LC_MESSAGES/artikulate.mo share/locale/mr/LC_MESSAGES/artikulate.mo share/locale/nds/LC_MESSAGES/artikulate.mo share/locale/nl/LC_MESSAGES/artikulate.mo share/locale/nn/LC_MESSAGES/artikulate.mo share/locale/pl/LC_MESSAGES/artikulate.mo share/locale/pt/LC_MESSAGES/artikulate.mo share/locale/pt_BR/LC_MESSAGES/artikulate.mo share/locale/ro/LC_MESSAGES/artikulate.mo share/locale/ru/LC_MESSAGES/artikulate.mo share/locale/sk/LC_MESSAGES/artikulate.mo share/locale/sl/LC_MESSAGES/artikulate.mo share/locale/sv/LC_MESSAGES/artikulate.mo share/locale/tr/LC_MESSAGES/artikulate.mo share/locale/ug/LC_MESSAGES/artikulate.mo share/locale/uk/LC_MESSAGES/artikulate.mo share/locale/zh_CN/LC_MESSAGES/artikulate.mo share/locale/zh_TW/LC_MESSAGES/artikulate.mo share/metainfo/org.kde.artikulate.appdata.xml Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 538648) +++ head/misc/kdeedu-data/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429678 -SHA256 (KDE/applications/20.04.1/kdeedu-data-20.04.1.tar.xz) = c59d4fb421f8a81709c2899e90e2b40191c1c589ae07f989aa9511b08f94c3a8 -SIZE (KDE/applications/20.04.1/kdeedu-data-20.04.1.tar.xz) = 328620 +TIMESTAMP = 1591712725 +SHA256 (KDE/applications/20.04.2/kdeedu-data-20.04.2.tar.xz) = 29d1d091e68c8f29ab1a59b7a94de0cce4bf9c049d315ffe2f305dfddd8c1561 +SIZE (KDE/applications/20.04.2/kdeedu-data-20.04.2.tar.xz) = 328796 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 538648) +++ head/misc/kgeography/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429680 -SHA256 (KDE/applications/20.04.1/kgeography-20.04.1.tar.xz) = b6d03fbc053b4e681471e1cc90876cddf805eb760624f8e3a38685ae27ca3d5b -SIZE (KDE/applications/20.04.1/kgeography-20.04.1.tar.xz) = 10871664 +TIMESTAMP = 1591847928 +SHA256 (KDE/applications/20.04.2/kgeography-20.04.2.tar.xz) = 2f3aed6d6f787f4ad773098a717fd8ae4739844d0847150ea0d56e5027c291d0 +SIZE (KDE/applications/20.04.2/kgeography-20.04.2.tar.xz) = 10870332 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 538648) +++ head/misc/klettres/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429681 -SHA256 (KDE/applications/20.04.1/klettres-20.04.1.tar.xz) = 831cb557366b84649ca5d64f414ebc02c20e19cc9eb350893006f10470248db4 -SIZE (KDE/applications/20.04.1/klettres-20.04.1.tar.xz) = 40137668 +TIMESTAMP = 1591712727 +SHA256 (KDE/applications/20.04.2/klettres-20.04.2.tar.xz) = 486cdd21446f2d31142607de6f6d24523561121d403a0f2f2d33f084cb937904 +SIZE (KDE/applications/20.04.2/klettres-20.04.2.tar.xz) = 46842972 Index: head/misc/klettres/pkg-plist =================================================================== --- head/misc/klettres/pkg-plist (revision 538648) +++ head/misc/klettres/pkg-plist (revision 538649) @@ -1,1912 +1,2020 @@ 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%%/id/alpha/a.wav +%%DATADIR%%/id/alpha/b.wav +%%DATADIR%%/id/alpha/c.wav +%%DATADIR%%/id/alpha/d.wav +%%DATADIR%%/id/alpha/e.wav +%%DATADIR%%/id/alpha/f.wav +%%DATADIR%%/id/alpha/g.wav +%%DATADIR%%/id/alpha/h.wav +%%DATADIR%%/id/alpha/i.wav +%%DATADIR%%/id/alpha/j.wav +%%DATADIR%%/id/alpha/k.wav +%%DATADIR%%/id/alpha/l.wav +%%DATADIR%%/id/alpha/m.wav +%%DATADIR%%/id/alpha/n.wav +%%DATADIR%%/id/alpha/o.wav +%%DATADIR%%/id/alpha/p.wav +%%DATADIR%%/id/alpha/q.wav +%%DATADIR%%/id/alpha/r.wav +%%DATADIR%%/id/alpha/s.wav +%%DATADIR%%/id/alpha/t.wav +%%DATADIR%%/id/alpha/u.wav +%%DATADIR%%/id/alpha/v.wav +%%DATADIR%%/id/alpha/w.wav +%%DATADIR%%/id/alpha/x.wav +%%DATADIR%%/id/alpha/y.wav +%%DATADIR%%/id/alpha/z.wav +%%DATADIR%%/id/sounds.xml +%%DATADIR%%/id/syllab/ba.wav +%%DATADIR%%/id/syllab/be.wav +%%DATADIR%%/id/syllab/bi.wav +%%DATADIR%%/id/syllab/bo.wav +%%DATADIR%%/id/syllab/bu.wav +%%DATADIR%%/id/syllab/ca.wav +%%DATADIR%%/id/syllab/ce.wav +%%DATADIR%%/id/syllab/co.wav +%%DATADIR%%/id/syllab/cu.wav +%%DATADIR%%/id/syllab/da.wav +%%DATADIR%%/id/syllab/de.wav +%%DATADIR%%/id/syllab/di.wav +%%DATADIR%%/id/syllab/do.wav +%%DATADIR%%/id/syllab/du.wav +%%DATADIR%%/id/syllab/fa.wav +%%DATADIR%%/id/syllab/fe.wav +%%DATADIR%%/id/syllab/fi.wav +%%DATADIR%%/id/syllab/fo.wav +%%DATADIR%%/id/syllab/fu.wav +%%DATADIR%%/id/syllab/ga.wav +%%DATADIR%%/id/syllab/go.wav +%%DATADIR%%/id/syllab/gu.wav +%%DATADIR%%/id/syllab/ja.wav +%%DATADIR%%/id/syllab/je.wav +%%DATADIR%%/id/syllab/ji.wav +%%DATADIR%%/id/syllab/jo.wav +%%DATADIR%%/id/syllab/ju.wav +%%DATADIR%%/id/syllab/la.wav +%%DATADIR%%/id/syllab/le.wav +%%DATADIR%%/id/syllab/li.wav +%%DATADIR%%/id/syllab/lo.wav +%%DATADIR%%/id/syllab/lu.wav +%%DATADIR%%/id/syllab/ma.wav +%%DATADIR%%/id/syllab/me.wav +%%DATADIR%%/id/syllab/mi.wav +%%DATADIR%%/id/syllab/mo.wav +%%DATADIR%%/id/syllab/mu.wav +%%DATADIR%%/id/syllab/na.wav +%%DATADIR%%/id/syllab/ne.wav +%%DATADIR%%/id/syllab/ni.wav +%%DATADIR%%/id/syllab/no.wav +%%DATADIR%%/id/syllab/nu.wav +%%DATADIR%%/id/syllab/pa.wav +%%DATADIR%%/id/syllab/pe.wav +%%DATADIR%%/id/syllab/pi.wav +%%DATADIR%%/id/syllab/po.wav +%%DATADIR%%/id/syllab/pu.wav +%%DATADIR%%/id/syllab/ra.wav +%%DATADIR%%/id/syllab/re.wav +%%DATADIR%%/id/syllab/ri.wav +%%DATADIR%%/id/syllab/ro.wav +%%DATADIR%%/id/syllab/ru.wav +%%DATADIR%%/id/syllab/sa.wav +%%DATADIR%%/id/syllab/se.wav +%%DATADIR%%/id/syllab/si.wav +%%DATADIR%%/id/syllab/so.wav +%%DATADIR%%/id/syllab/su.wav +%%DATADIR%%/id/syllab/ta.wav +%%DATADIR%%/id/syllab/te.wav +%%DATADIR%%/id/syllab/ti.wav +%%DATADIR%%/id/syllab/to.wav +%%DATADIR%%/id/syllab/tu.wav +%%DATADIR%%/id/syllab/va.wav +%%DATADIR%%/id/syllab/ve.wav +%%DATADIR%%/id/syllab/vi.wav +%%DATADIR%%/id/syllab/vo.wav +%%DATADIR%%/id/syllab/vu.wav +%%DATADIR%%/id/syllab/wa.wav +%%DATADIR%%/id/syllab/we.wav +%%DATADIR%%/id/syllab/wi.wav +%%DATADIR%%/id/syllab/wo.wav +%%DATADIR%%/id/syllab/wu.wav +%%DATADIR%%/id/syllab/ya.wav +%%DATADIR%%/id/syllab/ye.wav +%%DATADIR%%/id/syllab/yi.wav +%%DATADIR%%/id/syllab/yo.wav +%%DATADIR%%/id/syllab/yu.wav +%%DATADIR%%/id/syllab/za.wav +%%DATADIR%%/id/syllab/ze.wav +%%DATADIR%%/id/syllab/zi.wav +%%DATADIR%%/id/syllab/zo.wav +%%DATADIR%%/id/syllab/zu.wav %%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 538648) +++ head/misc/ktouch/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429682 -SHA256 (KDE/applications/20.04.1/ktouch-20.04.1.tar.xz) = cc33d04d4d8c3f35d351a5d168b69275722e0482a07c1aa85b8ccaea7ea721df -SIZE (KDE/applications/20.04.1/ktouch-20.04.1.tar.xz) = 4936708 +TIMESTAMP = 1591712728 +SHA256 (KDE/applications/20.04.2/ktouch-20.04.2.tar.xz) = d00de2b920339990a1e6a647a6de04720a5786650c77458290a8eff4d43dd52b +SIZE (KDE/applications/20.04.2/ktouch-20.04.2.tar.xz) = 4937240 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 538648) +++ head/misc/kwordquiz/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429682 -SHA256 (KDE/applications/20.04.1/kwordquiz-20.04.1.tar.xz) = e1829615763689958936971b9b89f52288c280843682def74082379d4d7d6a0f -SIZE (KDE/applications/20.04.1/kwordquiz-20.04.1.tar.xz) = 4175624 +TIMESTAMP = 1591712729 +SHA256 (KDE/applications/20.04.2/kwordquiz-20.04.2.tar.xz) = 0399810f7b279899a5fa00b7110baec85651036253292207654a0240af84baed +SIZE (KDE/applications/20.04.2/kwordquiz-20.04.2.tar.xz) = 4176948 Index: head/misc/kwordquiz/pkg-plist =================================================================== --- head/misc/kwordquiz/pkg-plist (revision 538648) +++ head/misc/kwordquiz/pkg-plist (revision 538649) @@ -1,219 +1,220 @@ bin/kwordquiz etc/xdg/kwordquiz.knsrc share/applications/org.kde.kwordquiz.desktop share/config.kcfg/kwordquiz.kcfg share/icons/hicolor/128x128/apps/kwordquiz.png share/icons/hicolor/128x128/mimetypes/application-x-kwordquiz.png share/icons/hicolor/16x16/apps/kwordquiz.png share/icons/hicolor/16x16/mimetypes/application-x-kwordquiz.png share/icons/hicolor/22x22/apps/kwordquiz.png share/icons/hicolor/22x22/mimetypes/application-x-kwordquiz.png share/icons/hicolor/32x32/apps/kwordquiz.png share/icons/hicolor/32x32/mimetypes/application-x-kwordquiz.png share/icons/hicolor/48x48/apps/kwordquiz.png share/icons/hicolor/48x48/mimetypes/application-x-kwordquiz.png share/icons/hicolor/64x64/apps/kwordquiz.png share/knotifications5/kwordquiz.notifyrc %%DATADIR%%/examples/example.kvtml %%DATADIR%%/examples/fill_in_the_blank.kvtml %%DATADIR%%/examples/french_verbs.kvtml %%DATADIR%%/examples/us_states_and_capitals.kvtml %%DATADIR%%/icons/hicolor/128x128/actions/answer-correct.png %%DATADIR%%/icons/hicolor/128x128/actions/answer.png %%DATADIR%%/icons/hicolor/128x128/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/128x128/actions/editor.png %%DATADIR%%/icons/hicolor/128x128/actions/error.png %%DATADIR%%/icons/hicolor/128x128/actions/flash.png %%DATADIR%%/icons/hicolor/128x128/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/128x128/actions/languages.png %%DATADIR%%/icons/hicolor/128x128/actions/mode1.png %%DATADIR%%/icons/hicolor/128x128/actions/mode2.png %%DATADIR%%/icons/hicolor/128x128/actions/mode3.png %%DATADIR%%/icons/hicolor/128x128/actions/mode4.png %%DATADIR%%/icons/hicolor/128x128/actions/mode5.png %%DATADIR%%/icons/hicolor/128x128/actions/multiple.png %%DATADIR%%/icons/hicolor/128x128/actions/qa.png %%DATADIR%%/icons/hicolor/128x128/actions/question.png %%DATADIR%%/icons/hicolor/128x128/actions/rowcol.png %%DATADIR%%/icons/hicolor/16x16/actions/answer-correct.png %%DATADIR%%/icons/hicolor/16x16/actions/answer.png %%DATADIR%%/icons/hicolor/16x16/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/16x16/actions/dontknow.png %%DATADIR%%/icons/hicolor/16x16/actions/editor.png %%DATADIR%%/icons/hicolor/16x16/actions/error.png %%DATADIR%%/icons/hicolor/16x16/actions/flash.png %%DATADIR%%/icons/hicolor/16x16/actions/hint.png %%DATADIR%%/icons/hicolor/16x16/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/16x16/actions/know.png %%DATADIR%%/icons/hicolor/16x16/actions/languages.png %%DATADIR%%/icons/hicolor/16x16/actions/markasblank.png %%DATADIR%%/icons/hicolor/16x16/actions/mode1.png %%DATADIR%%/icons/hicolor/16x16/actions/mode2.png %%DATADIR%%/icons/hicolor/16x16/actions/mode3.png %%DATADIR%%/icons/hicolor/16x16/actions/mode4.png %%DATADIR%%/icons/hicolor/16x16/actions/mode5.png %%DATADIR%%/icons/hicolor/16x16/actions/multiple.png %%DATADIR%%/icons/hicolor/16x16/actions/qa.png %%DATADIR%%/icons/hicolor/16x16/actions/question.png %%DATADIR%%/icons/hicolor/16x16/actions/repeat.png %%DATADIR%%/icons/hicolor/16x16/actions/rowcol.png %%DATADIR%%/icons/hicolor/16x16/actions/shuffle.png %%DATADIR%%/icons/hicolor/16x16/actions/sort_incr.png %%DATADIR%%/icons/hicolor/16x16/actions/start-over.png %%DATADIR%%/icons/hicolor/16x16/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/22x22/actions/answer-correct.png %%DATADIR%%/icons/hicolor/22x22/actions/answer.png %%DATADIR%%/icons/hicolor/22x22/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/22x22/actions/dontknow.png %%DATADIR%%/icons/hicolor/22x22/actions/editor.png %%DATADIR%%/icons/hicolor/22x22/actions/error.png %%DATADIR%%/icons/hicolor/22x22/actions/flash.png %%DATADIR%%/icons/hicolor/22x22/actions/hint.png %%DATADIR%%/icons/hicolor/22x22/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/22x22/actions/know.png %%DATADIR%%/icons/hicolor/22x22/actions/languages.png %%DATADIR%%/icons/hicolor/22x22/actions/markasblank.png %%DATADIR%%/icons/hicolor/22x22/actions/mode1.png %%DATADIR%%/icons/hicolor/22x22/actions/mode2.png %%DATADIR%%/icons/hicolor/22x22/actions/mode3.png %%DATADIR%%/icons/hicolor/22x22/actions/mode4.png %%DATADIR%%/icons/hicolor/22x22/actions/mode5.png %%DATADIR%%/icons/hicolor/22x22/actions/multiple.png %%DATADIR%%/icons/hicolor/22x22/actions/qa.png %%DATADIR%%/icons/hicolor/22x22/actions/question.png %%DATADIR%%/icons/hicolor/22x22/actions/repeat.png %%DATADIR%%/icons/hicolor/22x22/actions/rowcol.png %%DATADIR%%/icons/hicolor/22x22/actions/shuffle.png %%DATADIR%%/icons/hicolor/22x22/actions/sort_incr.png %%DATADIR%%/icons/hicolor/22x22/actions/start-over.png %%DATADIR%%/icons/hicolor/22x22/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/32x32/actions/answer-correct.png %%DATADIR%%/icons/hicolor/32x32/actions/answer.png %%DATADIR%%/icons/hicolor/32x32/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/32x32/actions/dontknow.png %%DATADIR%%/icons/hicolor/32x32/actions/editor.png %%DATADIR%%/icons/hicolor/32x32/actions/error.png %%DATADIR%%/icons/hicolor/32x32/actions/flash.png %%DATADIR%%/icons/hicolor/32x32/actions/hint.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/32x32/actions/know.png %%DATADIR%%/icons/hicolor/32x32/actions/languages.png %%DATADIR%%/icons/hicolor/32x32/actions/markasblank.png %%DATADIR%%/icons/hicolor/32x32/actions/mode1.png %%DATADIR%%/icons/hicolor/32x32/actions/mode2.png %%DATADIR%%/icons/hicolor/32x32/actions/mode3.png %%DATADIR%%/icons/hicolor/32x32/actions/mode4.png %%DATADIR%%/icons/hicolor/32x32/actions/mode5.png %%DATADIR%%/icons/hicolor/32x32/actions/multiple.png %%DATADIR%%/icons/hicolor/32x32/actions/qa.png %%DATADIR%%/icons/hicolor/32x32/actions/question.png %%DATADIR%%/icons/hicolor/32x32/actions/question_mark.png %%DATADIR%%/icons/hicolor/32x32/actions/repeat.png %%DATADIR%%/icons/hicolor/32x32/actions/rowcol.png %%DATADIR%%/icons/hicolor/32x32/actions/shuffle.png %%DATADIR%%/icons/hicolor/32x32/actions/sort_incr.png %%DATADIR%%/icons/hicolor/32x32/actions/start-over.png %%DATADIR%%/icons/hicolor/32x32/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/48x48/actions/answer-correct.png %%DATADIR%%/icons/hicolor/48x48/actions/answer.png %%DATADIR%%/icons/hicolor/48x48/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/48x48/actions/editor.png %%DATADIR%%/icons/hicolor/48x48/actions/error.png %%DATADIR%%/icons/hicolor/48x48/actions/flash.png %%DATADIR%%/icons/hicolor/48x48/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/48x48/actions/languages.png %%DATADIR%%/icons/hicolor/48x48/actions/mode1.png %%DATADIR%%/icons/hicolor/48x48/actions/mode2.png %%DATADIR%%/icons/hicolor/48x48/actions/mode3.png %%DATADIR%%/icons/hicolor/48x48/actions/mode4.png %%DATADIR%%/icons/hicolor/48x48/actions/mode5.png %%DATADIR%%/icons/hicolor/48x48/actions/multiple.png %%DATADIR%%/icons/hicolor/48x48/actions/qa.png %%DATADIR%%/icons/hicolor/48x48/actions/question.png %%DATADIR%%/icons/hicolor/48x48/actions/rowcol.png %%DATADIR%%/icons/hicolor/64x64/actions/answer-correct.png %%DATADIR%%/icons/hicolor/64x64/actions/answer.png %%DATADIR%%/icons/hicolor/64x64/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/64x64/actions/editor.png %%DATADIR%%/icons/hicolor/64x64/actions/error.png %%DATADIR%%/icons/hicolor/64x64/actions/flash.png %%DATADIR%%/icons/hicolor/64x64/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/64x64/actions/languages.png %%DATADIR%%/icons/hicolor/64x64/actions/mode1.png %%DATADIR%%/icons/hicolor/64x64/actions/mode2.png %%DATADIR%%/icons/hicolor/64x64/actions/mode3.png %%DATADIR%%/icons/hicolor/64x64/actions/mode4.png %%DATADIR%%/icons/hicolor/64x64/actions/mode5.png %%DATADIR%%/icons/hicolor/64x64/actions/multiple.png %%DATADIR%%/icons/hicolor/64x64/actions/qa.png %%DATADIR%%/icons/hicolor/64x64/actions/question.png %%DATADIR%%/icons/hicolor/64x64/actions/rowcol.png %%DATADIR%%/icons/hicolor/scalable/actions/answer-correct.svgz %%DATADIR%%/icons/hicolor/scalable/actions/answer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/delete-table-row.svgz %%DATADIR%%/icons/hicolor/scalable/actions/editor.svgz %%DATADIR%%/icons/hicolor/scalable/actions/error.svgz %%DATADIR%%/icons/hicolor/scalable/actions/flash.svgz %%DATADIR%%/icons/hicolor/scalable/actions/insert-table-row.svgz %%DATADIR%%/icons/hicolor/scalable/actions/languages.svgz %%DATADIR%%/icons/hicolor/scalable/actions/markasblank.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode1.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode2.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode5.svgz %%DATADIR%%/icons/hicolor/scalable/actions/multiple.svgz %%DATADIR%%/icons/hicolor/scalable/actions/qa.svgz %%DATADIR%%/icons/hicolor/scalable/actions/question.svgz %%DATADIR%%/icons/hicolor/scalable/actions/unmarkasblank.svgz share/kxmlgui5/kwordquiz/kwordquizui.rc share/locale/ar/LC_MESSAGES/kwordquiz.mo share/locale/bg/LC_MESSAGES/kwordquiz.mo share/locale/bs/LC_MESSAGES/kwordquiz.mo share/locale/ca/LC_MESSAGES/kwordquiz.mo share/locale/ca@valencia/LC_MESSAGES/kwordquiz.mo share/locale/cs/LC_MESSAGES/kwordquiz.mo share/locale/da/LC_MESSAGES/kwordquiz.mo share/locale/de/LC_MESSAGES/kwordquiz.mo share/locale/el/LC_MESSAGES/kwordquiz.mo share/locale/en_GB/LC_MESSAGES/kwordquiz.mo share/locale/eo/LC_MESSAGES/kwordquiz.mo share/locale/es/LC_MESSAGES/kwordquiz.mo share/locale/et/LC_MESSAGES/kwordquiz.mo share/locale/eu/LC_MESSAGES/kwordquiz.mo share/locale/fa/LC_MESSAGES/kwordquiz.mo share/locale/fi/LC_MESSAGES/kwordquiz.mo share/locale/fr/LC_MESSAGES/kwordquiz.mo share/locale/ga/LC_MESSAGES/kwordquiz.mo share/locale/gl/LC_MESSAGES/kwordquiz.mo share/locale/hi/LC_MESSAGES/kwordquiz.mo share/locale/hr/LC_MESSAGES/kwordquiz.mo share/locale/hu/LC_MESSAGES/kwordquiz.mo +share/locale/ia/LC_MESSAGES/kwordquiz.mo share/locale/it/LC_MESSAGES/kwordquiz.mo share/locale/ja/LC_MESSAGES/kwordquiz.mo share/locale/kk/LC_MESSAGES/kwordquiz.mo share/locale/km/LC_MESSAGES/kwordquiz.mo share/locale/ko/LC_MESSAGES/kwordquiz.mo share/locale/lt/LC_MESSAGES/kwordquiz.mo share/locale/lv/LC_MESSAGES/kwordquiz.mo share/locale/ml/LC_MESSAGES/kwordquiz.mo share/locale/mr/LC_MESSAGES/kwordquiz.mo share/locale/nb/LC_MESSAGES/kwordquiz.mo share/locale/nds/LC_MESSAGES/kwordquiz.mo share/locale/nl/LC_MESSAGES/kwordquiz.mo share/locale/nn/LC_MESSAGES/kwordquiz.mo share/locale/pa/LC_MESSAGES/kwordquiz.mo share/locale/pl/LC_MESSAGES/kwordquiz.mo share/locale/pt/LC_MESSAGES/kwordquiz.mo share/locale/pt_BR/LC_MESSAGES/kwordquiz.mo share/locale/ro/LC_MESSAGES/kwordquiz.mo share/locale/ru/LC_MESSAGES/kwordquiz.mo share/locale/sk/LC_MESSAGES/kwordquiz.mo share/locale/sl/LC_MESSAGES/kwordquiz.mo share/locale/sv/LC_MESSAGES/kwordquiz.mo share/locale/tr/LC_MESSAGES/kwordquiz.mo share/locale/ug/LC_MESSAGES/kwordquiz.mo share/locale/uk/LC_MESSAGES/kwordquiz.mo share/locale/zh_CN/LC_MESSAGES/kwordquiz.mo share/locale/zh_TW/LC_MESSAGES/kwordquiz.mo share/metainfo/org.kde.kwordquiz.appdata.xml Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 538648) +++ head/misc/libkeduvocdocument/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429683 -SHA256 (KDE/applications/20.04.1/libkeduvocdocument-20.04.1.tar.xz) = a252e3c7f253ec5dd62d75e0ee7f58f87285d0bc12d47301b048996d6a923ff6 -SIZE (KDE/applications/20.04.1/libkeduvocdocument-20.04.1.tar.xz) = 206776 +TIMESTAMP = 1591712730 +SHA256 (KDE/applications/20.04.2/libkeduvocdocument-20.04.2.tar.xz) = 2bf9e70ffa1865ea09ad3a9fe5e899c9dd43103d35e914db974e6e72f742aae9 +SIZE (KDE/applications/20.04.2/libkeduvocdocument-20.04.2.tar.xz) = 206864 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 538648) +++ head/misc/parley/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429684 -SHA256 (KDE/applications/20.04.1/parley-20.04.1.tar.xz) = 60dfe90d58adc9b64354073a0abb54ce0f65fc51fc6d18201636ac4b58fe67b8 -SIZE (KDE/applications/20.04.1/parley-20.04.1.tar.xz) = 8836220 +TIMESTAMP = 1591712730 +SHA256 (KDE/applications/20.04.2/parley-20.04.2.tar.xz) = 67d0daf172acbcd3aa6b2969b2204720f5312526fe00a1d4c0b3d433226d3fe2 +SIZE (KDE/applications/20.04.2/parley-20.04.2.tar.xz) = 8838228 Index: head/misc/parley/pkg-plist =================================================================== --- head/misc/parley/pkg-plist (revision 538648) +++ head/misc/parley/pkg-plist (revision 538649) @@ -1,190 +1,191 @@ bin/parley etc/xdg/parley-themes.knsrc etc/xdg/parley.knsrc share/applications/org.kde.parley.desktop share/config.kcfg/documentsettings.kcfg share/config.kcfg/languagesettings.kcfg share/config.kcfg/parley.kcfg share/icons/hicolor/128x128/apps/parley.png share/icons/hicolor/16x16/apps/parley.png share/icons/hicolor/32x32/apps/parley.png share/icons/hicolor/48x48/apps/parley.png share/icons/hicolor/64x64/apps/parley.png share/icons/hicolor/scalable/apps/parley-parley.svgz share/icons/hicolor/scalable/apps/parley-simple.svgz share/icons/hicolor/scalable/apps/parley.svgz share/icons/oxygen/16x16/actions/cards-block.png share/icons/oxygen/16x16/actions/edit-entry.png share/icons/oxygen/16x16/actions/edit-table-row.png share/icons/oxygen/16x16/actions/lesson-add.png share/icons/oxygen/16x16/actions/lesson-remove.png share/icons/oxygen/16x16/actions/list-add-card.png share/icons/oxygen/16x16/actions/list-remove-card.png share/icons/oxygen/16x16/actions/multiple-choice.png share/icons/oxygen/16x16/actions/practice-setup.png share/icons/oxygen/16x16/actions/practice-start.png share/icons/oxygen/16x16/actions/practice-stop.png share/icons/oxygen/16x16/actions/remove-duplicates.png share/icons/oxygen/16x16/actions/set-language.png share/icons/oxygen/16x16/actions/specific-setup.png share/icons/oxygen/22x22/actions/cards-block.png share/icons/oxygen/22x22/actions/edit-entry.png share/icons/oxygen/22x22/actions/edit-table-row.png share/icons/oxygen/22x22/actions/lesson-add.png share/icons/oxygen/22x22/actions/lesson-remove.png share/icons/oxygen/22x22/actions/list-add-card.png share/icons/oxygen/22x22/actions/list-remove-card.png share/icons/oxygen/22x22/actions/multiple-choice.png share/icons/oxygen/22x22/actions/practice-setup.png share/icons/oxygen/22x22/actions/practice-start.png share/icons/oxygen/22x22/actions/practice-stop.png share/icons/oxygen/22x22/actions/remove-duplicates.png share/icons/oxygen/22x22/actions/set-language.png share/icons/oxygen/22x22/actions/specific-setup.png share/icons/oxygen/32x32/actions/cards-block.png share/icons/oxygen/32x32/actions/edit-entry.png share/icons/oxygen/32x32/actions/edit-table-row.png share/icons/oxygen/32x32/actions/lesson-add.png share/icons/oxygen/32x32/actions/lesson-remove.png share/icons/oxygen/32x32/actions/list-add-card.png share/icons/oxygen/32x32/actions/list-remove-card.png share/icons/oxygen/32x32/actions/multiple-choice.png share/icons/oxygen/32x32/actions/practice-setup.png share/icons/oxygen/32x32/actions/practice-start.png share/icons/oxygen/32x32/actions/practice-stop.png share/icons/oxygen/32x32/actions/remove-duplicates.png share/icons/oxygen/32x32/actions/set-language.png share/icons/oxygen/32x32/actions/specific-setup.png share/icons/oxygen/48x48/actions/cards-block.png share/icons/oxygen/48x48/actions/edit-entry.png share/icons/oxygen/48x48/actions/edit-table-row.png share/icons/oxygen/48x48/actions/lesson-add.png share/icons/oxygen/48x48/actions/lesson-remove.png share/icons/oxygen/48x48/actions/list-add-card.png share/icons/oxygen/48x48/actions/list-remove-card.png share/icons/oxygen/48x48/actions/multiple-choice.png share/icons/oxygen/48x48/actions/practice-setup.png share/icons/oxygen/48x48/actions/practice-start.png share/icons/oxygen/48x48/actions/practice-stop.png share/icons/oxygen/48x48/actions/remove-duplicates.png share/icons/oxygen/48x48/actions/set-language.png share/icons/oxygen/48x48/actions/specific-setup.png share/icons/oxygen/scalable/actions/cards-block.svgz share/icons/oxygen/scalable/actions/edit-entry.svgz share/icons/oxygen/scalable/actions/edit-table-row.svgz share/icons/oxygen/scalable/actions/lesson-add.svgz share/icons/oxygen/scalable/actions/lesson-remove.svgz share/icons/oxygen/scalable/actions/list-add-card.svgz share/icons/oxygen/scalable/actions/list-remove-card.svgz share/icons/oxygen/scalable/actions/practice-setup.svgz share/icons/oxygen/scalable/actions/practice-start.svgz share/icons/oxygen/scalable/actions/remove-duplicates.svgz share/icons/oxygen/scalable/actions/set-language.svgz share/icons/oxygen/scalable/actions/specific-setup.svgz share/kxmlgui5/parley/dashboardui.rc share/kxmlgui5/parley/editorui.rc share/kxmlgui5/parley/parleyui.rc share/kxmlgui5/parley/practicesummaryui.rc share/kxmlgui5/parley/practiceui.rc share/kxmlgui5/parley/statisticsui.rc share/kxmlgui5/parley/themes/bees_theme.desktop share/kxmlgui5/parley/themes/bees_theme.svgz share/kxmlgui5/parley/themes/bees_theme_preview.jpg share/kxmlgui5/parley/themes/theme_reference.desktop share/kxmlgui5/parley/themes/theme_reference.svgz share/kxmlgui5/parley/themes/theme_reference_preview.jpg share/locale/ar/LC_MESSAGES/parley.mo share/locale/bg/LC_MESSAGES/parley.mo share/locale/bs/LC_MESSAGES/parley.mo share/locale/ca/LC_MESSAGES/parley.mo share/locale/ca@valencia/LC_MESSAGES/parley.mo share/locale/cs/LC_MESSAGES/parley.mo share/locale/da/LC_MESSAGES/parley.mo share/locale/de/LC_MESSAGES/parley.mo share/locale/el/LC_MESSAGES/parley.mo share/locale/en_GB/LC_MESSAGES/parley.mo share/locale/eo/LC_MESSAGES/parley.mo share/locale/es/LC_MESSAGES/parley.mo share/locale/et/LC_MESSAGES/parley.mo share/locale/eu/LC_MESSAGES/parley.mo share/locale/fa/LC_MESSAGES/parley.mo share/locale/fi/LC_MESSAGES/parley.mo share/locale/fr/LC_MESSAGES/parley.mo share/locale/ga/LC_MESSAGES/parley.mo share/locale/gl/LC_MESSAGES/parley.mo share/locale/he/LC_MESSAGES/parley.mo share/locale/hi/LC_MESSAGES/parley.mo share/locale/hr/LC_MESSAGES/parley.mo share/locale/hu/LC_MESSAGES/parley.mo +share/locale/ia/LC_MESSAGES/parley.mo share/locale/is/LC_MESSAGES/parley.mo share/locale/it/LC_MESSAGES/parley.mo share/locale/ja/LC_MESSAGES/parley.mo share/locale/kk/LC_MESSAGES/parley.mo share/locale/km/LC_MESSAGES/parley.mo share/locale/lt/LC_MESSAGES/parley.mo share/locale/lv/LC_MESSAGES/parley.mo share/locale/ml/LC_MESSAGES/parley.mo share/locale/mr/LC_MESSAGES/parley.mo share/locale/nb/LC_MESSAGES/parley.mo share/locale/nds/LC_MESSAGES/parley.mo share/locale/nl/LC_MESSAGES/parley.mo share/locale/nn/LC_MESSAGES/parley.mo share/locale/pa/LC_MESSAGES/parley.mo share/locale/pl/LC_MESSAGES/parley.mo share/locale/pt/LC_MESSAGES/parley.mo share/locale/pt_BR/LC_MESSAGES/parley.mo share/locale/ro/LC_MESSAGES/parley.mo share/locale/ru/LC_MESSAGES/parley.mo share/locale/sk/LC_MESSAGES/parley.mo share/locale/sl/LC_MESSAGES/parley.mo share/locale/sv/LC_MESSAGES/parley.mo share/locale/tr/LC_MESSAGES/parley.mo share/locale/ug/LC_MESSAGES/parley.mo share/locale/uk/LC_MESSAGES/parley.mo share/locale/zh_CN/LC_MESSAGES/parley.mo share/locale/zh_TW/LC_MESSAGES/parley.mo share/metainfo/org.kde.parley.appdata.xml %%DATADIR%%/plugins/example.desktop %%DATADIR%%/plugins/example.py %%DATADIR%%/plugins/google_dictionary.desktop %%DATADIR%%/plugins/google_dictionary.py %%DATADIR%%/plugins/leo-dict.desktop %%DATADIR%%/plugins/leo-dict.py %%DATADIR%%/plugins/mwclient/LICENSE.md %%DATADIR%%/plugins/mwclient/README.rst %%DATADIR%%/plugins/mwclient/__init__.py %%DATADIR%%/plugins/mwclient/client.py %%DATADIR%%/plugins/mwclient/errors.py %%DATADIR%%/plugins/mwclient/ex.py %%DATADIR%%/plugins/mwclient/image.py %%DATADIR%%/plugins/mwclient/listing.py %%DATADIR%%/plugins/mwclient/page.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/__init__.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/__init__.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/douban.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/facebook.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/fitbit.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/linkedin.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/mailchimp.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/slack.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/weibo.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth1_auth.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth1_session.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth2_auth.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth2_session.py %%DATADIR%%/plugins/mwclient/six.LICENSE %%DATADIR%%/plugins/mwclient/six.README %%DATADIR%%/plugins/mwclient/six.py %%DATADIR%%/plugins/mwclient/sleep.py %%DATADIR%%/plugins/mwclient/util.py %%DATADIR%%/plugins/wiktionary_sound.desktop %%DATADIR%%/plugins/wiktionary_sound.py %%DATADIR%%/themes/bees_theme.desktop %%DATADIR%%/themes/bees_theme.svgz %%DATADIR%%/themes/bees_theme_preview.jpg %%DATADIR%%/themes/theme_reference.desktop %%DATADIR%%/themes/theme_reference.svgz %%DATADIR%%/themes/theme_reference_preview.jpg %%DATADIR%%/tips %%DATADIR%%/xslt/flashcards.xsl %%DATADIR%%/xslt/table.xsl Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 538648) +++ head/multimedia/dragon/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429685 -SHA256 (KDE/applications/20.04.1/dragon-20.04.1.tar.xz) = b2073f437884c671d8c6eec1e1d2e25ad108157fb25c6a029afceea080785aeb -SIZE (KDE/applications/20.04.1/dragon-20.04.1.tar.xz) = 1352004 +TIMESTAMP = 1591712731 +SHA256 (KDE/applications/20.04.2/dragon-20.04.2.tar.xz) = d89d07aa1abd73ad5d304cf3969ee1278cd4e0a0e040e2135a0aaf6bd88569cc +SIZE (KDE/applications/20.04.2/dragon-20.04.2.tar.xz) = 1351692 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 538648) +++ head/multimedia/kamoso/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429685 -SHA256 (KDE/applications/20.04.1/kamoso-20.04.1.tar.xz) = 5e397cf9a0bd7d5414a8976a2959ac1ebf310d3a2874b3469bd1c959c2908730 -SIZE (KDE/applications/20.04.1/kamoso-20.04.1.tar.xz) = 202408 +TIMESTAMP = 1591712732 +SHA256 (KDE/applications/20.04.2/kamoso-20.04.2.tar.xz) = bb828a92806dff12f0a5aea61a1af20c141304014a17ba8dc5d5a6b37aab45a5 +SIZE (KDE/applications/20.04.2/kamoso-20.04.2.tar.xz) = 202680 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 538648) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429687 -SHA256 (KDE/applications/20.04.1/ffmpegthumbs-20.04.1.tar.xz) = acbe27fc497ad7839bad819a21b131ba42117d30624d97f3fc050635c607859e -SIZE (KDE/applications/20.04.1/ffmpegthumbs-20.04.1.tar.xz) = 27372 +TIMESTAMP = 1591712733 +SHA256 (KDE/applications/20.04.2/ffmpegthumbs-20.04.2.tar.xz) = 24d5fd77abc5481318dd9b301badc9175dcd1ceb15801b4576ab9b4223019aff +SIZE (KDE/applications/20.04.2/ffmpegthumbs-20.04.2.tar.xz) = 27564 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 538648) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 538649) @@ -1,31 +1,32 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg share/kservices5/ffmpegthumbs.desktop share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo share/locale/ca@valencia/LC_MESSAGES/ffmpegthumbs.mo share/locale/cs/LC_MESSAGES/ffmpegthumbs.mo share/locale/da/LC_MESSAGES/ffmpegthumbs.mo share/locale/de/LC_MESSAGES/ffmpegthumbs.mo share/locale/el/LC_MESSAGES/ffmpegthumbs.mo share/locale/en_GB/LC_MESSAGES/ffmpegthumbs.mo share/locale/es/LC_MESSAGES/ffmpegthumbs.mo share/locale/eu/LC_MESSAGES/ffmpegthumbs.mo share/locale/et/LC_MESSAGES/ffmpegthumbs.mo share/locale/fi/LC_MESSAGES/ffmpegthumbs.mo share/locale/fr/LC_MESSAGES/ffmpegthumbs.mo share/locale/gl/LC_MESSAGES/ffmpegthumbs.mo share/locale/it/LC_MESSAGES/ffmpegthumbs.mo share/locale/ja/LC_MESSAGES/ffmpegthumbs.mo share/locale/ko/LC_MESSAGES/ffmpegthumbs.mo share/locale/lt/LC_MESSAGES/ffmpegthumbs.mo share/locale/nl/LC_MESSAGES/ffmpegthumbs.mo +share/locale/nn/LC_MESSAGES/ffmpegthumbs.mo share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt_BR/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/LC_MESSAGES/ffmpegthumbs.mo share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_CN/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo share/metainfo/org.kde.ffmpegthumbs.metainfo.xml Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 538648) +++ head/multimedia/kdenlive/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429688 -SHA256 (KDE/applications/20.04.1/kdenlive-20.04.1.tar.xz) = a8957cace200119cfdecc62058f1f2d7e30a314bf5485090b06728ec385bc3d5 -SIZE (KDE/applications/20.04.1/kdenlive-20.04.1.tar.xz) = 11278316 +TIMESTAMP = 1591847926 +SHA256 (KDE/applications/20.04.2/kdenlive-20.04.2.tar.xz) = 17539ba44397aeff19cda6c767741212f3e7e4ecb852b3d35787c1aca3d53ca6 +SIZE (KDE/applications/20.04.2/kdenlive-20.04.2.tar.xz) = 11289748 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 538648) +++ head/net/akonadi-calendar/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429722 -SHA256 (KDE/applications/20.04.1/akonadi-calendar-20.04.1.tar.xz) = 4b2c5b77b8f7e20a62e4dda534d4a7f4d3b9f1b1d72ae7c57a96c9d13c3607d7 -SIZE (KDE/applications/20.04.1/akonadi-calendar-20.04.1.tar.xz) = 331508 +TIMESTAMP = 1591712767 +SHA256 (KDE/applications/20.04.2/akonadi-calendar-20.04.2.tar.xz) = 68559234d651d9902249e76b14c799bb0401950952837da1fb1abc6a588d883b +SIZE (KDE/applications/20.04.2/akonadi-calendar-20.04.2.tar.xz) = 331544 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 538648) +++ head/net/akonadi-contacts/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429722 -SHA256 (KDE/applications/20.04.1/akonadi-contacts-20.04.1.tar.xz) = 917a7656a745e3cad94ec6470040b6fb384a14bcf9b571e82d3a256ab37aef45 -SIZE (KDE/applications/20.04.1/akonadi-contacts-20.04.1.tar.xz) = 393640 +TIMESTAMP = 1591712768 +SHA256 (KDE/applications/20.04.2/akonadi-contacts-20.04.2.tar.xz) = 9bffeec514cb798e6764ef70c6eb05c524fe84ee6298b3c341c32a8a5a4cdd19 +SIZE (KDE/applications/20.04.2/akonadi-contacts-20.04.2.tar.xz) = 393796 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 538648) +++ head/net/akonadi-mime/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429723 -SHA256 (KDE/applications/20.04.1/akonadi-mime-20.04.1.tar.xz) = 1cbdb6d560959e4cb5660b3d5fddbe1dd9812af104e0b8d25142fca1a239a7f1 -SIZE (KDE/applications/20.04.1/akonadi-mime-20.04.1.tar.xz) = 132060 +TIMESTAMP = 1591712769 +SHA256 (KDE/applications/20.04.2/akonadi-mime-20.04.2.tar.xz) = cc13e303579875d4b970bdb90130bc25a989f68ba8959ddc2334c29c46daf322 +SIZE (KDE/applications/20.04.2/akonadi-mime-20.04.2.tar.xz) = 132228 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 538648) +++ head/net/akonadi-notes/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429724 -SHA256 (KDE/applications/20.04.1/akonadi-notes-20.04.1.tar.xz) = 02c2c68ccd016dff57346cdb2e25237ae64d283c544e77d66252d62ce748c213 -SIZE (KDE/applications/20.04.1/akonadi-notes-20.04.1.tar.xz) = 24488 +TIMESTAMP = 1591712770 +SHA256 (KDE/applications/20.04.2/akonadi-notes-20.04.2.tar.xz) = 5060f1c0200a4d69d3789aa623626500ba2b41d663dac0e96c56b53e26d475ea +SIZE (KDE/applications/20.04.2/akonadi-notes-20.04.2.tar.xz) = 24520 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 538648) +++ head/net/akonadi-search/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429725 -SHA256 (KDE/applications/20.04.1/akonadi-search-20.04.1.tar.xz) = a0b49db300507e3aae406fb786eef2e6b0847776eaf0dfec71ff11223c21b7c0 -SIZE (KDE/applications/20.04.1/akonadi-search-20.04.1.tar.xz) = 83168 +TIMESTAMP = 1591712770 +SHA256 (KDE/applications/20.04.2/akonadi-search-20.04.2.tar.xz) = 936beec7ac4a30b7d47ffffc1c3a491cacac190e8dd6d9fd856ebb22cca385d4 +SIZE (KDE/applications/20.04.2/akonadi-search-20.04.2.tar.xz) = 83320 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 538648) +++ head/net/calendarsupport/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429726 -SHA256 (KDE/applications/20.04.1/calendarsupport-20.04.1.tar.xz) = 7e77c354a1bc634cf31f728315ea7f0b85bd112d7dfd49786701118e8f8663fb -SIZE (KDE/applications/20.04.1/calendarsupport-20.04.1.tar.xz) = 651560 +TIMESTAMP = 1591712771 +SHA256 (KDE/applications/20.04.2/calendarsupport-20.04.2.tar.xz) = a0f29370c61b60d62739a9104e418a99bd4ba4e5f622a810bfaa479370f30994 +SIZE (KDE/applications/20.04.2/calendarsupport-20.04.2.tar.xz) = 651552 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 538648) +++ head/net/eventviews/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429727 -SHA256 (KDE/applications/20.04.1/eventviews-20.04.1.tar.xz) = e3b02c47ec39312abd493e54b86e9cc17f9e3f08def30fff7cf5dc974bba296a -SIZE (KDE/applications/20.04.1/eventviews-20.04.1.tar.xz) = 443928 +TIMESTAMP = 1591712772 +SHA256 (KDE/applications/20.04.2/eventviews-20.04.2.tar.xz) = 44306f7c20aef2c168d7ed6ca8e3919e5be03dee2fec9e26c6461ca9b6d8c70f +SIZE (KDE/applications/20.04.2/eventviews-20.04.2.tar.xz) = 443864 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 538648) +++ head/net/incidenceeditor/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429728 -SHA256 (KDE/applications/20.04.1/incidenceeditor-20.04.1.tar.xz) = dec62f0aaa304e9e67589ed49d96e5c834e18b722cd6aea596775760382df7f6 -SIZE (KDE/applications/20.04.1/incidenceeditor-20.04.1.tar.xz) = 550032 +TIMESTAMP = 1591712773 +SHA256 (KDE/applications/20.04.2/incidenceeditor-20.04.2.tar.xz) = 4efd249e05430bed934af58f134fe00290eb3d426ea5ab2a4e3226c8f37fac92 +SIZE (KDE/applications/20.04.2/incidenceeditor-20.04.2.tar.xz) = 550048 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 538648) +++ head/net/kalarmcal/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429728 -SHA256 (KDE/applications/20.04.1/kalarmcal-20.04.1.tar.xz) = 7121dc985241b84fdebb7d45a28c7c993ff51319091887f115f4b2ff3fa90b3c -SIZE (KDE/applications/20.04.1/kalarmcal-20.04.1.tar.xz) = 574452 +TIMESTAMP = 1591712774 +SHA256 (KDE/applications/20.04.2/kalarmcal-20.04.2.tar.xz) = 0bdedb73c06f43eab166ed01270c845e7919e185d30e86f33fb4aec507bcf61f +SIZE (KDE/applications/20.04.2/kalarmcal-20.04.2.tar.xz) = 574456 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 538648) +++ head/net/kblog/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429729 -SHA256 (KDE/applications/20.04.1/kblog-20.04.1.tar.xz) = 13ee4a28b5265436b7a72b737a7f1a0713a1c7f93afa6df02e5f73547457235e -SIZE (KDE/applications/20.04.1/kblog-20.04.1.tar.xz) = 72864 +TIMESTAMP = 1591712774 +SHA256 (KDE/applications/20.04.2/kblog-20.04.2.tar.xz) = 345fa87ddeffd237d62d16c2fbb4974883e3592e368bb087393dbf1af7c11af1 +SIZE (KDE/applications/20.04.2/kblog-20.04.2.tar.xz) = 72860 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 538648) +++ head/net/kcalutils/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429730 -SHA256 (KDE/applications/20.04.1/kcalutils-20.04.1.tar.xz) = 06f5b8a339b2f0c4fe7884e41476960fff03896769a5cd6dc01d3fb81147466c -SIZE (KDE/applications/20.04.1/kcalutils-20.04.1.tar.xz) = 320892 +TIMESTAMP = 1591712775 +SHA256 (KDE/applications/20.04.2/kcalutils-20.04.2.tar.xz) = c5ebbb49f7caf16f613bf0c41191caaf04757b648ce7fa3f93bc08882e9d4315 +SIZE (KDE/applications/20.04.2/kcalutils-20.04.2.tar.xz) = 320976 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 538648) +++ head/net/kdav/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429731 -SHA256 (KDE/applications/20.04.1/kdav-20.04.1.tar.xz) = b3d37c335d1df279bb91c2218362a859a117518e9f7a7fc08dde8c4e1b875e83 -SIZE (KDE/applications/20.04.1/kdav-20.04.1.tar.xz) = 58340 +TIMESTAMP = 1591712776 +SHA256 (KDE/applications/20.04.2/kdav-20.04.2.tar.xz) = 06511f4573a0f82c836e34323083c736705a37da7259ad45319aff653b9ce75e +SIZE (KDE/applications/20.04.2/kdav-20.04.2.tar.xz) = 58300 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 538648) +++ head/net/kdenetwork-filesharing/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429732 -SHA256 (KDE/applications/20.04.1/kdenetwork-filesharing-20.04.1.tar.xz) = 8339c13b4f2509deadf86755fa8ab73615d5cb7808afc357bd46e3bb95a599af -SIZE (KDE/applications/20.04.1/kdenetwork-filesharing-20.04.1.tar.xz) = 320340 +TIMESTAMP = 1591712777 +SHA256 (KDE/applications/20.04.2/kdenetwork-filesharing-20.04.2.tar.xz) = ff43db16a065211510ccfe39731eb5076073dade92550539d59a5769e0c784a6 +SIZE (KDE/applications/20.04.2/kdenetwork-filesharing-20.04.2.tar.xz) = 320524 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 538648) +++ head/net/kget/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429733 -SHA256 (KDE/applications/20.04.1/kget-20.04.1.tar.xz) = b5380270516d266feb4b8a7d84efa91257440f67f033b822c21fbdc8382a9deb -SIZE (KDE/applications/20.04.1/kget-20.04.1.tar.xz) = 5238960 +TIMESTAMP = 1591712778 +SHA256 (KDE/applications/20.04.2/kget-20.04.2.tar.xz) = a4ec53eaac60c40b57573a8826503c78c76ea4c87cc71d996e105294846b80ca +SIZE (KDE/applications/20.04.2/kget-20.04.2.tar.xz) = 5238908 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 538648) +++ head/net/kidentitymanagement/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429734 -SHA256 (KDE/applications/20.04.1/kidentitymanagement-20.04.1.tar.xz) = f9c14e57349801ee697071f5d931b47b9d5b0ab62116aff7733f640ad34d973a -SIZE (KDE/applications/20.04.1/kidentitymanagement-20.04.1.tar.xz) = 149224 +TIMESTAMP = 1591712779 +SHA256 (KDE/applications/20.04.2/kidentitymanagement-20.04.2.tar.xz) = 33dbb5fef72182da7fb70207c14ee9012e62e3902247064b0f23145bdbd86c04 +SIZE (KDE/applications/20.04.2/kidentitymanagement-20.04.2.tar.xz) = 149572 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 538648) +++ head/net/kimap/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429735 -SHA256 (KDE/applications/20.04.1/kimap-20.04.1.tar.xz) = aaea2cb82212e79c2218cd01b5d9db623ae9d34c8876e15db055a48bbfe342f4 -SIZE (KDE/applications/20.04.1/kimap-20.04.1.tar.xz) = 119700 +TIMESTAMP = 1591712780 +SHA256 (KDE/applications/20.04.2/kimap-20.04.2.tar.xz) = 02073ffe32a2c671813eba7d72f7516613dc3eb933a0db9c4a69cbf0879a6b9c +SIZE (KDE/applications/20.04.2/kimap-20.04.2.tar.xz) = 119744 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 538648) +++ head/net/kitinerary/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429736 -SHA256 (KDE/applications/20.04.1/kitinerary-20.04.1.tar.xz) = ba3a61e482ce5a148b5b403198e7ad67704c8a6cc7ca4fce58ddef8c66f4b4cf -SIZE (KDE/applications/20.04.1/kitinerary-20.04.1.tar.xz) = 1279460 +TIMESTAMP = 1591712780 +SHA256 (KDE/applications/20.04.2/kitinerary-20.04.2.tar.xz) = 72b118a6e04a0645a0caf2c9166e41ff8978eec95980304bd5f5d9de2068f6bf +SIZE (KDE/applications/20.04.2/kitinerary-20.04.2.tar.xz) = 1282012 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 538648) +++ head/net/kldap/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429737 -SHA256 (KDE/applications/20.04.1/kldap-20.04.1.tar.xz) = d92b07339cbd01efd53edf102d0b17065fa6f95601650b1c065d336f50b91472 -SIZE (KDE/applications/20.04.1/kldap-20.04.1.tar.xz) = 148996 +TIMESTAMP = 1591712781 +SHA256 (KDE/applications/20.04.2/kldap-20.04.2.tar.xz) = 622faaf235f55def8b1a895f35a7846a67ca8b5c9b616afa75dc4bba1ec2d0bc +SIZE (KDE/applications/20.04.2/kldap-20.04.2.tar.xz) = 149168 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 538648) +++ head/net/kmailtransport/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429737 -SHA256 (KDE/applications/20.04.1/kmailtransport-20.04.1.tar.xz) = 75abe8cd02c628950906f979fe29aa23659afcd770e91442750ed3dfffa398eb -SIZE (KDE/applications/20.04.1/kmailtransport-20.04.1.tar.xz) = 166368 +TIMESTAMP = 1591712782 +SHA256 (KDE/applications/20.04.2/kmailtransport-20.04.2.tar.xz) = 51cc5c8f12299b0263c0e9f78795d75b4b4eaa0b5cb1793ac4bf3854bda89deb +SIZE (KDE/applications/20.04.2/kmailtransport-20.04.2.tar.xz) = 166336 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 538648) +++ head/net/kmbox/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429738 -SHA256 (KDE/applications/20.04.1/kmbox-20.04.1.tar.xz) = 2ccfc0d2c12acedf72713ee31c8a7b586b95e4826434a333ab3478b2d1f0960d -SIZE (KDE/applications/20.04.1/kmbox-20.04.1.tar.xz) = 24680 +TIMESTAMP = 1591712783 +SHA256 (KDE/applications/20.04.2/kmbox-20.04.2.tar.xz) = c3c55a3d9f8d203545a0a1c28ef81e487f24eb30e72e476fe5e42eeb0817c481 +SIZE (KDE/applications/20.04.2/kmbox-20.04.2.tar.xz) = 24684 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 538648) +++ head/net/kmime/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429739 -SHA256 (KDE/applications/20.04.1/kmime-20.04.1.tar.xz) = 59d0ec6905c7a7228f7837c2e498052e84484954e1ea42b1c720f81cb2eb6db6 -SIZE (KDE/applications/20.04.1/kmime-20.04.1.tar.xz) = 147916 +TIMESTAMP = 1591712784 +SHA256 (KDE/applications/20.04.2/kmime-20.04.2.tar.xz) = 5ac4c9fe779b2652c2afb07b5771fd3c498599dec2d5cbc66756106a05cca9c5 +SIZE (KDE/applications/20.04.2/kmime-20.04.2.tar.xz) = 148596 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 538648) +++ head/net/kontactinterface/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429740 -SHA256 (KDE/applications/20.04.1/kontactinterface-20.04.1.tar.xz) = 72745cf857ab6cecef331582ba8c806fa386d03b99a44aa30b6bed2979a83868 -SIZE (KDE/applications/20.04.1/kontactinterface-20.04.1.tar.xz) = 33048 +TIMESTAMP = 1591712784 +SHA256 (KDE/applications/20.04.2/kontactinterface-20.04.2.tar.xz) = 96429c896b9b084d96e9703bd5961a8288e1745744ee27cd31440d81edff08cc +SIZE (KDE/applications/20.04.2/kontactinterface-20.04.2.tar.xz) = 33056 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 538648) +++ head/net/kpimtextedit/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429741 -SHA256 (KDE/applications/20.04.1/kpimtextedit-20.04.1.tar.xz) = 9e97bec1aedfa40da74ac561a5d0d22d5e4512e71a97c339e8831540b626cd48 -SIZE (KDE/applications/20.04.1/kpimtextedit-20.04.1.tar.xz) = 178520 +TIMESTAMP = 1591712785 +SHA256 (KDE/applications/20.04.2/kpimtextedit-20.04.2.tar.xz) = 02e15815d4bd9320b097abac2da7a153bbc73b056bf136df05ed9d44edd927de +SIZE (KDE/applications/20.04.2/kpimtextedit-20.04.2.tar.xz) = 182096 Index: head/net/kpimtextedit/pkg-plist =================================================================== --- head/net/kpimtextedit/pkg-plist (revision 538648) +++ head/net/kpimtextedit/pkg-plist (revision 538649) @@ -1,115 +1,117 @@ -share/qlogging-categories5/kpimtextedit.categories +include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractMarkupBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractTextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/EditorUtil include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonUnicodeTab include/KF5/KPIMTextEdit/KPIMTextEdit/MarkupDirector include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditFindBar include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextMarkupBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextSyntaxSpellCheckingHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposer include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerActions include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer include/KF5/KPIMTextEdit/KPIMTextEdit/SelectSpecialCharDialog include/KF5/KPIMTextEdit/KPIMTextEdit/SlideContainer include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditFindBarBase include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditorCompleter include/KF5/KPIMTextEdit/KPIMTextEdit/TextGotoLineWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextHTMLBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeech include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechActions include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextUtils +include/KF5/KPIMTextEdit/kpimtextedit/abstractmarkupbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/abstracttexttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/editorutil.h include/KF5/KPIMTextEdit/kpimtextedit/emoticonunicodetab.h include/KF5/KPIMTextEdit/kpimtextedit/kpimtextedit_export.h include/KF5/KPIMTextEdit/kpimtextedit/markupdirector.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditfindbar.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/plaintextmarkupbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/plaintextsyntaxspellcheckinghighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeractions.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/selectspecialchardialog.h include/KF5/KPIMTextEdit/kpimtextedit/slidecontainer.h include/KF5/KPIMTextEdit/kpimtextedit/texteditfindbarbase.h include/KF5/KPIMTextEdit/kpimtextedit/texteditorcompleter.h include/KF5/KPIMTextEdit/kpimtextedit/textgotolinewidget.h include/KF5/KPIMTextEdit/kpimtextedit/texthtmlbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeech.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechactions.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechwidget.h include/KF5/KPIMTextEdit/kpimtextedit/textutils.h include/KF5/kpimtextedit_version.h lib/cmake/KF5PimTextEdit/KF5PimTextEditConfig.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditConfigVersion.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets.cmake lib/libKF5PimTextEdit.so lib/libKF5PimTextEdit.so.5 lib/libKF5PimTextEdit.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KPIMTextEdit.pri %%QT_PLUGINDIR%%/designer/kpimtexteditwidgets.so share/locale/ar/LC_MESSAGES/libkpimtextedit.mo share/locale/bs/LC_MESSAGES/libkpimtextedit.mo share/locale/ca/LC_MESSAGES/libkpimtextedit.mo share/locale/ca@valencia/LC_MESSAGES/libkpimtextedit.mo share/locale/cs/LC_MESSAGES/libkpimtextedit.mo share/locale/da/LC_MESSAGES/libkpimtextedit.mo share/locale/de/LC_MESSAGES/libkpimtextedit.mo share/locale/el/LC_MESSAGES/libkpimtextedit.mo share/locale/en_GB/LC_MESSAGES/libkpimtextedit.mo share/locale/eo/LC_MESSAGES/libkpimtextedit.mo share/locale/es/LC_MESSAGES/libkpimtextedit.mo share/locale/et/LC_MESSAGES/libkpimtextedit.mo share/locale/fi/LC_MESSAGES/libkpimtextedit.mo share/locale/fr/LC_MESSAGES/libkpimtextedit.mo share/locale/ga/LC_MESSAGES/libkpimtextedit.mo share/locale/gl/LC_MESSAGES/libkpimtextedit.mo share/locale/hu/LC_MESSAGES/libkpimtextedit.mo share/locale/ia/LC_MESSAGES/libkpimtextedit.mo share/locale/it/LC_MESSAGES/libkpimtextedit.mo share/locale/ja/LC_MESSAGES/libkpimtextedit.mo share/locale/kk/LC_MESSAGES/libkpimtextedit.mo share/locale/km/LC_MESSAGES/libkpimtextedit.mo share/locale/ko/LC_MESSAGES/libkpimtextedit.mo share/locale/lt/LC_MESSAGES/libkpimtextedit.mo share/locale/lv/LC_MESSAGES/libkpimtextedit.mo share/locale/mr/LC_MESSAGES/libkpimtextedit.mo share/locale/nb/LC_MESSAGES/libkpimtextedit.mo share/locale/nds/LC_MESSAGES/libkpimtextedit.mo share/locale/nl/LC_MESSAGES/libkpimtextedit.mo share/locale/nn/LC_MESSAGES/libkpimtextedit.mo share/locale/pa/LC_MESSAGES/libkpimtextedit.mo share/locale/pl/LC_MESSAGES/libkpimtextedit.mo share/locale/pt/LC_MESSAGES/libkpimtextedit.mo share/locale/pt_BR/LC_MESSAGES/libkpimtextedit.mo share/locale/ro/LC_MESSAGES/libkpimtextedit.mo share/locale/ru/LC_MESSAGES/libkpimtextedit.mo share/locale/sk/LC_MESSAGES/libkpimtextedit.mo share/locale/sl/LC_MESSAGES/libkpimtextedit.mo share/locale/sr/LC_MESSAGES/libkpimtextedit.mo share/locale/sv/LC_MESSAGES/libkpimtextedit.mo share/locale/tr/LC_MESSAGES/libkpimtextedit.mo share/locale/ug/LC_MESSAGES/libkpimtextedit.mo share/locale/uk/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_CN/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_TW/LC_MESSAGES/libkpimtextedit.mo +share/qlogging-categories5/kpimtextedit.categories Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 538648) +++ head/net/krdc/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429742 -SHA256 (KDE/applications/20.04.1/krdc-20.04.1.tar.xz) = 39f14c577c5f23c3b223ed3200743374d81f4e7dd2fa88c5be9d656dc71ce2c2 -SIZE (KDE/applications/20.04.1/krdc-20.04.1.tar.xz) = 1425064 +TIMESTAMP = 1591712786 +SHA256 (KDE/applications/20.04.2/krdc-20.04.2.tar.xz) = a15fce663d7b7e9cd862d5ee75f05f2b2dddc86c02d4a6027e21542b7964f6b1 +SIZE (KDE/applications/20.04.2/krdc-20.04.2.tar.xz) = 1425020 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 538648) +++ head/net/krfb/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429742 -SHA256 (KDE/applications/20.04.1/krfb-20.04.1.tar.xz) = 33943e5529a9ad436562790e56c91054475986fbfb8ccfbf98af5e8990955124 -SIZE (KDE/applications/20.04.1/krfb-20.04.1.tar.xz) = 1276728 +TIMESTAMP = 1591712787 +SHA256 (KDE/applications/20.04.2/krfb-20.04.2.tar.xz) = 81fe260039c7c86a455e2f6e7389ce497070ea176706136739e7c3a23f325b44 +SIZE (KDE/applications/20.04.2/krfb-20.04.2.tar.xz) = 1276828 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 538648) +++ head/net/ksmtp/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429743 -SHA256 (KDE/applications/20.04.1/ksmtp-20.04.1.tar.xz) = 1daebe85fddbab20a6891d6fea6d57fd6b6314f665aac81b1eac81ba2254caf7 -SIZE (KDE/applications/20.04.1/ksmtp-20.04.1.tar.xz) = 41284 +TIMESTAMP = 1591712788 +SHA256 (KDE/applications/20.04.2/ksmtp-20.04.2.tar.xz) = b759236021688236257ecfef16d443030414332c3d1a8f133f482c7d57399162 +SIZE (KDE/applications/20.04.2/ksmtp-20.04.2.tar.xz) = 41556 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 538648) +++ head/net/ktnef/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429744 -SHA256 (KDE/applications/20.04.1/ktnef-20.04.1.tar.xz) = 29c8aba942aaf1f099b1e2f7bda9000d124aa710ac04e6bd295a4dc1c5b8c532 -SIZE (KDE/applications/20.04.1/ktnef-20.04.1.tar.xz) = 299916 +TIMESTAMP = 1591712789 +SHA256 (KDE/applications/20.04.2/ktnef-20.04.2.tar.xz) = 799a24e826069cd2ecbc752c75605df9ab2d71c9a504c6c8ea64df25631a0248 +SIZE (KDE/applications/20.04.2/ktnef-20.04.2.tar.xz) = 299820 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 538648) +++ head/net/libgravatar/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429745 -SHA256 (KDE/applications/20.04.1/libgravatar-20.04.1.tar.xz) = 22275231f63c625fa60ff8ddaf1cd52f2fa03ccea7c010a6231b883c45640125 -SIZE (KDE/applications/20.04.1/libgravatar-20.04.1.tar.xz) = 31428 +TIMESTAMP = 1591712789 +SHA256 (KDE/applications/20.04.2/libgravatar-20.04.2.tar.xz) = 58c87e5a158604f0c37c31f328ebb0fd1e83995ab888ca55483ced0a0d42737d +SIZE (KDE/applications/20.04.2/libgravatar-20.04.2.tar.xz) = 31452 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 538648) +++ head/net/libkgapi/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429746 -SHA256 (KDE/applications/20.04.1/libkgapi-20.04.1.tar.xz) = c4cf6ea348fc71ae4e7f399a062dd609a3b1d7ea34b87cde6067f99db12b6d5b -SIZE (KDE/applications/20.04.1/libkgapi-20.04.1.tar.xz) = 239964 +TIMESTAMP = 1591712790 +SHA256 (KDE/applications/20.04.2/libkgapi-20.04.2.tar.xz) = ecb87422fbf0ed711da9cf947fffca6dd09572a5cf01400bafd3f38e05141470 +SIZE (KDE/applications/20.04.2/libkgapi-20.04.2.tar.xz) = 239920 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 538648) +++ head/net/libksieve/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429747 -SHA256 (KDE/applications/20.04.1/libksieve-20.04.1.tar.xz) = 6c80cb0d584fb4d18bb6c31f3589d7929212b90058efcb4b5e8feef2f8b46212 -SIZE (KDE/applications/20.04.1/libksieve-20.04.1.tar.xz) = 554840 +TIMESTAMP = 1591712791 +SHA256 (KDE/applications/20.04.2/libksieve-20.04.2.tar.xz) = bbfed5095af2eacf9b270699879547202be9e21a0f5ff8d3bf8ed082a49a1959 +SIZE (KDE/applications/20.04.2/libksieve-20.04.2.tar.xz) = 555456 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 538648) +++ head/net/mailcommon/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429748 -SHA256 (KDE/applications/20.04.1/mailcommon-20.04.1.tar.xz) = 547421c0c3a8e91495dafad531d0ff9e646365974dc130f3b7ebd0d0ff293360 -SIZE (KDE/applications/20.04.1/mailcommon-20.04.1.tar.xz) = 707400 +TIMESTAMP = 1591712792 +SHA256 (KDE/applications/20.04.2/mailcommon-20.04.2.tar.xz) = 544c1a3efff3660bb6ea375a0509dd88d6e46cb6c3c6159592e2c3e6c96bc0d0 +SIZE (KDE/applications/20.04.2/mailcommon-20.04.2.tar.xz) = 707424 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 538648) +++ head/net/mailimporter/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429748 -SHA256 (KDE/applications/20.04.1/mailimporter-20.04.1.tar.xz) = 4654e9e0c211f6eeb71e1e43e4d05b514a0890990a622bb707f137a801bf49a4 -SIZE (KDE/applications/20.04.1/mailimporter-20.04.1.tar.xz) = 540412 +TIMESTAMP = 1591712793 +SHA256 (KDE/applications/20.04.2/mailimporter-20.04.2.tar.xz) = 55452e6b1da0873a9163956cebf7291142770b36db57ec6323b2019e0bcc514f +SIZE (KDE/applications/20.04.2/mailimporter-20.04.2.tar.xz) = 540364 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 538648) +++ head/net/messagelib/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429749 -SHA256 (KDE/applications/20.04.1/messagelib-20.04.1.tar.xz) = 6142a47750b2aa8ef68b27855c9f78bbce45a5aaa2c4c49214fac2254c22780f -SIZE (KDE/applications/20.04.1/messagelib-20.04.1.tar.xz) = 10483264 +TIMESTAMP = 1591712794 +SHA256 (KDE/applications/20.04.2/messagelib-20.04.2.tar.xz) = 8d3401f9d5fd65fe6dcff67459eb7aaea996d770a4889b2f4b2b542eeed3ce5e +SIZE (KDE/applications/20.04.2/messagelib-20.04.2.tar.xz) = 10516720 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 538648) +++ head/net/pimcommon/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429750 -SHA256 (KDE/applications/20.04.1/pimcommon-20.04.1.tar.xz) = f2640bf49d72ad894be28de4545804f4de27e79dbe45e236959e47c2cbc68e96 -SIZE (KDE/applications/20.04.1/pimcommon-20.04.1.tar.xz) = 294392 +TIMESTAMP = 1591712795 +SHA256 (KDE/applications/20.04.2/pimcommon-20.04.2.tar.xz) = cc9aff8c38a9ea921645bab06409297fe2d930bfa9880dc12af626ce239bda3f +SIZE (KDE/applications/20.04.2/pimcommon-20.04.2.tar.xz) = 294416 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 538648) +++ head/net/zeroconf-ioslave/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429751 -SHA256 (KDE/applications/20.04.1/zeroconf-ioslave-20.04.1.tar.xz) = 0cf51d8efdad5210acff3ba4f351b71a02a9d0d7284eb8e2a55a5fc2bc2c93e1 -SIZE (KDE/applications/20.04.1/zeroconf-ioslave-20.04.1.tar.xz) = 42472 +TIMESTAMP = 1591712795 +SHA256 (KDE/applications/20.04.2/zeroconf-ioslave-20.04.2.tar.xz) = aa065515d5a3469fb2458d71b7379d6058ca12170d52893c449635c9a4cac0ef +SIZE (KDE/applications/20.04.2/zeroconf-ioslave-20.04.2.tar.xz) = 42516 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 538648) +++ head/net-im/kaccounts-integration/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429688 -SHA256 (KDE/applications/20.04.1/kaccounts-integration-20.04.1.tar.xz) = a5c05c8cd1f29961992e058283ccc885395715b75666d7363ff449aa8586981f -SIZE (KDE/applications/20.04.1/kaccounts-integration-20.04.1.tar.xz) = 65804 +TIMESTAMP = 1591712735 +SHA256 (KDE/applications/20.04.2/kaccounts-integration-20.04.2.tar.xz) = d97e2e0fe7d6327e89bafe6fce290291c7a9bc4ce1ddf4606a4e29430d3241be +SIZE (KDE/applications/20.04.2/kaccounts-integration-20.04.2.tar.xz) = 65944 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 538648) +++ head/net-im/kaccounts-providers/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429689 -SHA256 (KDE/applications/20.04.1/kaccounts-providers-20.04.1.tar.xz) = 54cee10a789568d55882a719ea5c0ed61fec09025bc4643abad81234f20e456b -SIZE (KDE/applications/20.04.1/kaccounts-providers-20.04.1.tar.xz) = 35796 +TIMESTAMP = 1591712735 +SHA256 (KDE/applications/20.04.2/kaccounts-providers-20.04.2.tar.xz) = 55f424dba565ea71aa653e0361afe8c91cb562f53da21b367c2e975ea0287197 +SIZE (KDE/applications/20.04.2/kaccounts-providers-20.04.2.tar.xz) = 35884 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 538648) +++ head/net-im/kopete/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429690 -SHA256 (KDE/applications/20.04.1/kopete-20.04.1.tar.xz) = 3ea0b53f644a5aa31f720b462d58e3eecf37aa9a381a02dc2c02513f618a2f91 -SIZE (KDE/applications/20.04.1/kopete-20.04.1.tar.xz) = 9371776 +TIMESTAMP = 1591712737 +SHA256 (KDE/applications/20.04.2/kopete-20.04.2.tar.xz) = cfdf0381c789059515dd3390e4d9d86effe3dad485270d6da8a225e833a6753b +SIZE (KDE/applications/20.04.2/kopete-20.04.2.tar.xz) = 9372040 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 538648) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429691 -SHA256 (KDE/applications/20.04.1/ktp-accounts-kcm-20.04.1.tar.xz) = 0783a0478709b42a6183dda95d5a8abcdc079b54d497bcfe3f7f862b80c66559 -SIZE (KDE/applications/20.04.1/ktp-accounts-kcm-20.04.1.tar.xz) = 262188 +TIMESTAMP = 1591712737 +SHA256 (KDE/applications/20.04.2/ktp-accounts-kcm-20.04.2.tar.xz) = 821e5094938fd83f5e3076192c139d48242230d9b4705233dc86fb58e56729fb +SIZE (KDE/applications/20.04.2/ktp-accounts-kcm-20.04.2.tar.xz) = 262132 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 538648) +++ head/net-im/ktp-approver/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429692 -SHA256 (KDE/applications/20.04.1/ktp-approver-20.04.1.tar.xz) = 6c7db7142ea1d93eb5f85102caef846838af01804af9ebcf00f92536a068bb8d -SIZE (KDE/applications/20.04.1/ktp-approver-20.04.1.tar.xz) = 37296 +TIMESTAMP = 1591712738 +SHA256 (KDE/applications/20.04.2/ktp-approver-20.04.2.tar.xz) = fad2bc7ecb15db06872ee0da14e4ce597d5cfd4db8fffa401cc431816944a0d5 +SIZE (KDE/applications/20.04.2/ktp-approver-20.04.2.tar.xz) = 37280 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 538648) +++ head/net-im/ktp-auth-handler/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429693 -SHA256 (KDE/applications/20.04.1/ktp-auth-handler-20.04.1.tar.xz) = 1aeef044bfa5d05b62323a2f04a75000376540a23cd24401a9d192f047b3c8f0 -SIZE (KDE/applications/20.04.1/ktp-auth-handler-20.04.1.tar.xz) = 46348 +TIMESTAMP = 1591712739 +SHA256 (KDE/applications/20.04.2/ktp-auth-handler-20.04.2.tar.xz) = 558e89acd42454dba46e1666d119a829effc1beb5244353c40d3985c3c1575e2 +SIZE (KDE/applications/20.04.2/ktp-auth-handler-20.04.2.tar.xz) = 46312 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 538648) +++ head/net-im/ktp-call-ui/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429714 -SHA256 (KDE/applications/20.04.1/ktp-call-ui-20.04.1.tar.xz) = ecf694205bde02e9abc06ada604d4b02eb6bcc4274746b001481ed06f14f6b12 -SIZE (KDE/applications/20.04.1/ktp-call-ui-20.04.1.tar.xz) = 97152 +TIMESTAMP = 1591712760 +SHA256 (KDE/applications/20.04.2/ktp-call-ui-20.04.2.tar.xz) = bda0d68caf50133b8a0960aefafbeb9027594a9ce4b207d0b3ca8a53155784dc +SIZE (KDE/applications/20.04.2/ktp-call-ui-20.04.2.tar.xz) = 97136 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 538648) +++ head/net-im/ktp-common-internals/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429715 -SHA256 (KDE/applications/20.04.1/ktp-common-internals-20.04.1.tar.xz) = 0a5707920c9d2162767407e5e04e0f1fd426a84a7bbec11dfed4ebbb32817dae -SIZE (KDE/applications/20.04.1/ktp-common-internals-20.04.1.tar.xz) = 449336 +TIMESTAMP = 1591712761 +SHA256 (KDE/applications/20.04.2/ktp-common-internals-20.04.2.tar.xz) = 4baae5a9a560af63d2ac5fa53b7911ac371d284a08c4e060f1610a5d58fae81d +SIZE (KDE/applications/20.04.2/ktp-common-internals-20.04.2.tar.xz) = 449420 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 538648) +++ head/net-im/ktp-contact-list/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429716 -SHA256 (KDE/applications/20.04.1/ktp-contact-list-20.04.1.tar.xz) = 0d3756ab9a8958d971c2419f4e79cdea35b2f393c79938980c1e5b57456d6de1 -SIZE (KDE/applications/20.04.1/ktp-contact-list-20.04.1.tar.xz) = 148696 +TIMESTAMP = 1591712761 +SHA256 (KDE/applications/20.04.2/ktp-contact-list-20.04.2.tar.xz) = 7c17540576fee164b3a7d8a39753986c43eba9daad1049025028195104a68c92 +SIZE (KDE/applications/20.04.2/ktp-contact-list-20.04.2.tar.xz) = 148760 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 538648) +++ head/net-im/ktp-contact-runner/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429717 -SHA256 (KDE/applications/20.04.1/ktp-contact-runner-20.04.1.tar.xz) = bf0a6475d30e03a8f4181bb5ca8497147c7b2279eb0f8544deebb79039cd8556 -SIZE (KDE/applications/20.04.1/ktp-contact-runner-20.04.1.tar.xz) = 42952 +TIMESTAMP = 1591712762 +SHA256 (KDE/applications/20.04.2/ktp-contact-runner-20.04.2.tar.xz) = e84bdb98cd717357a51aba12280558026bcfed61dc22f75bb1c695d4e67f39bc +SIZE (KDE/applications/20.04.2/ktp-contact-runner-20.04.2.tar.xz) = 42936 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 538648) +++ head/net-im/ktp-desktop-applets/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429717 -SHA256 (KDE/applications/20.04.1/ktp-desktop-applets-20.04.1.tar.xz) = 30fb419ebf7acd89f354e4b9043dfd3dc2ec971e8f445b0de64e1a1f2929b46e -SIZE (KDE/applications/20.04.1/ktp-desktop-applets-20.04.1.tar.xz) = 43660 +TIMESTAMP = 1591712763 +SHA256 (KDE/applications/20.04.2/ktp-desktop-applets-20.04.2.tar.xz) = c5ff082457216fed095a54c12d4ab28e54e1fd3b017638ec218be94ffe024072 +SIZE (KDE/applications/20.04.2/ktp-desktop-applets-20.04.2.tar.xz) = 43704 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 538648) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429718 -SHA256 (KDE/applications/20.04.1/ktp-filetransfer-handler-20.04.1.tar.xz) = a692c5f2eadf423bfb5c685e9ad4e7e4243b5f45b12d3700d2db352808b6508c -SIZE (KDE/applications/20.04.1/ktp-filetransfer-handler-20.04.1.tar.xz) = 46132 +TIMESTAMP = 1591712764 +SHA256 (KDE/applications/20.04.2/ktp-filetransfer-handler-20.04.2.tar.xz) = b23f62a331cbaa8de69cbafb464cbc2331eb373317b9c464f1810475e5477d69 +SIZE (KDE/applications/20.04.2/ktp-filetransfer-handler-20.04.2.tar.xz) = 46096 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 538648) +++ head/net-im/ktp-kded-module/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429719 -SHA256 (KDE/applications/20.04.1/ktp-kded-module-20.04.1.tar.xz) = 2bce15e4a689cf35b9e0c353a9c4a4b13de9b703f680f71d7ef9be49205ef9c8 -SIZE (KDE/applications/20.04.1/ktp-kded-module-20.04.1.tar.xz) = 97244 +TIMESTAMP = 1591712765 +SHA256 (KDE/applications/20.04.2/ktp-kded-module-20.04.2.tar.xz) = bb96d4fe57c12ba752c529916aed5cf15dcaebe77275f0ed061af654f56d80d7 +SIZE (KDE/applications/20.04.2/ktp-kded-module-20.04.2.tar.xz) = 97300 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 538648) +++ head/net-im/ktp-send-file/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429720 -SHA256 (KDE/applications/20.04.1/ktp-send-file-20.04.1.tar.xz) = ba0ffac5f78bb047a29b5f6356c202332d7c9871d383a2086195697f7cb8db25 -SIZE (KDE/applications/20.04.1/ktp-send-file-20.04.1.tar.xz) = 27848 +TIMESTAMP = 1591712766 +SHA256 (KDE/applications/20.04.2/ktp-send-file-20.04.2.tar.xz) = ffe3cb454c50a73ccb4b65f8ee0ae79859aedf5378983848e3d1af5380ab5ffb +SIZE (KDE/applications/20.04.2/ktp-send-file-20.04.2.tar.xz) = 27852 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 538648) +++ head/net-im/ktp-text-ui/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429721 -SHA256 (KDE/applications/20.04.1/ktp-text-ui-20.04.1.tar.xz) = 5f9731344e902d3f476c4fbdb016e2c9881922efc388963a509e5c2db237c9cc -SIZE (KDE/applications/20.04.1/ktp-text-ui-20.04.1.tar.xz) = 469632 +TIMESTAMP = 1591712766 +SHA256 (KDE/applications/20.04.2/ktp-text-ui-20.04.2.tar.xz) = 013330478b8fe9d8fde81cc252cc6d79a9e2a3baee66fedc78449f9b9331416c +SIZE (KDE/applications/20.04.2/ktp-text-ui-20.04.2.tar.xz) = 469768 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 538648) +++ head/print/print-manager/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429752 -SHA256 (KDE/applications/20.04.1/print-manager-20.04.1.tar.xz) = 368f10cde07ecee03b55c40c91e5c85a2281ba38607f30dbaea5a0a951cbbefc -SIZE (KDE/applications/20.04.1/print-manager-20.04.1.tar.xz) = 255660 +TIMESTAMP = 1591712796 +SHA256 (KDE/applications/20.04.2/print-manager-20.04.2.tar.xz) = dd1df3fbd48773418d6032fba687f1f7c07b241696428c9424238c9e86e50973 +SIZE (KDE/applications/20.04.2/print-manager-20.04.2.tar.xz) = 255696 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 538648) +++ head/science/kalzium/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429753 -SHA256 (KDE/applications/20.04.1/kalzium-20.04.1.tar.xz) = fdb066519cc4839ce59a5325729414dd5e6082ce23eff004afee60968744c577 -SIZE (KDE/applications/20.04.1/kalzium-20.04.1.tar.xz) = 24595836 +TIMESTAMP = 1591712797 +SHA256 (KDE/applications/20.04.2/kalzium-20.04.2.tar.xz) = c0d276f2f37f4c8e83d26b4e6e3dd8dfe0e420ecdeed055b4fb62bdb2433b4b4 +SIZE (KDE/applications/20.04.2/kalzium-20.04.2.tar.xz) = 24597040 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 538648) +++ head/science/step/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429754 -SHA256 (KDE/applications/20.04.1/step-20.04.1.tar.xz) = bf66f979de6633b033f18268f1c85f3b8e35903ebd6ad62c0a7c17dd7b676163 -SIZE (KDE/applications/20.04.1/step-20.04.1.tar.xz) = 916932 +TIMESTAMP = 1591847927 +SHA256 (KDE/applications/20.04.2/step-20.04.2.tar.xz) = 47fff69c57ff78db636bdad0226f02fec6496a01386af9c5a4091f274f339880 +SIZE (KDE/applications/20.04.2/step-20.04.2.tar.xz) = 927196 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 538648) +++ head/science/step/pkg-plist (revision 538649) @@ -1,1057 +1,1100 @@ bin/step etc/xdg/step.knsrc share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo +share/locale/el/LC_MESSAGES/step_example_files.mo +share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step +%%DATADIR%%/examples/el/brownian.step +%%DATADIR%%/examples/el/doublependulum.step +%%DATADIR%%/examples/el/eightpendula.step +%%DATADIR%%/examples/el/first.step +%%DATADIR%%/examples/el/fourpendula.step +%%DATADIR%%/examples/el/gas.step +%%DATADIR%%/examples/el/graph.step +%%DATADIR%%/examples/el/liquid.step +%%DATADIR%%/examples/el/lissajous.step +%%DATADIR%%/examples/el/motor.step +%%DATADIR%%/examples/el/motor1.step +%%DATADIR%%/examples/el/note.step +%%DATADIR%%/examples/el/resonance.step +%%DATADIR%%/examples/el/softbody.step +%%DATADIR%%/examples/el/solar.step +%%DATADIR%%/examples/el/springs.step +%%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/et/brownian.step %%DATADIR%%/examples/et/doublependulum.step %%DATADIR%%/examples/et/eightpendula.step %%DATADIR%%/examples/et/first.step %%DATADIR%%/examples/et/fourpendula.step %%DATADIR%%/examples/et/gas.step %%DATADIR%%/examples/et/graph.step %%DATADIR%%/examples/et/liquid.step %%DATADIR%%/examples/et/lissajous.step %%DATADIR%%/examples/et/motor.step %%DATADIR%%/examples/et/motor1.step %%DATADIR%%/examples/et/note.step %%DATADIR%%/examples/et/resonance.step %%DATADIR%%/examples/et/softbody.step %%DATADIR%%/examples/et/solar.step %%DATADIR%%/examples/et/springs.step %%DATADIR%%/examples/et/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/ja/brownian.step %%DATADIR%%/examples/ja/doublependulum.step %%DATADIR%%/examples/ja/eightpendula.step %%DATADIR%%/examples/ja/first.step %%DATADIR%%/examples/ja/fourpendula.step %%DATADIR%%/examples/ja/gas.step %%DATADIR%%/examples/ja/graph.step %%DATADIR%%/examples/ja/liquid.step %%DATADIR%%/examples/ja/lissajous.step %%DATADIR%%/examples/ja/motor.step %%DATADIR%%/examples/ja/motor1.step %%DATADIR%%/examples/ja/note.step %%DATADIR%%/examples/ja/resonance.step %%DATADIR%%/examples/ja/softbody.step %%DATADIR%%/examples/ja/solar.step %%DATADIR%%/examples/ja/springs.step %%DATADIR%%/examples/ja/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/de/Anchor.html %%DATADIR%%/objinfo/l10n/de/Box.html %%DATADIR%%/objinfo/l10n/de/ChargedParticle.html %%DATADIR%%/objinfo/l10n/de/CoulombForce.html %%DATADIR%%/objinfo/l10n/de/Disk.html %%DATADIR%%/objinfo/l10n/de/Gas.html %%DATADIR%%/objinfo/l10n/de/GasLJForce.html %%DATADIR%%/objinfo/l10n/de/GasParticle.html %%DATADIR%%/objinfo/l10n/de/GravitationForce.html %%DATADIR%%/objinfo/l10n/de/LinearMotor.html %%DATADIR%%/objinfo/l10n/de/Meter.html %%DATADIR%%/objinfo/l10n/de/Note.html %%DATADIR%%/objinfo/l10n/de/Particle.html %%DATADIR%%/objinfo/l10n/de/Pin.html %%DATADIR%%/objinfo/l10n/de/Polygon.html %%DATADIR%%/objinfo/l10n/de/Spring.html %%DATADIR%%/objinfo/l10n/de/WeightForce.html %%DATADIR%%/objinfo/l10n/de/World.html +%%DATADIR%%/objinfo/l10n/el/anchor.html +%%DATADIR%%/objinfo/l10n/el/box.html +%%DATADIR%%/objinfo/l10n/el/chargedparticle.html +%%DATADIR%%/objinfo/l10n/el/coulombforce.html +%%DATADIR%%/objinfo/l10n/el/disk.html +%%DATADIR%%/objinfo/l10n/el/gas.html +%%DATADIR%%/objinfo/l10n/el/gasljforce.html +%%DATADIR%%/objinfo/l10n/el/gasparticle.html +%%DATADIR%%/objinfo/l10n/el/gravitationforce.html +%%DATADIR%%/objinfo/l10n/el/linearmotor.html +%%DATADIR%%/objinfo/l10n/el/meter.html +%%DATADIR%%/objinfo/l10n/el/note.html +%%DATADIR%%/objinfo/l10n/el/particle.html +%%DATADIR%%/objinfo/l10n/el/pin.html +%%DATADIR%%/objinfo/l10n/el/polygon.html +%%DATADIR%%/objinfo/l10n/el/softbody.html +%%DATADIR%%/objinfo/l10n/el/spring.html +%%DATADIR%%/objinfo/l10n/el/weightforce.html +%%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/it/Box.html %%DATADIR%%/objinfo/l10n/it/ChargedParticle.html %%DATADIR%%/objinfo/l10n/it/Disk.html %%DATADIR%%/objinfo/l10n/it/Gas.html %%DATADIR%%/objinfo/l10n/it/GasParticle.html %%DATADIR%%/objinfo/l10n/it/Meter.html %%DATADIR%%/objinfo/l10n/it/Note.html %%DATADIR%%/objinfo/l10n/it/Particle.html %%DATADIR%%/objinfo/l10n/it/Polygon.html %%DATADIR%%/objinfo/l10n/it/Spring.html %%DATADIR%%/objinfo/l10n/it/World.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step +%%DATADIR%%/tutorials/el/tutorial1.step +%%DATADIR%%/tutorials/el/tutorial2.step +%%DATADIR%%/tutorials/el/tutorial3.step +%%DATADIR%%/tutorials/el/tutorial4.step +%%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 538648) +++ head/security/kgpg/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429755 -SHA256 (KDE/applications/20.04.1/kgpg-20.04.1.tar.xz) = 705a0d124b4a344e68df77274800922c611c029f4ec1ec9950efa8ac967ea30d -SIZE (KDE/applications/20.04.1/kgpg-20.04.1.tar.xz) = 2790884 +TIMESTAMP = 1591712799 +SHA256 (KDE/applications/20.04.2/kgpg-20.04.2.tar.xz) = bff77a7c456037cc6e2673caa2e21102e4bdfe120b088116874181c6ee8f9770 +SIZE (KDE/applications/20.04.2/kgpg-20.04.2.tar.xz) = 2791288 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 538648) +++ head/security/kleopatra/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429755 -SHA256 (KDE/applications/20.04.1/kleopatra-20.04.1.tar.xz) = d6dc989f4ee441aecba4c77ed41dc85389f8c96664ccf1d19aee882ad6b7a0d4 -SIZE (KDE/applications/20.04.1/kleopatra-20.04.1.tar.xz) = 1935748 +TIMESTAMP = 1591712800 +SHA256 (KDE/applications/20.04.2/kleopatra-20.04.2.tar.xz) = b5adbae9de6e40570b5dc0d4a9a74ce10f1fac6dea25cc5287c62fbae5fe2cd8 +SIZE (KDE/applications/20.04.2/kleopatra-20.04.2.tar.xz) = 1935748 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 538648) +++ head/security/kpkpass/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429756 -SHA256 (KDE/applications/20.04.1/kpkpass-20.04.1.tar.xz) = c7841a70df52bd5ba8dbf4e8358b9728b287c1513315135c7ca3ba76cec3cd0d -SIZE (KDE/applications/20.04.1/kpkpass-20.04.1.tar.xz) = 23340 +TIMESTAMP = 1591712801 +SHA256 (KDE/applications/20.04.2/kpkpass-20.04.2.tar.xz) = 128d6ff4481d22373f15eccd227efcec6f3198487bf63204e02a2c26c9bdeefe +SIZE (KDE/applications/20.04.2/kpkpass-20.04.2.tar.xz) = 23340 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 538648) +++ head/security/kwalletmanager/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429757 -SHA256 (KDE/applications/20.04.1/kwalletmanager-20.04.1.tar.xz) = 5f7d2602881474afc56708a1ff1f7afae5dae7f77409cf497d89b9345a9251c6 -SIZE (KDE/applications/20.04.1/kwalletmanager-20.04.1.tar.xz) = 789216 +TIMESTAMP = 1591712801 +SHA256 (KDE/applications/20.04.2/kwalletmanager-20.04.2.tar.xz) = 0f4d29c5b8d2e8fe05506eecf36761fdb36546e385d99bb2fbc596bc7bee8295 +SIZE (KDE/applications/20.04.2/kwalletmanager-20.04.2.tar.xz) = 789352 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 538648) +++ head/security/libkleo/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429758 -SHA256 (KDE/applications/20.04.1/libkleo-20.04.1.tar.xz) = dba1ae92e248c181ab43a47c6f26f76e1e95999b7bcca8d9c9b992ee71bd3266 -SIZE (KDE/applications/20.04.1/libkleo-20.04.1.tar.xz) = 351752 +TIMESTAMP = 1591712802 +SHA256 (KDE/applications/20.04.2/libkleo-20.04.2.tar.xz) = 0b343fc6bae604e596ff36d47d28aac7c85a72c4461cd5c80682eae27d109eef +SIZE (KDE/applications/20.04.2/libkleo-20.04.2.tar.xz) = 351772 Index: head/sysutils/baloo-widgets/Makefile =================================================================== --- head/sysutils/baloo-widgets/Makefile (revision 538648) +++ head/sysutils/baloo-widgets/Makefile (revision 538649) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= baloo-widgets DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= BalooWidgets library USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= baloo completion config coreaddons ecm emoticons filemetadata \ i18n init itemmodels jobwidgets kdelibs4support kio service \ widgetsaddons USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS # Override shared library version -KDE_APPLICATIONS_SHLIB_VER=20.4.1 +KDE_APPLICATIONS_SHLIB_VER=20.4.2 .include Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 538648) +++ head/sysutils/baloo-widgets/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429759 -SHA256 (KDE/applications/20.04.1/baloo-widgets-20.04.1.tar.xz) = 00f271d90c92ac4be978270fee323a8e8617cb975e0ea7d7ecb1b00d773a9bf4 -SIZE (KDE/applications/20.04.1/baloo-widgets-20.04.1.tar.xz) = 261524 +TIMESTAMP = 1591712803 +SHA256 (KDE/applications/20.04.2/baloo-widgets-20.04.2.tar.xz) = da8cbd3568bda1b93ecad5fb2e13ff5be244765f2a580d9055aeb09c103fd552 +SIZE (KDE/applications/20.04.2/baloo-widgets-20.04.2.tar.xz) = 261536 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 538648) +++ head/sysutils/filelight/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429760 -SHA256 (KDE/applications/20.04.1/filelight-20.04.1.tar.xz) = 0398a859374a97d96f0d6f972de70548a80fc080d1942a333a32501ba9082283 -SIZE (KDE/applications/20.04.1/filelight-20.04.1.tar.xz) = 661760 +TIMESTAMP = 1591712804 +SHA256 (KDE/applications/20.04.2/filelight-20.04.2.tar.xz) = f74cfafdf2ddaf01e549de3b66fb9c31ee03c2e05e3237fe51119956dc217049 +SIZE (KDE/applications/20.04.2/filelight-20.04.2.tar.xz) = 661752 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 538648) +++ head/sysutils/k3b/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429761 -SHA256 (KDE/applications/20.04.1/k3b-20.04.1.tar.xz) = c7d3e3113e7c45e8b938057b0f78ad2af8c95c280f3c59e83d13d79c6db40164 -SIZE (KDE/applications/20.04.1/k3b-20.04.1.tar.xz) = 10510332 +TIMESTAMP = 1591712805 +SHA256 (KDE/applications/20.04.2/k3b-20.04.2.tar.xz) = 782ce2410a220ab96ffd666eee836c59e9f68c5e2fd0a45bd22e9b0f0f4a9597 +SIZE (KDE/applications/20.04.2/k3b-20.04.2.tar.xz) = 10512196 Index: head/sysutils/k3b/pkg-plist =================================================================== --- head/sysutils/k3b/pkg-plist (revision 538648) +++ head/sysutils/k3b/pkg-plist (revision 538649) @@ -1,541 +1,576 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libk3bdevice.so lib/libk3bdevice.so.7 lib/libk3bdevice.so.7.0.0 lib/libk3blib.so lib/libk3blib.so.7 lib/libk3blib.so.7.0.0 lib/libexec/k3bhelper %%QT_PLUGINDIR%%/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3blameencoder.so %%QT_PLUGINDIR%%/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3bwavedecoder.so %%QT_PLUGINDIR%%/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservices5/k3baudiometainforenamerplugin.desktop share/kservices5/k3baudioprojectcddbplugin.desktop share/kservices5/k3bexternalencoder.desktop share/kservices5/k3bflacdecoder.desktop share/kservices5/k3blameencoder.desktop share/kservices5/k3blibsndfiledecoder.desktop share/kservices5/k3bmaddecoder.desktop share/kservices5/k3boggvorbisdecoder.desktop share/kservices5/k3boggvorbisencoder.desktop share/kservices5/k3bsoxencoder.desktop share/kservices5/k3bwavedecoder.desktop share/kservices5/kcm_k3bexternalencoder.desktop share/kservices5/kcm_k3blameencoder.desktop share/kservices5/kcm_k3boggvorbisencoder.desktop share/kservices5/kcm_k3bsoxencoder.desktop share/kservices5/videodvd.protocol share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo +share/locale/ar/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ast/LC_MESSAGES/kio_videodvd.mo share/locale/ast/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo +share/locale/ca/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo +share/locale/ca@valencia/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo +share/locale/cs/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo +share/locale/da/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo +share/locale/de/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo +share/locale/el/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo +share/locale/en_GB/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo +share/locale/es/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo +share/locale/et/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo +share/locale/eu/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo +share/locale/fi/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo +share/locale/fr/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo +share/locale/gl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo +share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo +share/locale/ia/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo +share/locale/id/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo +share/locale/it/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo +share/locale/ja/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo +share/locale/ko/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo +share/locale/lt/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo +share/locale/nl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo +share/locale/nn/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo +share/locale/pl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo +share/locale/pt/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo +share/locale/pt_BR/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo +share/locale/ru/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo +share/locale/sk/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo +share/locale/sl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo +share/locale/sr/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo +share/locale/sv/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo +share/locale/tr/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo +share/locale/uk/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo +share/locale/zh_CN/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo +share/locale/zh_TW/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 538648) +++ head/sysutils/kbackup/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429761 -SHA256 (KDE/applications/20.04.1/kbackup-20.04.1.tar.xz) = 8c8e67c17efda683d67416b82e5dbcdb6706f261cfc10c8d8b6c13547781e477 -SIZE (KDE/applications/20.04.1/kbackup-20.04.1.tar.xz) = 360780 +TIMESTAMP = 1591712806 +SHA256 (KDE/applications/20.04.2/kbackup-20.04.2.tar.xz) = 747a40abe5a66a3324d9ee249a79a29f1a74c40804bae2330cd6df80c90da56b +SIZE (KDE/applications/20.04.2/kbackup-20.04.2.tar.xz) = 362176 Index: head/sysutils/kbackup/pkg-plist =================================================================== --- head/sysutils/kbackup/pkg-plist (revision 538648) +++ head/sysutils/kbackup/pkg-plist (revision 538649) @@ -1,41 +1,70 @@ bin/kbackup share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ca/LC_MESSAGES/kbackup.mo +share/locale/ca/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo +share/locale/ca@valencia/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/cs/LC_MESSAGES/kbackup.mo +share/locale/cs/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/da/LC_MESSAGES/kbackup.mo +share/locale/da/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/de/LC_MESSAGES/kbackup.mo +share/locale/de/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/el/LC_MESSAGES/kbackup.mo +share/locale/el/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo +share/locale/en_GB/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/es/LC_MESSAGES/kbackup.mo +share/locale/es/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/et/LC_MESSAGES/kbackup.mo +share/locale/et/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/eu/LC_MESSAGES/kbackup.mo +share/locale/eu/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/fi/LC_MESSAGES/kbackup.mo +share/locale/fi/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/fr/LC_MESSAGES/kbackup.mo +share/locale/fr/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/gl/LC_MESSAGES/kbackup.mo +share/locale/gl/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ia/LC_MESSAGES/kbackup.mo +share/locale/ia/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/it/LC_MESSAGES/kbackup.mo +share/locale/it/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ja/LC_MESSAGES/kbackup.mo +share/locale/ja/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ko/LC_MESSAGES/kbackup.mo +share/locale/ko/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/lt/LC_MESSAGES/kbackup.mo +share/locale/lt/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/nl/LC_MESSAGES/kbackup.mo +share/locale/nl/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/nn/LC_MESSAGES/kbackup.mo +share/locale/nn/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/pl/LC_MESSAGES/kbackup.mo +share/locale/pl/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/pt/LC_MESSAGES/kbackup.mo +share/locale/pt/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo +share/locale/pt_BR/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ru/LC_MESSAGES/kbackup.mo +share/locale/ru/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/sk/LC_MESSAGES/kbackup.mo +share/locale/sk/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/sv/LC_MESSAGES/kbackup.mo +share/locale/sv/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/uk/LC_MESSAGES/kbackup.mo +share/locale/uk/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo +share/locale/zh_CN/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo +share/locale/zh_TW/LC_MESSAGES/kbackup_xml_mimetypes.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 538648) +++ head/sysutils/kcron/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429762 -SHA256 (KDE/applications/20.04.1/kcron-20.04.1.tar.xz) = 9c956179eea9a6b28d105d921426acb28cc72b1be32be275d89af70763f70fcc -SIZE (KDE/applications/20.04.1/kcron-20.04.1.tar.xz) = 892108 +TIMESTAMP = 1591712806 +SHA256 (KDE/applications/20.04.2/kcron-20.04.2.tar.xz) = 6a171c08a1679229cb5757460612af8a3368252b13ab0a0f5bb8ebebe3ee2b8f +SIZE (KDE/applications/20.04.2/kcron-20.04.2.tar.xz) = 892188 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 538648) +++ head/sysutils/kdebugsettings/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429763 -SHA256 (KDE/applications/20.04.1/kdebugsettings-20.04.1.tar.xz) = 5ef5e45c37c9a2922d201f7053b9ed27cf9675c575cb2bb607dda13c86723dd8 -SIZE (KDE/applications/20.04.1/kdebugsettings-20.04.1.tar.xz) = 65428 +TIMESTAMP = 1591712808 +SHA256 (KDE/applications/20.04.2/kdebugsettings-20.04.2.tar.xz) = c538fe7dc42de743b9a93065c3ff714a0aa8ea5a5e9771968ec2d94150091dc8 +SIZE (KDE/applications/20.04.2/kdebugsettings-20.04.2.tar.xz) = 65464 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 538648) +++ head/sysutils/kdf/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429764 -SHA256 (KDE/applications/20.04.1/kdf-20.04.1.tar.xz) = 01579ae0fef0e8d9a871e58bb3d5b582f6c8e8e946505cb7270ba5d45e749770 -SIZE (KDE/applications/20.04.1/kdf-20.04.1.tar.xz) = 462316 +TIMESTAMP = 1591712808 +SHA256 (KDE/applications/20.04.2/kdf-20.04.2.tar.xz) = 906e72ecc4ed186c9461fdcde5bbd654547907572265875aa58e1bdcc3df0643 +SIZE (KDE/applications/20.04.2/kdf-20.04.2.tar.xz) = 462444 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 538648) +++ head/sysutils/kdialog/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429765 -SHA256 (KDE/applications/20.04.1/kdialog-20.04.1.tar.xz) = 68cd5e24b36d448b0e73af36638a4e1a31942bb510210a8e3b025f0788599a12 -SIZE (KDE/applications/20.04.1/kdialog-20.04.1.tar.xz) = 103916 +TIMESTAMP = 1591712809 +SHA256 (KDE/applications/20.04.2/kdialog-20.04.2.tar.xz) = 7771d597ad67cef6f0d94fbdc195e3260ed030ccbf5f2d7a2044645856e83201 +SIZE (KDE/applications/20.04.2/kdialog-20.04.2.tar.xz) = 103988 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 538648) +++ head/sysutils/kfloppy/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429766 -SHA256 (KDE/applications/20.04.1/kfloppy-20.04.1.tar.xz) = 40160fc89ebe9839adc117133d89eed8bb4b6684f812342dcfd982c20005cd57 -SIZE (KDE/applications/20.04.1/kfloppy-20.04.1.tar.xz) = 199028 +TIMESTAMP = 1591712810 +SHA256 (KDE/applications/20.04.2/kfloppy-20.04.2.tar.xz) = b4488a2f35184a98cdab69467c2678b53775248ff5ebae92ccee17f313d13626 +SIZE (KDE/applications/20.04.2/kfloppy-20.04.2.tar.xz) = 199064 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 538648) +++ head/sysutils/khelpcenter/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429767 -SHA256 (KDE/applications/20.04.1/khelpcenter-20.04.1.tar.xz) = 0b27cbbb66cbff7bebe4c71dc9a2e35e41a8efe748494cd8618ec9fd5496bf73 -SIZE (KDE/applications/20.04.1/khelpcenter-20.04.1.tar.xz) = 3842560 +TIMESTAMP = 1591712811 +SHA256 (KDE/applications/20.04.2/khelpcenter-20.04.2.tar.xz) = 2ae182f831bf637bdd886b10e3ada0fb5c6f53d9a2cc2551fca03a1004e69723 +SIZE (KDE/applications/20.04.2/khelpcenter-20.04.2.tar.xz) = 3847336 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 538648) +++ head/sysutils/ksystemlog/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429768 -SHA256 (KDE/applications/20.04.1/ksystemlog-20.04.1.tar.xz) = d16ad8b37a5a751ec8c5a72b6738a7cffacdd2698246ec3f6f9d6eeb138246a0 -SIZE (KDE/applications/20.04.1/ksystemlog-20.04.1.tar.xz) = 1929568 +TIMESTAMP = 1591712812 +SHA256 (KDE/applications/20.04.2/ksystemlog-20.04.2.tar.xz) = 097796719fa8b503cffb0a036e2f8d4152acaf3c8ad8b4ae721b528a2fa6dceb +SIZE (KDE/applications/20.04.2/ksystemlog-20.04.2.tar.xz) = 1929584 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 538648) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429768 -SHA256 (KDE/applications/20.04.1/signon-kwallet-extension-20.04.1.tar.xz) = 1ce6c80522ccf281035c3ec5a45e6a9cd4577ecaf9355d9f04b533b1df946e5d -SIZE (KDE/applications/20.04.1/signon-kwallet-extension-20.04.1.tar.xz) = 10700 +TIMESTAMP = 1591712812 +SHA256 (KDE/applications/20.04.2/signon-kwallet-extension-20.04.2.tar.xz) = 36187382e0fa6179b030f47ff6db3b764ddce76f3c5929180ec26f91e8ec6fec +SIZE (KDE/applications/20.04.2/signon-kwallet-extension-20.04.2.tar.xz) = 10696 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 538648) +++ head/sysutils/sweeper/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429769 -SHA256 (KDE/applications/20.04.1/sweeper-20.04.1.tar.xz) = a9c0c7cfac243dea33dba3e5428973408d66c425b2aa8beb5aa1400ba760e3ab -SIZE (KDE/applications/20.04.1/sweeper-20.04.1.tar.xz) = 368476 +TIMESTAMP = 1591712813 +SHA256 (KDE/applications/20.04.2/sweeper-20.04.2.tar.xz) = 7b012ecc88193529d25af62eba0500215bf04a74ca67374703190c0adcb8b3de +SIZE (KDE/applications/20.04.2/sweeper-20.04.2.tar.xz) = 368588 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 538648) +++ head/textproc/kompare/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429770 -SHA256 (KDE/applications/20.04.1/kompare-20.04.1.tar.xz) = 86bcd9890715cd19253cf8f3d67ae816617c8266241ef1a77a9549e2d56dc39c -SIZE (KDE/applications/20.04.1/kompare-20.04.1.tar.xz) = 802176 +TIMESTAMP = 1591712814 +SHA256 (KDE/applications/20.04.2/kompare-20.04.2.tar.xz) = 0b7f4c5d58e2ca22ecbdcc0a71c0e1f1e7eac415eabe513ea073f1f84790a279 +SIZE (KDE/applications/20.04.2/kompare-20.04.2.tar.xz) = 802300 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 538648) +++ head/textproc/libkomparediff2/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429771 -SHA256 (KDE/applications/20.04.1/libkomparediff2-20.04.1.tar.xz) = acfd3fff2cd9dbbce26235a5e6e9f2ec824961dcbe7aa56eb7c409779f3e1555 -SIZE (KDE/applications/20.04.1/libkomparediff2-20.04.1.tar.xz) = 170692 +TIMESTAMP = 1591712815 +SHA256 (KDE/applications/20.04.2/libkomparediff2-20.04.2.tar.xz) = 35d6c0b5bccfedb4a8d407c4db30fa279e109341a42852b3cccd47ec377c842f +SIZE (KDE/applications/20.04.2/libkomparediff2-20.04.2.tar.xz) = 170676 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 538648) +++ head/x11/konsole/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429776 -SHA256 (KDE/applications/20.04.1/konsole-20.04.1.tar.xz) = b5ada61759b4731cccb3814c4cc9a495c309ad93c9943e4b7e802b3fe53a7932 -SIZE (KDE/applications/20.04.1/konsole-20.04.1.tar.xz) = 1165784 +TIMESTAMP = 1591712820 +SHA256 (KDE/applications/20.04.2/konsole-20.04.2.tar.xz) = 12c40a313b8025326a9da23c426152c0e7b5514d4d86253990ce50e434a1b016 +SIZE (KDE/applications/20.04.2/konsole-20.04.2.tar.xz) = 1165856 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 538648) +++ head/x11/yakuake/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429777 -SHA256 (KDE/applications/20.04.1/yakuake-20.04.1.tar.xz) = 57cb4c1ce0b255f45f05ac347c84ffb219a0dc0ea870c1520f21390c0ad582cf -SIZE (KDE/applications/20.04.1/yakuake-20.04.1.tar.xz) = 374384 +TIMESTAMP = 1591722709 +SHA256 (KDE/applications/20.04.2/yakuake-20.04.2.tar.xz) = 10034c4ceb927783d4480a7a3a9caf467e348513a3b361846102c067c35071a8 +SIZE (KDE/applications/20.04.2/yakuake-20.04.2.tar.xz) = 374448 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 538648) +++ head/x11-clocks/kteatime/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429772 -SHA256 (KDE/applications/20.04.1/kteatime-20.04.1.tar.xz) = 7487ee83c88dc4ad023e8ded99418203205eec7fbb2d43816da53d0c2f728ce1 -SIZE (KDE/applications/20.04.1/kteatime-20.04.1.tar.xz) = 287152 +TIMESTAMP = 1591712816 +SHA256 (KDE/applications/20.04.2/kteatime-20.04.2.tar.xz) = 6960881156ea5394f5fd33c085fb92c3ec55ed0a0c58b23b20737cf583d26a18 +SIZE (KDE/applications/20.04.2/kteatime-20.04.2.tar.xz) = 287152 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 538648) +++ head/x11-clocks/ktimer/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429773 -SHA256 (KDE/applications/20.04.1/ktimer-20.04.1.tar.xz) = e705dd4fdad6c4289ab911142128a5b1988de3790d701378da9863c61eaececb -SIZE (KDE/applications/20.04.1/ktimer-20.04.1.tar.xz) = 377824 +TIMESTAMP = 1591712816 +SHA256 (KDE/applications/20.04.2/ktimer-20.04.2.tar.xz) = 310582dc9500b4ebe7acfcaac7e151413b36cf86150714cc7ff2aff7ade4f4b4 +SIZE (KDE/applications/20.04.2/ktimer-20.04.2.tar.xz) = 377852 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 538648) +++ head/x11-fm/dolphin/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429773 -SHA256 (KDE/applications/20.04.1/dolphin-20.04.1.tar.xz) = ba5db89b338d29c5fa492fc7ce08304427d8db51775fe5a4d34b444034d02577 -SIZE (KDE/applications/20.04.1/dolphin-20.04.1.tar.xz) = 4799472 +TIMESTAMP = 1591847925 +SHA256 (KDE/applications/20.04.2/dolphin-20.04.2.tar.xz) = 37e4c1510227112365418cacccabc6d535fb0880e182a2341bfe00d585d14fb2 +SIZE (KDE/applications/20.04.2/dolphin-20.04.2.tar.xz) = 4799692 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 538648) +++ head/x11-fm/konqueror/distinfo (revision 538649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589429774 -SHA256 (KDE/applications/20.04.1/konqueror-20.04.1.tar.xz) = 15d0b65e32a57d724abf50c0bd3cdc43613a193b1b442d731e6aecddf7a2713b -SIZE (KDE/applications/20.04.1/konqueror-20.04.1.tar.xz) = 7375952 +TIMESTAMP = 1591712818 +SHA256 (KDE/applications/20.04.2/konqueror-20.04.2.tar.xz) = eaa477d900852df599c2bf7fd850363e9d8021c81f735a7e73c185d52c6eaba4 +SIZE (KDE/applications/20.04.2/konqueror-20.04.2.tar.xz) = 7376012