diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index a2c93779a7d7..0d246b528d18 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,916 +1,906 @@ # 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-applications: 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. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # 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.21.3 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.81.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 20.12.3 -KDE_APPLICATIONS_SHLIB_VER?= 5.16.3 +KDE_APPLICATIONS_VERSION?= 21.04.0 +KDE_APPLICATIONS_SHLIB_VER?= 5.17.0 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 # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} WRKSRC= ${WRKDIR}/${GL_PROJECT}-${GL_COMMIT}-${GL_COMMIT} . endif . endif . 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. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools_build . endif # 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/release-service/${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 kxmlrpcclient . 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) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === 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}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _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 kdav 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} \ kpublictransport kosm # 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-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface 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/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper 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 # ====================== 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-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-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.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-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-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.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 diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index 77fecb8032d9..b7cc200b560c 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706195 -SHA256 (KDE/release-service/20.12.3/kmag-20.12.3.tar.xz) = 32932eb791d76de88de93a04f71f1224c41f0e33eb87b84eeab55668a18961dc -SIZE (KDE/release-service/20.12.3/kmag-20.12.3.tar.xz) = 700412 +TIMESTAMP = 1618579076 +SHA256 (KDE/release-service/21.04.0/kmag-21.04.0.tar.xz) = 1e0fcce98fe11cb2bae0a762fb382127f7f57a15ccdf2e496f8c977dd238dc1b +SIZE (KDE/release-service/21.04.0/kmag-21.04.0.tar.xz) = 698524 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 27cd268e78a6..9c70fb44bec5 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706194 -SHA256 (KDE/release-service/20.12.3/kmousetool-20.12.3.tar.xz) = 6a007e43c59cf7c312fbdd5b1235360b661f50a86a3b0218be429e50aae45277 -SIZE (KDE/release-service/20.12.3/kmousetool-20.12.3.tar.xz) = 116760 +TIMESTAMP = 1618579076 +SHA256 (KDE/release-service/21.04.0/kmousetool-21.04.0.tar.xz) = 22c545301d18ec6ac62e7fb4c4bc40f9c1226a5f1fddc8baf5c2506fa97b5845 +SIZE (KDE/release-service/21.04.0/kmousetool-21.04.0.tar.xz) = 117288 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index ad74ec8bbde9..a6163f1dac2a 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706195 -SHA256 (KDE/release-service/20.12.3/kmouth-20.12.3.tar.xz) = 90bffc7d860fd377a08ecbf1bb38f552f07939a5c03926105697d38af07d5d94 -SIZE (KDE/release-service/20.12.3/kmouth-20.12.3.tar.xz) = 2086596 +TIMESTAMP = 1618579077 +SHA256 (KDE/release-service/21.04.0/kmouth-21.04.0.tar.xz) = 5bf036ac976c37a7e85c72c2cf1549c6d63edf5cf96c979e51cf59c0b33aea6b +SIZE (KDE/release-service/21.04.0/kmouth-21.04.0.tar.xz) = 2084052 diff --git a/accessibility/kmouth/pkg-plist b/accessibility/kmouth/pkg-plist index af4fdca89d56..af07ceb5a92c 100644 --- a/accessibility/kmouth/pkg-plist +++ b/accessibility/kmouth/pkg-plist @@ -1,103 +1,102 @@ bin/kmouth etc/xdg/kmouthrc man/ca/man1/kmouth.1.gz man/da/man1/kmouth.1.gz man/de/man1/kmouth.1.gz man/es/man1/kmouth.1.gz man/et/man1/kmouth.1.gz man/fr/man1/kmouth.1.gz man/it/man1/kmouth.1.gz man/man1/kmouth.1.gz man/nl/man1/kmouth.1.gz man/pt/man1/kmouth.1.gz man/pt_BR/man1/kmouth.1.gz -man/ru/man1/kmouth.1.gz man/sv/man1/kmouth.1.gz man/uk/man1/kmouth.1.gz share/applications/org.kde.kmouth.desktop share/icons/hicolor/16x16/actions/phrase.png share/icons/hicolor/16x16/actions/phrasebook.png share/icons/hicolor/16x16/apps/kmouth.png share/icons/hicolor/22x22/actions/phrase.png share/icons/hicolor/22x22/actions/phrasebook.png share/icons/hicolor/22x22/apps/kmouth.png share/icons/hicolor/32x32/actions/phrase.png share/icons/hicolor/32x32/actions/phrasebook.png share/icons/hicolor/32x32/apps/kmouth.png share/icons/hicolor/48x48/apps/kmouth.png %%DATADIR%%/books/ca/ca-courteousness.phrasebook %%DATADIR%%/books/ca/ca-greetings.phrasebook %%DATADIR%%/books/ca/ca-howareyou.phrasebook %%DATADIR%%/books/ca/ca-personal.phrasebook %%DATADIR%%/books/ca/ca.desktop %%DATADIR%%/books/de/de-courteousness.phrasebook %%DATADIR%%/books/de/de-greetings.phrasebook %%DATADIR%%/books/de/de-howareyou.phrasebook %%DATADIR%%/books/de/de-personal.phrasebook %%DATADIR%%/books/de/de.desktop %%DATADIR%%/books/en/en-courteousness.phrasebook %%DATADIR%%/books/en/en-greetings.phrasebook %%DATADIR%%/books/en/en-howareyou.phrasebook %%DATADIR%%/books/en/en-personal.phrasebook %%DATADIR%%/books/en/en.desktop %%DATADIR%%/books/sv/sv-courteousness.phrasebook %%DATADIR%%/books/sv/sv-greetings.phrasebook %%DATADIR%%/books/sv/sv-howareyou.phrasebook %%DATADIR%%/books/sv/sv-personal.phrasebook %%DATADIR%%/books/sv/sv.desktop share/kxmlgui5/kmouth/kmouthui.rc share/kxmlgui5/kmouth/phrasebookdialogui.rc share/locale/ar/LC_MESSAGES/kmouth.mo share/locale/bg/LC_MESSAGES/kmouth.mo share/locale/bs/LC_MESSAGES/kmouth.mo share/locale/ca/LC_MESSAGES/kmouth.mo share/locale/ca@valencia/LC_MESSAGES/kmouth.mo share/locale/cs/LC_MESSAGES/kmouth.mo share/locale/da/LC_MESSAGES/kmouth.mo share/locale/de/LC_MESSAGES/kmouth.mo share/locale/el/LC_MESSAGES/kmouth.mo share/locale/en_GB/LC_MESSAGES/kmouth.mo share/locale/eo/LC_MESSAGES/kmouth.mo share/locale/es/LC_MESSAGES/kmouth.mo share/locale/et/LC_MESSAGES/kmouth.mo share/locale/eu/LC_MESSAGES/kmouth.mo share/locale/fa/LC_MESSAGES/kmouth.mo share/locale/fi/LC_MESSAGES/kmouth.mo share/locale/fr/LC_MESSAGES/kmouth.mo share/locale/ga/LC_MESSAGES/kmouth.mo share/locale/gl/LC_MESSAGES/kmouth.mo share/locale/he/LC_MESSAGES/kmouth.mo share/locale/hi/LC_MESSAGES/kmouth.mo share/locale/hr/LC_MESSAGES/kmouth.mo share/locale/hu/LC_MESSAGES/kmouth.mo share/locale/ia/LC_MESSAGES/kmouth.mo share/locale/is/LC_MESSAGES/kmouth.mo share/locale/it/LC_MESSAGES/kmouth.mo share/locale/ja/LC_MESSAGES/kmouth.mo share/locale/kk/LC_MESSAGES/kmouth.mo share/locale/km/LC_MESSAGES/kmouth.mo share/locale/ko/LC_MESSAGES/kmouth.mo share/locale/lt/LC_MESSAGES/kmouth.mo share/locale/lv/LC_MESSAGES/kmouth.mo share/locale/ml/LC_MESSAGES/kmouth.mo share/locale/mr/LC_MESSAGES/kmouth.mo share/locale/nb/LC_MESSAGES/kmouth.mo share/locale/nds/LC_MESSAGES/kmouth.mo share/locale/nl/LC_MESSAGES/kmouth.mo share/locale/nn/LC_MESSAGES/kmouth.mo share/locale/pa/LC_MESSAGES/kmouth.mo share/locale/pl/LC_MESSAGES/kmouth.mo share/locale/pt/LC_MESSAGES/kmouth.mo share/locale/pt_BR/LC_MESSAGES/kmouth.mo share/locale/ro/LC_MESSAGES/kmouth.mo share/locale/ru/LC_MESSAGES/kmouth.mo share/locale/sk/LC_MESSAGES/kmouth.mo share/locale/sl/LC_MESSAGES/kmouth.mo share/locale/sr/LC_MESSAGES/kmouth.mo share/locale/sv/LC_MESSAGES/kmouth.mo share/locale/tr/LC_MESSAGES/kmouth.mo share/locale/ug/LC_MESSAGES/kmouth.mo share/locale/uk/LC_MESSAGES/kmouth.mo share/locale/zh_CN/LC_MESSAGES/kmouth.mo share/locale/zh_TW/LC_MESSAGES/kmouth.mo share/metainfo/org.kde.kmouth.appdata.xml diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 88c3b66e28c2..f4af3c94af5a 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -1,44 +1,44 @@ 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= ${KDE_APPLICATIONS_VERSION} +KDE_APPLICATIONS_SHLIB_VER= 21.4.0 .include diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 0944f68c99d4..f07478d5fd8c 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706196 -SHA256 (KDE/release-service/20.12.3/ark-20.12.3.tar.xz) = e4f2dfe595f7b51879c8db3734ad56a2363a934013ee4bd4bc8c94a210405b3b -SIZE (KDE/release-service/20.12.3/ark-20.12.3.tar.xz) = 2717324 +TIMESTAMP = 1618579078 +SHA256 (KDE/release-service/21.04.0/ark-21.04.0.tar.xz) = 0e5e0552598038e38f42d813aefb46ebee9a3d00ffb1ea163b526de58ce39e0c +SIZE (KDE/release-service/21.04.0/ark-21.04.0.tar.xz) = 2726388 diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index 9f641f4f10ca..988eca5196e3 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -1,94 +1,94 @@ bin/ark share/qlogging-categories5/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkerfuffle.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop -share/kxmlgui5/ark/ark_viewer.rc share/locale/ar/LC_MESSAGES/ark.mo +share/locale/ast/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index 95287547d057..19f0b65192e9 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -1,17 +1,20 @@ PORTNAME= kosmindoormap DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library and QML component for rendering multi-level OSM indoor maps LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm i18n kpublictransport USE_QT= core declarative gui network quick3d \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS +# Override shared library version +KDE_APPLICATIONS_SHLIB_VER= 21.4.0 + .include diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 249316ca6d6a..5fd47e7a11ee 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706197 -SHA256 (KDE/release-service/20.12.3/kosmindoormap-20.12.3.tar.xz) = 33d5d045fd99dd7c30690dc19ad95183bdaf91ed2230b289564ba76615b7af09 -SIZE (KDE/release-service/20.12.3/kosmindoormap-20.12.3.tar.xz) = 314920 +TIMESTAMP = 1618579079 +SHA256 (KDE/release-service/21.04.0/kosmindoormap-21.04.0.tar.xz) = 9e8d0cec560286d790927909c0ebe478652f1018da75ec6ad709f774d67161b0 +SIZE (KDE/release-service/21.04.0/kosmindoormap-21.04.0.tar.xz) = 332056 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index d6489b7b1871..6c1951950bb5 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,73 +1,75 @@ include/KOSM/Datatypes include/KOSM/Element +include/KOSMIndoorMap/EquipmentModel include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/kosm_export.h +include/kosmindoormap/equipmentmodel.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 -lib/libKOSM.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKOSM.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 -lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo share/locale/sv/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories5/org_kde_kosmindoormap.categories diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 94fd1df20358..e18e3fdfca4e 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706198 -SHA256 (KDE/release-service/20.12.3/marble-20.12.3.tar.xz) = 57b1b129dd0301c124ab5f930af9dfe044cedfcd42a6b180c6cf3c594fba7bc2 -SIZE (KDE/release-service/20.12.3/marble-20.12.3.tar.xz) = 52242116 +TIMESTAMP = 1618579080 +SHA256 (KDE/release-service/21.04.0/marble-21.04.0.tar.xz) = 187efcf9976f7e478a5420f5c4fd7ca73782b9bff58626e37e78c2efcae9c3b0 +SIZE (KDE/release-service/21.04.0/marble-21.04.0.tar.xz) = 52373900 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index df1e29d29009..0eaa24b30337 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1774 +1,1774 @@ bin/marble bin/marble-qt 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/FileManager.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/AnnotatePlugin.so lib/marble/plugins/AprsPlugin.so lib/marble/plugins/AtmospherePlugin.so lib/marble/plugins/CachePlugin.so lib/marble/plugins/CompassFloatItem.so lib/marble/plugins/CrosshairsPlugin.so lib/marble/plugins/CycleStreetsPlugin.so lib/marble/plugins/EarthquakePlugin.so lib/marble/plugins/EclipsesPlugin.so lib/marble/plugins/ElevationProfileFloatItem.so lib/marble/plugins/ElevationProfileMarker.so lib/marble/plugins/FlightGearPositionProviderPlugin.so lib/marble/plugins/FoursquarePlugin.so lib/marble/plugins/GeoUriPlugin.so lib/marble/plugins/GosmoreReverseGeocodingPlugin.so lib/marble/plugins/GosmoreRoutingPlugin.so lib/marble/plugins/GpsInfo.so lib/marble/plugins/GpsbabelPlugin.so %%GPS%%lib/marble/plugins/GpsdPositionProviderPlugin.so lib/marble/plugins/GpxPlugin.so lib/marble/plugins/GraticulePlugin.so lib/marble/plugins/HostipPlugin.so lib/marble/plugins/JsonPlugin.so lib/marble/plugins/KmlPlugin.so lib/marble/plugins/LatLonPlugin.so lib/marble/plugins/License.so lib/marble/plugins/LocalDatabasePlugin.so lib/marble/plugins/LocalOsmSearchPlugin.so lib/marble/plugins/LogPlugin.so lib/marble/plugins/MapQuestPlugin.so lib/marble/plugins/MapScaleFloatItem.so lib/marble/plugins/MeasureTool.so lib/marble/plugins/MonavPlugin.so lib/marble/plugins/NavigationFloatItem.so lib/marble/plugins/NominatimReverseGeocodingPlugin.so lib/marble/plugins/NominatimSearchPlugin.so lib/marble/plugins/NotesPlugin.so lib/marble/plugins/OSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/OpenDesktopPlugin.so lib/marble/plugins/OpenLocationCodeSearchPlugin.so lib/marble/plugins/OpenRouteServicePlugin.so lib/marble/plugins/OsmPlugin.so lib/marble/plugins/OverviewMap.so %%WEBENGINE%%lib/marble/plugins/Photo.so lib/marble/plugins/Pn2Plugin.so lib/marble/plugins/PntPlugin.so lib/marble/plugins/PositionMarker.so lib/marble/plugins/PostalCode.so lib/marble/plugins/ProgressFloatItem.so %%GPS%%lib/marble/plugins/QtPositioningPositionProviderPlugin.so lib/marble/plugins/RoutingPlugin.so lib/marble/plugins/RoutinoPlugin.so lib/marble/plugins/SatellitesPlugin.so lib/marble/plugins/Speedometer.so lib/marble/plugins/StarsPlugin.so lib/marble/plugins/SunPlugin.so %%WEBENGINE%%lib/marble/plugins/Weather.so %%WEBENGINE%%lib/marble/plugins/Wikipedia.so lib/marble/plugins/YoursPlugin.so lib/plugins/designer/LatLonEditPlugin.so lib/plugins/designer/MarbleNavigatorPlugin.so lib/plugins/designer/MarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri +%%QT_PLUGINDIR%%/kf5/krunner/plasma_runner_marble.so %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/marblethumbnail.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/knsrcfiles/marble.knsrc 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/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm 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/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/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/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/plasma_applet_org.kde.plasma.worldclock.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm 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/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/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/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm 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/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/eu/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm 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/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/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm 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/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/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/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/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/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.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/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm 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/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm 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/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm 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/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/pa/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm 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/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/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/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/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/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/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/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/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm 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/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/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 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index a0b00838b2e7..2a7d264c14fa 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706201 -SHA256 (KDE/release-service/20.12.3/audiocd-kio-20.12.3.tar.xz) = 60af5b62300c5c29c02893300261a5795fcb6c2dd23988b9e6275b380e1e4f1a -SIZE (KDE/release-service/20.12.3/audiocd-kio-20.12.3.tar.xz) = 500672 +TIMESTAMP = 1618579081 +SHA256 (KDE/release-service/21.04.0/audiocd-kio-21.04.0.tar.xz) = a002d25192541e5ed9397fe7e3631b31e42872fb0a7e24f0dafb7ed95fe16dad +SIZE (KDE/release-service/21.04.0/audiocd-kio-21.04.0.tar.xz) = 501820 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 5de0685f5463..d1d7197f53c4 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706200 -SHA256 (KDE/release-service/20.12.3/elisa-20.12.3.tar.xz) = 7a97d305b4319f077db6ce387895c2c3442112d5a3d9d4d68d0c2d884ce79865 -SIZE (KDE/release-service/20.12.3/elisa-20.12.3.tar.xz) = 1661968 +TIMESTAMP = 1618579082 +SHA256 (KDE/release-service/21.04.0/elisa-21.04.0.tar.xz) = 4fa3843e58cf9007ef0b59d9e8df083400c083098d8b14da5df6cd8bc8315194 +SIZE (KDE/release-service/21.04.0/elisa-21.04.0.tar.xz) = 1718428 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 80c6b9c25bb1..44a221626773 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706203 -SHA256 (KDE/release-service/20.12.3/juk-20.12.3.tar.xz) = 87a628daa275d342721071069487c7d42e9f4bac0af2b7bd27e387732d465f07 -SIZE (KDE/release-service/20.12.3/juk-20.12.3.tar.xz) = 1997996 +TIMESTAMP = 1618579083 +SHA256 (KDE/release-service/21.04.0/juk-21.04.0.tar.xz) = df5cb63315614dbe3560ee9f3d9c2f79c4d930e2b2e64322ac8e585320e0f486 +SIZE (KDE/release-service/21.04.0/juk-21.04.0.tar.xz) = 1993360 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index b8c8487fbefd..c6e0089317ad 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706200 -SHA256 (KDE/release-service/20.12.3/kmix-20.12.3.tar.xz) = 68f892958eec984685567ad36624084118b6dc5e7a4633733a6c3e6aea34ea17 -SIZE (KDE/release-service/20.12.3/kmix-20.12.3.tar.xz) = 1150476 +TIMESTAMP = 1618579084 +SHA256 (KDE/release-service/21.04.0/kmix-21.04.0.tar.xz) = e29742d0618e704fc9593051527347eac8aaf209f90451180f17b279ebb24ce8 +SIZE (KDE/release-service/21.04.0/kmix-21.04.0.tar.xz) = 1151276 diff --git a/audio/kmix/pkg-plist b/audio/kmix/pkg-plist index 075b9008b80e..9f6fb704dae6 100644 --- a/audio/kmix/pkg-plist +++ b/audio/kmix/pkg-plist @@ -1,101 +1,100 @@ bin/kmix bin/kmixctrl bin/kmixremote etc/xdg/autostart/kmix_autostart.desktop etc/xdg/autostart/restore_kmix_volumes.desktop lib/libkmixcore.so.5 -lib/libkmixcore.so.5.13.80 +lib/libkmixcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kf5/kded/kmixd.so -%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mixer.so share/applications/org.kde.kmix.desktop +share/config.kcfg/kmixsettings.kcfg share/dbus-1/interfaces/org.kde.kmix.control.xml share/dbus-1/interfaces/org.kde.kmix.mixer.xml share/dbus-1/interfaces/org.kde.kmix.mixset.xml share/icons/hicolor/128x128/actions/kmix.png share/icons/hicolor/16x16/actions/kmix.png share/icons/hicolor/32x32/actions/kmix.png share/icons/hicolor/48x48/actions/kmix.png share/icons/hicolor/64x64/actions/kmix.png share/knotifications5/kmix.notifyrc %%DATADIR%%/pics/show-mixer.png share/locale/ar/LC_MESSAGES/kmix.mo share/locale/bg/LC_MESSAGES/kmix.mo share/locale/bs/LC_MESSAGES/kmix.mo share/locale/ca/LC_MESSAGES/kmix.mo share/locale/ca@valencia/LC_MESSAGES/kmix.mo share/locale/cs/LC_MESSAGES/kmix.mo share/locale/da/LC_MESSAGES/kmix.mo share/locale/de/LC_MESSAGES/kmix.mo share/locale/el/LC_MESSAGES/kmix.mo share/locale/en_GB/LC_MESSAGES/kmix.mo share/locale/eo/LC_MESSAGES/kmix.mo share/locale/es/LC_MESSAGES/kmix.mo share/locale/et/LC_MESSAGES/kmix.mo share/locale/eu/LC_MESSAGES/kmix.mo share/locale/fa/LC_MESSAGES/kmix.mo share/locale/fi/LC_MESSAGES/kmix.mo share/locale/fr/LC_MESSAGES/kmix.mo share/locale/ga/LC_MESSAGES/kmix.mo share/locale/gl/LC_MESSAGES/kmix.mo share/locale/he/LC_MESSAGES/kmix.mo share/locale/hi/LC_MESSAGES/kmix.mo share/locale/hr/LC_MESSAGES/kmix.mo share/locale/hu/LC_MESSAGES/kmix.mo share/locale/ia/LC_MESSAGES/kmix.mo share/locale/id/LC_MESSAGES/kmix.mo share/locale/is/LC_MESSAGES/kmix.mo share/locale/it/LC_MESSAGES/kmix.mo share/locale/ja/LC_MESSAGES/kmix.mo share/locale/kk/LC_MESSAGES/kmix.mo share/locale/km/LC_MESSAGES/kmix.mo share/locale/ko/LC_MESSAGES/kmix.mo share/locale/lt/LC_MESSAGES/kmix.mo share/locale/lv/LC_MESSAGES/kmix.mo share/locale/mr/LC_MESSAGES/kmix.mo share/locale/nb/LC_MESSAGES/kmix.mo share/locale/nds/LC_MESSAGES/kmix.mo share/locale/nl/LC_MESSAGES/kmix.mo share/locale/nn/LC_MESSAGES/kmix.mo share/locale/pa/LC_MESSAGES/kmix.mo share/locale/pl/LC_MESSAGES/kmix.mo share/locale/pt/LC_MESSAGES/kmix.mo share/locale/pt_BR/LC_MESSAGES/kmix.mo share/locale/ro/LC_MESSAGES/kmix.mo share/locale/ru/LC_MESSAGES/kmix.mo share/locale/sk/LC_MESSAGES/kmix.mo share/locale/sl/LC_MESSAGES/kmix.mo share/locale/sr/LC_MESSAGES/kmix.mo share/locale/sv/LC_MESSAGES/kmix.mo share/locale/tr/LC_MESSAGES/kmix.mo share/locale/ug/LC_MESSAGES/kmix.mo share/locale/uk/LC_MESSAGES/kmix.mo share/locale/zh_CN/LC_MESSAGES/kmix.mo share/locale/zh_TW/LC_MESSAGES/kmix.mo %%DATADIR%%/pics/mixer-ac97.png %%DATADIR%%/pics/mixer-capture.png %%DATADIR%%/pics/mixer-cd.png %%DATADIR%%/pics/mixer-digital.png %%DATADIR%%/pics/mixer-front.png %%DATADIR%%/pics/mixer-headset.png %%DATADIR%%/pics/mixer-lfe.png %%DATADIR%%/pics/mixer-line.png %%DATADIR%%/pics/mixer-master.png %%DATADIR%%/pics/mixer-microphone.png %%DATADIR%%/pics/mixer-midi.png %%DATADIR%%/pics/mixer-pcm-default.png %%DATADIR%%/pics/mixer-pcm.png %%DATADIR%%/pics/mixer-surround.png %%DATADIR%%/pics/mixer-video.png %%DATADIR%%/profiles/ALSA.TerraTec_DMX6Fire.1.default.xml %%DATADIR%%/profiles/ALSA.capture.xml %%DATADIR%%/profiles/ALSA.default.xml %%DATADIR%%/profiles/ALSA.playback.xml %%DATADIR%%/profiles/MPRIS2.default.xml %%DATADIR%%/profiles/OSS.default.xml %%DATADIR%%/profiles/PulseAudio.default.xml %%DATADIR%%/profiles/SUNAudio.default.xml share/metainfo/org.kde.kmix.appdata.xml share/kservices5/kmixctrl_restore.desktop -share/kservices5/plasma-dataengine-mixer.desktop share/kxmlgui5/kmix/kmixui.rc -share/plasma/services/mixer.operations +share/qlogging-categories5/kmix.categories diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index ee0e8efb882f..72227095bf1c 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706202 -SHA256 (KDE/release-service/20.12.3/kwave-20.12.3.tar.xz) = fad7f66738f218b6bf99ebdf02544675deca7595112af37a50f9d3aff948a1ad -SIZE (KDE/release-service/20.12.3/kwave-20.12.3.tar.xz) = 6911104 +TIMESTAMP = 1618579085 +SHA256 (KDE/release-service/21.04.0/kwave-21.04.0.tar.xz) = d14c028bcaab8793320cf5fbc8f1cf04891b807f77e9d6cf3162dee46ad7c6f3 +SIZE (KDE/release-service/21.04.0/kwave-21.04.0.tar.xz) = 6880684 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 497ce11ff100..2b5e3a585358 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706204 -SHA256 (KDE/release-service/20.12.3/libkcddb-20.12.3.tar.xz) = 206229847e0fdde6d1cb36c7be87bd81e7723dd4774d06a872279a4b4390ee54 -SIZE (KDE/release-service/20.12.3/libkcddb-20.12.3.tar.xz) = 425180 +TIMESTAMP = 1618579086 +SHA256 (KDE/release-service/21.04.0/libkcddb-21.04.0.tar.xz) = 997f61de1e98adf6d07eb51823bc7df3a9d686230e91e5e86bbd529b8185ebbb +SIZE (KDE/release-service/21.04.0/libkcddb-21.04.0.tar.xz) = 424436 diff --git a/audio/libkcddb/pkg-plist b/audio/libkcddb/pkg-plist index a3ddc1f54e11..7b3671bd65fc 100644 --- a/audio/libkcddb/pkg-plist +++ b/audio/libkcddb/pkg-plist @@ -1,131 +1,132 @@ include/KF5/KCddb/Categories include/KF5/KCddb/Cdinfo include/KF5/KCddb/Client include/KF5/KCddb/Genres include/KF5/KCddb/Kcddb include/KF5/KCddb/KcddbConfig include/KF5/KCddb/categories.h include/KF5/KCddb/cdinfo.h include/KF5/KCddb/client.h include/KF5/KCddb/configbase.h include/KF5/KCddb/genres.h include/KF5/KCddb/kcddb.h include/KF5/KCddb/kcddb_export.h include/KF5/KCddb/kcddbconfig.h include/KF5/kcddb_version.h lib/cmake/KF5Cddb/KF5CddbConfig.cmake lib/cmake/KF5Cddb/KF5CddbConfigVersion.cmake lib/cmake/KF5Cddb/KF5CddbTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Cddb/KF5CddbTargets.cmake lib/libKF5Cddb.so lib/libKF5Cddb.so.5 lib/libKF5Cddb.so.5.0.0 %%QT_MKSPECDIR%%/modules/qt_KCddb.pri %%QT_PLUGINDIR%%/kcm_cddb.so share/config.kcfg/libkcddb5.kcfg share/kservices5/libkcddb.desktop share/locale/ar/LC_MESSAGES/kcmcddb.mo share/locale/ar/LC_MESSAGES/libkcddb.mo share/locale/ast/LC_MESSAGES/kcmcddb.mo share/locale/bg/LC_MESSAGES/kcmcddb.mo share/locale/bg/LC_MESSAGES/libkcddb.mo share/locale/bs/LC_MESSAGES/kcmcddb.mo share/locale/bs/LC_MESSAGES/libkcddb.mo share/locale/ca/LC_MESSAGES/kcmcddb.mo share/locale/ca/LC_MESSAGES/libkcddb.mo share/locale/ca@valencia/LC_MESSAGES/kcmcddb.mo share/locale/ca@valencia/LC_MESSAGES/libkcddb.mo share/locale/cs/LC_MESSAGES/kcmcddb.mo share/locale/cs/LC_MESSAGES/libkcddb.mo share/locale/da/LC_MESSAGES/kcmcddb.mo share/locale/da/LC_MESSAGES/libkcddb.mo share/locale/de/LC_MESSAGES/kcmcddb.mo share/locale/de/LC_MESSAGES/libkcddb.mo share/locale/el/LC_MESSAGES/kcmcddb.mo share/locale/el/LC_MESSAGES/libkcddb.mo share/locale/en_GB/LC_MESSAGES/kcmcddb.mo share/locale/en_GB/LC_MESSAGES/libkcddb.mo share/locale/eo/LC_MESSAGES/kcmcddb.mo share/locale/eo/LC_MESSAGES/libkcddb.mo share/locale/es/LC_MESSAGES/kcmcddb.mo share/locale/es/LC_MESSAGES/libkcddb.mo share/locale/et/LC_MESSAGES/kcmcddb.mo share/locale/et/LC_MESSAGES/libkcddb.mo share/locale/eu/LC_MESSAGES/kcmcddb.mo share/locale/eu/LC_MESSAGES/libkcddb.mo share/locale/fa/LC_MESSAGES/kcmcddb.mo share/locale/fa/LC_MESSAGES/libkcddb.mo share/locale/fi/LC_MESSAGES/kcmcddb.mo share/locale/fi/LC_MESSAGES/libkcddb.mo share/locale/fr/LC_MESSAGES/kcmcddb.mo share/locale/fr/LC_MESSAGES/libkcddb.mo share/locale/ga/LC_MESSAGES/kcmcddb.mo share/locale/ga/LC_MESSAGES/libkcddb.mo share/locale/gl/LC_MESSAGES/kcmcddb.mo share/locale/gl/LC_MESSAGES/libkcddb.mo share/locale/he/LC_MESSAGES/kcmcddb.mo share/locale/he/LC_MESSAGES/libkcddb.mo share/locale/hi/LC_MESSAGES/kcmcddb.mo share/locale/hi/LC_MESSAGES/libkcddb.mo share/locale/hr/LC_MESSAGES/kcmcddb.mo share/locale/hr/LC_MESSAGES/libkcddb.mo share/locale/hu/LC_MESSAGES/kcmcddb.mo share/locale/hu/LC_MESSAGES/libkcddb.mo share/locale/ia/LC_MESSAGES/kcmcddb.mo share/locale/ia/LC_MESSAGES/libkcddb.mo share/locale/is/LC_MESSAGES/kcmcddb.mo share/locale/is/LC_MESSAGES/libkcddb.mo share/locale/it/LC_MESSAGES/kcmcddb.mo share/locale/it/LC_MESSAGES/libkcddb.mo share/locale/ja/LC_MESSAGES/kcmcddb.mo share/locale/ja/LC_MESSAGES/libkcddb.mo share/locale/kk/LC_MESSAGES/kcmcddb.mo share/locale/kk/LC_MESSAGES/libkcddb.mo share/locale/km/LC_MESSAGES/kcmcddb.mo share/locale/km/LC_MESSAGES/libkcddb.mo share/locale/ko/LC_MESSAGES/kcmcddb.mo share/locale/ko/LC_MESSAGES/libkcddb.mo share/locale/lt/LC_MESSAGES/kcmcddb.mo share/locale/lt/LC_MESSAGES/libkcddb.mo share/locale/lv/LC_MESSAGES/kcmcddb.mo share/locale/lv/LC_MESSAGES/libkcddb.mo share/locale/mr/LC_MESSAGES/kcmcddb.mo share/locale/mr/LC_MESSAGES/libkcddb.mo share/locale/nb/LC_MESSAGES/kcmcddb.mo share/locale/nb/LC_MESSAGES/libkcddb.mo share/locale/nds/LC_MESSAGES/kcmcddb.mo share/locale/nds/LC_MESSAGES/libkcddb.mo share/locale/nl/LC_MESSAGES/kcmcddb.mo share/locale/nl/LC_MESSAGES/libkcddb.mo share/locale/nn/LC_MESSAGES/kcmcddb.mo share/locale/nn/LC_MESSAGES/libkcddb.mo share/locale/pa/LC_MESSAGES/kcmcddb.mo share/locale/pa/LC_MESSAGES/libkcddb.mo share/locale/pl/LC_MESSAGES/kcmcddb.mo share/locale/pl/LC_MESSAGES/libkcddb.mo share/locale/pt/LC_MESSAGES/kcmcddb.mo share/locale/pt/LC_MESSAGES/libkcddb.mo share/locale/pt_BR/LC_MESSAGES/kcmcddb.mo share/locale/pt_BR/LC_MESSAGES/libkcddb.mo share/locale/ro/LC_MESSAGES/kcmcddb.mo share/locale/ro/LC_MESSAGES/libkcddb.mo share/locale/ru/LC_MESSAGES/kcmcddb.mo share/locale/ru/LC_MESSAGES/libkcddb.mo share/locale/sk/LC_MESSAGES/kcmcddb.mo share/locale/sk/LC_MESSAGES/libkcddb.mo share/locale/sl/LC_MESSAGES/kcmcddb.mo share/locale/sl/LC_MESSAGES/libkcddb.mo share/locale/sr/LC_MESSAGES/kcmcddb.mo share/locale/sr/LC_MESSAGES/libkcddb.mo share/locale/sv/LC_MESSAGES/kcmcddb.mo share/locale/sv/LC_MESSAGES/libkcddb.mo share/locale/tr/LC_MESSAGES/kcmcddb.mo share/locale/tr/LC_MESSAGES/libkcddb.mo share/locale/ug/LC_MESSAGES/kcmcddb.mo share/locale/ug/LC_MESSAGES/libkcddb.mo share/locale/uk/LC_MESSAGES/kcmcddb.mo share/locale/uk/LC_MESSAGES/libkcddb.mo share/locale/zh_CN/LC_MESSAGES/kcmcddb.mo share/locale/zh_CN/LC_MESSAGES/libkcddb.mo share/locale/zh_TW/LC_MESSAGES/kcmcddb.mo share/locale/zh_TW/LC_MESSAGES/libkcddb.mo +share/qlogging-categories5/libkcddb.categories diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 34838c964d0e..231a8b368a85 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706202 -SHA256 (KDE/release-service/20.12.3/libkcompactdisc-20.12.3.tar.xz) = 3c40d137cb26173a62816a7a3a1dba272b2f1eebd8fb6438a65cda49f35154a4 -SIZE (KDE/release-service/20.12.3/libkcompactdisc-20.12.3.tar.xz) = 96728 +TIMESTAMP = 1618579087 +SHA256 (KDE/release-service/21.04.0/libkcompactdisc-21.04.0.tar.xz) = c220b367edb84c471dd13469e2aa2e2ae0af2551919c82c19eed6ab7018b6aea +SIZE (KDE/release-service/21.04.0/libkcompactdisc-21.04.0.tar.xz) = 96696 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index bc97717bdcf5..4fc75cb04c43 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706205 -SHA256 (KDE/release-service/20.12.3/akonadi-20.12.3.tar.xz) = b919ac1d1c8534c304925ba51f7f79b1b5fd8fa21fb906ee3a5829c403f4922d -SIZE (KDE/release-service/20.12.3/akonadi-20.12.3.tar.xz) = 1593588 +TIMESTAMP = 1618579087 +SHA256 (KDE/release-service/21.04.0/akonadi-21.04.0.tar.xz) = 3fb7424fe9096739780bf87391509fa1259d59de679f1b62f2beb18d796741cd +SIZE (KDE/release-service/21.04.0/akonadi-21.04.0.tar.xz) = 1598612 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 6beea7c511f2..1ceb1112cde7 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706219 -SHA256 (KDE/release-service/20.12.3/akonadi-calendar-tools-20.12.3.tar.xz) = 468e2e05f0784a3310f3f355003ba9630605214c0ae6f33e2154c818b471acb9 -SIZE (KDE/release-service/20.12.3/akonadi-calendar-tools-20.12.3.tar.xz) = 224860 +TIMESTAMP = 1618579088 +SHA256 (KDE/release-service/21.04.0/akonadi-calendar-tools-21.04.0.tar.xz) = f509f829336b320f835389bdc6ee20a513d3c0e174a069621d537b1a020b13bc +SIZE (KDE/release-service/21.04.0/akonadi-calendar-tools-21.04.0.tar.xz) = 228368 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 79ea65f3147e..d07eca616245 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706208 -SHA256 (KDE/release-service/20.12.3/akonadi-import-wizard-20.12.3.tar.xz) = f6718d41395a191077a18b3d20940083a81efcdd9eb489371a95308e9ff70d20 -SIZE (KDE/release-service/20.12.3/akonadi-import-wizard-20.12.3.tar.xz) = 506664 +TIMESTAMP = 1618579089 +SHA256 (KDE/release-service/21.04.0/akonadi-import-wizard-21.04.0.tar.xz) = b0550d12a791f72fea3bf567d2f626226f9feecccd3e4571fe443fe5aabfbdc5 +SIZE (KDE/release-service/21.04.0/akonadi-import-wizard-21.04.0.tar.xz) = 511128 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 574274b0b57f..fda79ac10c73 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706208 -SHA256 (KDE/release-service/20.12.3/akonadiconsole-20.12.3.tar.xz) = d4797c229612a6c72c5804840f492e7fe5a23afb3602e943a948d444fda96a6a -SIZE (KDE/release-service/20.12.3/akonadiconsole-20.12.3.tar.xz) = 198064 +TIMESTAMP = 1618579090 +SHA256 (KDE/release-service/21.04.0/akonadiconsole-21.04.0.tar.xz) = 273e6262a8247ed7c007b78accc66d5e42139efe9a743beb3b9c187e7b55ce50 +SIZE (KDE/release-service/21.04.0/akonadiconsole-21.04.0.tar.xz) = 201776 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 0c7313b9746b..f0629475d985 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706218 -SHA256 (KDE/release-service/20.12.3/akregator-20.12.3.tar.xz) = 0b154aea2e1c87ba1f103931ba5e82f2bf6582e4a2779bd6407826739c8bd981 -SIZE (KDE/release-service/20.12.3/akregator-20.12.3.tar.xz) = 2206188 +TIMESTAMP = 1618579091 +SHA256 (KDE/release-service/21.04.0/akregator-21.04.0.tar.xz) = 550bd98de26af1e4bcce0744e5a445c7a500b04ebafb1185402841b874d7a3df +SIZE (KDE/release-service/21.04.0/akregator-21.04.0.tar.xz) = 2213808 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 63c15a302054..0d3b668822ec 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706210 -SHA256 (KDE/release-service/20.12.3/grantlee-editor-20.12.3.tar.xz) = 6c7e6c6799d25d96b62bef7460e893ff529dcbd1a79c42f0fd1666b8af88d8d8 -SIZE (KDE/release-service/20.12.3/grantlee-editor-20.12.3.tar.xz) = 107424 +TIMESTAMP = 1618579091 +SHA256 (KDE/release-service/21.04.0/grantlee-editor-21.04.0.tar.xz) = d708a102dda808d6b7983b574b230b35d20d07f9f5fc8e19fbb170ea86d9cc65 +SIZE (KDE/release-service/21.04.0/grantlee-editor-21.04.0.tar.xz) = 111752 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 8fada876307b..7e7f1486f0a0 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706218 -SHA256 (KDE/release-service/20.12.3/grantleetheme-20.12.3.tar.xz) = e33dacd0d4e51e69be2590b4916cfcd4db5ad6ce57d4f8d97f6326e4eb2a3a7d -SIZE (KDE/release-service/20.12.3/grantleetheme-20.12.3.tar.xz) = 56540 +TIMESTAMP = 1618579092 +SHA256 (KDE/release-service/21.04.0/grantleetheme-21.04.0.tar.xz) = 9afa6d2414a67362f2c86c6d0379375feafa80323e15fd8fd70131a3d589adcb +SIZE (KDE/release-service/21.04.0/grantleetheme-21.04.0.tar.xz) = 60596 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index a7fa72d741bc..87f6089d4fdf 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706211 -SHA256 (KDE/release-service/20.12.3/itinerary-20.12.3.tar.xz) = 37a711e3c35841074a4c0cea47635867a47539053dfb53978dc3941c824bf34a -SIZE (KDE/release-service/20.12.3/itinerary-20.12.3.tar.xz) = 334116 +TIMESTAMP = 1618579093 +SHA256 (KDE/release-service/21.04.0/itinerary-21.04.0.tar.xz) = 96c995db8f0a701082ce3a9e131afc8d93b74ccea60f19ee7630218fcb2e5e8c +SIZE (KDE/release-service/21.04.0/itinerary-21.04.0.tar.xz) = 377224 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index e7c3405daca1..a1581ab260e4 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706216 -SHA256 (KDE/release-service/20.12.3/kaddressbook-20.12.3.tar.xz) = 83eda4fd1e4caeccb4de6c0c3368056307b19a7f390b92be605c10676967d795 -SIZE (KDE/release-service/20.12.3/kaddressbook-20.12.3.tar.xz) = 3263556 +TIMESTAMP = 1618579094 +SHA256 (KDE/release-service/21.04.0/kaddressbook-21.04.0.tar.xz) = 740df0cad1a5708657bb54c038a9fb3bfe2176e493dd0a1a14c5a226896634dd +SIZE (KDE/release-service/21.04.0/kaddressbook-21.04.0.tar.xz) = 3261584 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 3e512c439e1b..6da61d595b20 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706216 -SHA256 (KDE/release-service/20.12.3/kalarm-20.12.3.tar.xz) = df542b1a9f1a3eb226c25060fa196a0eecce0ac621de2a16f6bc6d58ea4e795e -SIZE (KDE/release-service/20.12.3/kalarm-20.12.3.tar.xz) = 2110400 +TIMESTAMP = 1618579095 +SHA256 (KDE/release-service/21.04.0/kalarm-21.04.0.tar.xz) = 2250a8fee91268be83bc5125858290e6a3239da5dd5810688f09364dad619efd +SIZE (KDE/release-service/21.04.0/kalarm-21.04.0.tar.xz) = 2074536 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index fa911462c7ca..2fa643f68f9f 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706220 -SHA256 (KDE/release-service/20.12.3/kcharselect-20.12.3.tar.xz) = 83a1a8b0850d4b3c335f1b76a553ff490365928cf34e38963e941fe82933e9e3 -SIZE (KDE/release-service/20.12.3/kcharselect-20.12.3.tar.xz) = 366696 +TIMESTAMP = 1618579096 +SHA256 (KDE/release-service/21.04.0/kcharselect-21.04.0.tar.xz) = dd02c6f44258917fd7c6154d560a2d84d539579e98bbc0a6bcfdc1cb272ee7be +SIZE (KDE/release-service/21.04.0/kcharselect-21.04.0.tar.xz) = 366660 diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 952b091f1e32..06384369de82 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -1,35 +1,34 @@ PORTNAME= kdeconnect-kde DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Support for KDE to interface between your phone and your computer LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfakekey.so:x11/libfakekey \ libKF5PulseAudioQt.so:audio/pulseaudio-qt BUILD_DEPENDS= kpeoplevcard>0:net/kpeoplevcard RUN_DEPENDS= sshpass:security/sshpass \ sshfs:sysutils/fusefs-sshfs \ kpeoplevcard>0:net/kpeoplevcard USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig qca qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons doctools ecm i18n iconthemes \ itemviews jobwidgets kcmutils kio kirigami2 notifications \ people service solid wayland widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui multimedia network \ testlib widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext xtst USE_LDCONFIG= ${QT_QMLDIR}/org/kde/kdeconnect OPTIONS_DEFINE= DOCS KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_VERSION} .include diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index c1172385d139..ad923cea423a 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706221 -SHA256 (KDE/release-service/20.12.3/kdeconnect-kde-20.12.3.tar.xz) = 0198a5de49b168485f67e47b0f01f36fef78a3f8be796e8876f3cb6c819608a8 -SIZE (KDE/release-service/20.12.3/kdeconnect-kde-20.12.3.tar.xz) = 551780 +TIMESTAMP = 1618579096 +SHA256 (KDE/release-service/21.04.0/kdeconnect-kde-21.04.0.tar.xz) = f7c1aecd4e312367a164bbf43f73e657f99b851eece7d72525231522221476fd +SIZE (KDE/release-service/21.04.0/kdeconnect-kde-21.04.0.tar.xz) = 559608 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 18f13c61e517..2ee791016e41 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,676 +1,682 @@ 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.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so +%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.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/kdeconnect/kdeconnect_findthisdevice_config.qml -share/kdeconnect/kdeconnect_pausemusic_config.qml -share/kdeconnect/kdeconnect_runcommand_config.qml -share/kdeconnect/kdeconnect_sendnotifications_config.qml -share/kdeconnect/kdeconnect_share_config.qml 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.handler.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_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg +share/kdeconnect/kdeconnect_findthisdevice_config.qml +share/kdeconnect/kdeconnect_pausemusic_config.qml +share/kdeconnect/kdeconnect_runcommand_config.qml +share/kdeconnect/kdeconnect_sendnotifications_config.qml +share/kdeconnect/kdeconnect_share_config.qml 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-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.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-settings.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-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-app.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-indicator.mo +share/locale/de/LC_MESSAGES/kdeconnect-interfaces.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-settings.mo +share/locale/de/LC_MESSAGES/kdeconnect-sms.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-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.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-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.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-settings.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-app.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-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.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-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.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-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.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-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.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-settings.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-app.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-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.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-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.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-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.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/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.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/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/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/Connectivity.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/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 791405360c3d..0ae1124b085b 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706223 -SHA256 (KDE/release-service/20.12.3/kdepim-addons-20.12.3.tar.xz) = b76135782d910b787eef321a18acb81cf637fcfadee954cf482f7be19722a671 -SIZE (KDE/release-service/20.12.3/kdepim-addons-20.12.3.tar.xz) = 2145600 +TIMESTAMP = 1618579097 +SHA256 (KDE/release-service/21.04.0/kdepim-addons-21.04.0.tar.xz) = bfd1d52d8e9e651407e90c7cbae2a421bcb98b9d057c2e80178694507bbab40b +SIZE (KDE/release-service/21.04.0/kdepim-addons-21.04.0.tar.xz) = 2159480 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index fa6a3adc8054..5663a18ebcbb 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706220 -SHA256 (KDE/release-service/20.12.3/kdepim-runtime-20.12.3.tar.xz) = bb6b315389c4b5cfc1d1737d70feed1c7f3bf50c5a01f88efda061b7e666e352 -SIZE (KDE/release-service/20.12.3/kdepim-runtime-20.12.3.tar.xz) = 1801580 +TIMESTAMP = 1618579098 +SHA256 (KDE/release-service/21.04.0/kdepim-runtime-21.04.0.tar.xz) = ead3479e34ca942516d33383bca4bc1d4fd9f81858e12421f935d41d3dd42ed4 +SIZE (KDE/release-service/21.04.0/kdepim-runtime-21.04.0.tar.xz) = 1812356 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index df26269ebb5a..ffd72b3b4a1b 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706222 -SHA256 (KDE/release-service/20.12.3/keditbookmarks-20.12.3.tar.xz) = 6823446698d80e6ce59601f1772ec316ad205954cac8be6381456f714c6dd759 -SIZE (KDE/release-service/20.12.3/keditbookmarks-20.12.3.tar.xz) = 191892 +TIMESTAMP = 1618579099 +SHA256 (KDE/release-service/21.04.0/keditbookmarks-21.04.0.tar.xz) = 8c9e69198d3351eef02531562a53ccef6e6781af95ea9cb7d0b49e07d313b3a9 +SIZE (KDE/release-service/21.04.0/keditbookmarks-21.04.0.tar.xz) = 190600 diff --git a/deskutils/keditbookmarks/pkg-plist b/deskutils/keditbookmarks/pkg-plist index f91991cadab7..a5eb56db1766 100644 --- a/deskutils/keditbookmarks/pkg-plist +++ b/deskutils/keditbookmarks/pkg-plist @@ -1,84 +1,82 @@ bin/kbookmarkmerger bin/keditbookmarks lib/libkbookmarkmodel_private.so lib/libkbookmarkmodel_private.so.5.97.0 lib/libkbookmarkmodel_private.so.6 man/ca/man1/kbookmarkmerger.1.gz man/da/man1/kbookmarkmerger.1.gz man/de/man1/kbookmarkmerger.1.gz man/el/man1/kbookmarkmerger.1.gz man/es/man1/kbookmarkmerger.1.gz man/et/man1/kbookmarkmerger.1.gz man/fr/man1/kbookmarkmerger.1.gz man/it/man1/kbookmarkmerger.1.gz man/man1/kbookmarkmerger.1.gz man/nb/man1/kbookmarkmerger.1.gz man/nl/man1/kbookmarkmerger.1.gz man/pl/man1/kbookmarkmerger.1.gz man/pt/man1/kbookmarkmerger.1.gz man/pt_BR/man1/kbookmarkmerger.1.gz man/ru/man1/kbookmarkmerger.1.gz man/sr/man1/kbookmarkmerger.1.gz man/sv/man1/kbookmarkmerger.1.gz man/uk/man1/kbookmarkmerger.1.gz share/applications/org.kde.keditbookmarks.desktop share/config.kcfg/keditbookmarks.kcfg -share/kxmlgui5/keditbookmarks/keditbookmarks-genui.rc -share/kxmlgui5/keditbookmarks/keditbookmarksui.rc share/locale/ar/LC_MESSAGES/keditbookmarks.mo share/locale/ast/LC_MESSAGES/keditbookmarks.mo share/locale/bg/LC_MESSAGES/keditbookmarks.mo share/locale/bs/LC_MESSAGES/keditbookmarks.mo share/locale/ca/LC_MESSAGES/keditbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/keditbookmarks.mo share/locale/cs/LC_MESSAGES/keditbookmarks.mo share/locale/da/LC_MESSAGES/keditbookmarks.mo share/locale/de/LC_MESSAGES/keditbookmarks.mo share/locale/el/LC_MESSAGES/keditbookmarks.mo share/locale/en_GB/LC_MESSAGES/keditbookmarks.mo share/locale/eo/LC_MESSAGES/keditbookmarks.mo share/locale/es/LC_MESSAGES/keditbookmarks.mo share/locale/et/LC_MESSAGES/keditbookmarks.mo share/locale/eu/LC_MESSAGES/keditbookmarks.mo share/locale/fa/LC_MESSAGES/keditbookmarks.mo share/locale/fi/LC_MESSAGES/keditbookmarks.mo share/locale/fr/LC_MESSAGES/keditbookmarks.mo share/locale/ga/LC_MESSAGES/keditbookmarks.mo share/locale/gl/LC_MESSAGES/keditbookmarks.mo share/locale/he/LC_MESSAGES/keditbookmarks.mo share/locale/hi/LC_MESSAGES/keditbookmarks.mo share/locale/hr/LC_MESSAGES/keditbookmarks.mo share/locale/hu/LC_MESSAGES/keditbookmarks.mo share/locale/ia/LC_MESSAGES/keditbookmarks.mo share/locale/id/LC_MESSAGES/keditbookmarks.mo share/locale/is/LC_MESSAGES/keditbookmarks.mo share/locale/it/LC_MESSAGES/keditbookmarks.mo share/locale/ja/LC_MESSAGES/keditbookmarks.mo share/locale/kk/LC_MESSAGES/keditbookmarks.mo share/locale/km/LC_MESSAGES/keditbookmarks.mo share/locale/ko/LC_MESSAGES/keditbookmarks.mo share/locale/lt/LC_MESSAGES/keditbookmarks.mo share/locale/lv/LC_MESSAGES/keditbookmarks.mo share/locale/ml/LC_MESSAGES/keditbookmarks.mo share/locale/mr/LC_MESSAGES/keditbookmarks.mo share/locale/nb/LC_MESSAGES/keditbookmarks.mo share/locale/nds/LC_MESSAGES/keditbookmarks.mo share/locale/nl/LC_MESSAGES/keditbookmarks.mo share/locale/nn/LC_MESSAGES/keditbookmarks.mo share/locale/pa/LC_MESSAGES/keditbookmarks.mo share/locale/pl/LC_MESSAGES/keditbookmarks.mo share/locale/pt/LC_MESSAGES/keditbookmarks.mo share/locale/pt_BR/LC_MESSAGES/keditbookmarks.mo share/locale/ro/LC_MESSAGES/keditbookmarks.mo share/locale/ru/LC_MESSAGES/keditbookmarks.mo share/locale/sk/LC_MESSAGES/keditbookmarks.mo share/locale/sl/LC_MESSAGES/keditbookmarks.mo share/locale/sr/LC_MESSAGES/keditbookmarks.mo share/locale/sv/LC_MESSAGES/keditbookmarks.mo share/locale/tr/LC_MESSAGES/keditbookmarks.mo share/locale/ug/LC_MESSAGES/keditbookmarks.mo share/locale/uk/LC_MESSAGES/keditbookmarks.mo share/locale/wa/LC_MESSAGES/keditbookmarks.mo share/locale/zh_CN/LC_MESSAGES/keditbookmarks.mo share/locale/zh_TW/LC_MESSAGES/keditbookmarks.mo share/qlogging-categories5/keditbookmarks.categories diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 35a844ce48c0..e7419d18acdf 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706206 -SHA256 (KDE/release-service/20.12.3/kfind-20.12.3.tar.xz) = e6f608fcd717021bc2f4c69def81f18361c05abb72503deb268d219fb8a6f167 -SIZE (KDE/release-service/20.12.3/kfind-20.12.3.tar.xz) = 278656 +TIMESTAMP = 1618579100 +SHA256 (KDE/release-service/21.04.0/kfind-21.04.0.tar.xz) = 72bfa8708e0e627fff6cc78693f6c778ba27cebdc65f84c69189385de5814284 +SIZE (KDE/release-service/21.04.0/kfind-21.04.0.tar.xz) = 271640 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 9652b18b1db8..432e25ee02f7 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706205 -SHA256 (KDE/release-service/20.12.3/kmail-account-wizard-20.12.3.tar.xz) = 16143e040aa0eb4a608557b9ba01cdec2be371d90adf358df8767b5ba8234cb6 -SIZE (KDE/release-service/20.12.3/kmail-account-wizard-20.12.3.tar.xz) = 160704 +TIMESTAMP = 1618579101 +SHA256 (KDE/release-service/21.04.0/kmail-account-wizard-21.04.0.tar.xz) = 0cc0f1b49a6687dfdeafcfbbf0d909b10dde2206eab2138b39307a59a6e45449 +SIZE (KDE/release-service/21.04.0/kmail-account-wizard-21.04.0.tar.xz) = 165656 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 9fb029a346e2..56cd1887dc28 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706212 -SHA256 (KDE/release-service/20.12.3/kmail-20.12.3.tar.xz) = 411e4d40ae86105b879a11b0b1a80686ad63737089f22508565d1880f7c45ca4 -SIZE (KDE/release-service/20.12.3/kmail-20.12.3.tar.xz) = 4671256 +TIMESTAMP = 1618579100 +SHA256 (KDE/release-service/21.04.0/kmail-21.04.0.tar.xz) = dc01c873f918ec780692e8cade59d5dba595d42ada9d4fc0d28d22865788f085 +SIZE (KDE/release-service/21.04.0/kmail-21.04.0.tar.xz) = 6298468 diff --git a/deskutils/kmail/pkg-plist b/deskutils/kmail/pkg-plist index 7337f4ec32e1..1550b3fe1a94 100644 --- a/deskutils/kmail/pkg-plist +++ b/deskutils/kmail/pkg-plist @@ -1,401 +1,404 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent +bin/akonadi_mailmerge_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact5/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop +share/akonadi/agents/mailmergeagent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop +share/applications/org.kde.kmail-refresh-settings.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop -share/applications/org.kde.kmail-refresh-settings.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc +share/knotifications5/akonadi_mailmerge_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/da/LC_MESSAGES/kmail-refresh-settings.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/el/LC_MESSAGES/kmail-refresh-settings.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/et/LC_MESSAGES/kmail-refresh-settings.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index 3452c8fcfbb3..e5bfc2cf7895 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706217 -SHA256 (KDE/release-service/20.12.3/knotes-20.12.3.tar.xz) = 06d6f3e444a29b03e6b8cee42b867f0373e71a5b94f65469cd163dcab114c4d8 -SIZE (KDE/release-service/20.12.3/knotes-20.12.3.tar.xz) = 329536 +TIMESTAMP = 1618579102 +SHA256 (KDE/release-service/21.04.0/knotes-21.04.0.tar.xz) = 581858d55d85f43f88ca690aae039cc5f80c02516501388c916b66fbab02c17f +SIZE (KDE/release-service/21.04.0/knotes-21.04.0.tar.xz) = 334492 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 4d56dddfeb68..a06f5ae08d64 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706207 -SHA256 (KDE/release-service/20.12.3/kontact-20.12.3.tar.xz) = b4c56888239f525af814172e221ee6f2cdea17d2ddc20e28fa5443168451da6f -SIZE (KDE/release-service/20.12.3/kontact-20.12.3.tar.xz) = 791076 +TIMESTAMP = 1618579103 +SHA256 (KDE/release-service/21.04.0/kontact-21.04.0.tar.xz) = e92ccd70b3ba9f4533db615af37618b4c9ea7d28a35598ee430cb339cf40a121 +SIZE (KDE/release-service/21.04.0/kontact-21.04.0.tar.xz) = 794412 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index a11d589143d2..cde9ed3ff1eb 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706213 -SHA256 (KDE/release-service/20.12.3/korganizer-20.12.3.tar.xz) = fc20c61e99778fce7e67c5514010e4436418a74de160191c95b417036b3ebf9a -SIZE (KDE/release-service/20.12.3/korganizer-20.12.3.tar.xz) = 2246496 +TIMESTAMP = 1618579104 +SHA256 (KDE/release-service/21.04.0/korganizer-21.04.0.tar.xz) = d0b04b6cab2c0498d30f3b59e51b7ae3e784376ef0d8246973049761bfe5cb7e +SIZE (KDE/release-service/21.04.0/korganizer-21.04.0.tar.xz) = 2324568 diff --git a/deskutils/korganizer/pkg-plist b/deskutils/korganizer/pkg-plist index 79956a517b03..af2d015362a6 100644 --- a/deskutils/korganizer/pkg-plist +++ b/deskutils/korganizer/pkg-plist @@ -1,188 +1,185 @@ bin/korgac bin/korganizer etc/xdg/autostart/org.kde.korgac.desktop share/dbus-1/services/org.kde.korganizer.service share/qlogging-categories5/korganizer.categories share/qlogging-categories5/korganizer.renamecategories lib/libkorganizer_core.so lib/libkorganizer_core.so.5 lib/libkorganizer_core.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkorganizer_interfaces.so lib/libkorganizer_interfaces.so.5 lib/libkorganizer_interfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkorganizerprivate.so.5 lib/libkorganizerprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_apptsummary.so %%QT_PLUGINDIR%%/kcm_korganizer.so %%QT_PLUGINDIR%%/kcm_sdsummary.so %%QT_PLUGINDIR%%/kcm_todosummary.so %%QT_PLUGINDIR%%/kontact5/kontact_journalplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_korganizerplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_specialdatesplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_todoplugin.so %%QT_PLUGINDIR%%/korganizerpart.so share/applications/korganizer-import.desktop share/applications/korganizer-view.desktop share/applications/org.kde.korganizer.desktop share/config.kcfg/korganizer.kcfg share/dbus-1/interfaces/org.kde.Korganizer.Calendar.xml share/dbus-1/interfaces/org.kde.korganizer.KOrgac.xml share/dbus-1/interfaces/org.kde.korganizer.Korganizer.xml share/dbus-1/services/org.kde.korgac.service share/icons/hicolor/128x128/apps/korg-journal.png share/icons/hicolor/128x128/apps/korg-todo.png share/icons/hicolor/128x128/apps/korganizer.png share/icons/hicolor/128x128/apps/quickview.png share/icons/hicolor/16x16/apps/korg-journal.png share/icons/hicolor/16x16/apps/korg-todo.png share/icons/hicolor/16x16/apps/korganizer.png share/icons/hicolor/16x16/apps/quickview.png share/icons/hicolor/22x22/apps/korg-journal.png share/icons/hicolor/22x22/apps/korg-todo.png share/icons/hicolor/22x22/apps/korganizer.png share/icons/hicolor/22x22/apps/quickview.png share/icons/hicolor/256x256/apps/quickview.png share/icons/hicolor/32x32/apps/korg-journal.png share/icons/hicolor/32x32/apps/korg-todo.png share/icons/hicolor/32x32/apps/korganizer.png share/icons/hicolor/32x32/apps/quickview.png share/icons/hicolor/48x48/apps/korg-journal.png share/icons/hicolor/48x48/apps/korg-todo.png share/icons/hicolor/48x48/apps/korganizer.png share/icons/hicolor/48x48/apps/quickview.png share/icons/hicolor/64x64/apps/korg-journal.png share/icons/hicolor/64x64/apps/korg-todo.png share/icons/hicolor/64x64/apps/korganizer.png share/icons/hicolor/64x64/apps/quickview.png share/icons/hicolor/scalable/apps/korg-journal.svgz share/icons/hicolor/scalable/apps/korg-todo.svg share/icons/hicolor/scalable/apps/korganizer.svg share/icons/hicolor/scalable/apps/quickview.svgz -share/icons/oxygen/16x16/actions/smallclock.png -share/icons/oxygen/16x16/actions/upindicator.png -share/icons/oxygen/22x22/actions/checkmark.png share/kconf_update/korganizer-15.08-kickoff.sh share/kconf_update/korganizer.upd share/knsrcfiles/korganizer.knsrc share/kontact/ksettingsdialog/korganizer.setdlg share/kontact/ksettingsdialog/specialdates.setdlg share/korgac/icons/hicolor/128x128/apps/korgac.png share/korgac/icons/hicolor/16x16/apps/korgac.png share/korgac/icons/hicolor/22x22/apps/korgac.png share/korgac/icons/hicolor/256x256/apps/korgac.png share/korgac/icons/hicolor/32x32/apps/korgac.png share/korgac/icons/hicolor/64x64/apps/korgac.png %%DATADIR%%/sounds/alert.wav %%DATADIR%%/sounds/icemag.wav %%DATADIR%%/sounds/lightmag.wav %%DATADIR%%/sounds/onscreen.wav %%DATADIR%%/sounds/spinout.wav share/kservices5/kcmapptsummary.desktop share/kservices5/kcmsdsummary.desktop share/kservices5/kcmtodosummary.desktop share/kservices5/kontact/journalplugin.desktop share/kservices5/kontact/korganizerplugin.desktop share/kservices5/kontact/specialdatesplugin.desktop share/kservices5/kontact/todoplugin.desktop share/kservices5/korganizer_configcolorsandfonts.desktop share/kservices5/korganizer_configdesignerfields.desktop share/kservices5/korganizer_configfreebusy.desktop share/kservices5/korganizer_configgroupscheduling.desktop share/kservices5/korganizer_configmain.desktop share/kservices5/korganizer_configplugins.desktop share/kservices5/korganizer_configtime.desktop share/kservices5/korganizer_configviews.desktop share/kservices5/korganizer_part.desktop share/kservices5/korganizer_userfeedback.desktop share/kservices5/webcal.protocol share/kservicetypes5/korganizerpart.desktop share/locale/ar/LC_MESSAGES/korgac.mo share/locale/ar/LC_MESSAGES/korganizer.mo share/locale/bg/LC_MESSAGES/korganizer.mo share/locale/bs/LC_MESSAGES/korgac.mo share/locale/bs/LC_MESSAGES/korganizer.mo share/locale/ca/LC_MESSAGES/korgac.mo share/locale/ca/LC_MESSAGES/korganizer.mo share/locale/ca@valencia/LC_MESSAGES/korgac.mo share/locale/ca@valencia/LC_MESSAGES/korganizer.mo share/locale/cs/LC_MESSAGES/korgac.mo share/locale/cs/LC_MESSAGES/korganizer.mo share/locale/da/LC_MESSAGES/korgac.mo share/locale/da/LC_MESSAGES/korganizer.mo share/locale/de/LC_MESSAGES/korgac.mo share/locale/de/LC_MESSAGES/korganizer.mo share/locale/el/LC_MESSAGES/korgac.mo share/locale/el/LC_MESSAGES/korganizer.mo share/locale/en_GB/LC_MESSAGES/korgac.mo share/locale/en_GB/LC_MESSAGES/korganizer.mo share/locale/eo/LC_MESSAGES/korganizer.mo share/locale/es/LC_MESSAGES/korgac.mo share/locale/es/LC_MESSAGES/korganizer.mo share/locale/et/LC_MESSAGES/korgac.mo share/locale/et/LC_MESSAGES/korganizer.mo share/locale/eu/LC_MESSAGES/korganizer.mo share/locale/fa/LC_MESSAGES/korganizer.mo share/locale/fi/LC_MESSAGES/korgac.mo share/locale/fi/LC_MESSAGES/korganizer.mo share/locale/fr/LC_MESSAGES/korgac.mo share/locale/fr/LC_MESSAGES/korganizer.mo share/locale/ga/LC_MESSAGES/korganizer.mo share/locale/gl/LC_MESSAGES/korgac.mo share/locale/gl/LC_MESSAGES/korganizer.mo share/locale/he/LC_MESSAGES/korganizer.mo share/locale/hi/LC_MESSAGES/korganizer.mo share/locale/hr/LC_MESSAGES/korganizer.mo share/locale/hu/LC_MESSAGES/korgac.mo share/locale/hu/LC_MESSAGES/korganizer.mo share/locale/ia/LC_MESSAGES/korgac.mo share/locale/ia/LC_MESSAGES/korganizer.mo share/locale/is/LC_MESSAGES/korganizer.mo share/locale/it/LC_MESSAGES/korgac.mo share/locale/it/LC_MESSAGES/korganizer.mo share/locale/ja/LC_MESSAGES/korgac.mo share/locale/ja/LC_MESSAGES/korganizer.mo share/locale/kk/LC_MESSAGES/korgac.mo share/locale/kk/LC_MESSAGES/korganizer.mo share/locale/km/LC_MESSAGES/korganizer.mo share/locale/ko/LC_MESSAGES/korgac.mo share/locale/ko/LC_MESSAGES/korganizer.mo share/locale/lt/LC_MESSAGES/korgac.mo share/locale/lt/LC_MESSAGES/korganizer.mo share/locale/lv/LC_MESSAGES/korganizer.mo share/locale/mr/LC_MESSAGES/korganizer.mo share/locale/nb/LC_MESSAGES/korgac.mo share/locale/nb/LC_MESSAGES/korganizer.mo share/locale/nds/LC_MESSAGES/korgac.mo share/locale/nds/LC_MESSAGES/korganizer.mo share/locale/nl/LC_MESSAGES/korgac.mo share/locale/nl/LC_MESSAGES/korganizer.mo share/locale/nn/LC_MESSAGES/korgac.mo share/locale/nn/LC_MESSAGES/korganizer.mo share/locale/pa/LC_MESSAGES/korganizer.mo share/locale/pl/LC_MESSAGES/korgac.mo share/locale/pl/LC_MESSAGES/korganizer.mo share/locale/pt/LC_MESSAGES/korgac.mo share/locale/pt/LC_MESSAGES/korganizer.mo share/locale/pt_BR/LC_MESSAGES/korgac.mo share/locale/pt_BR/LC_MESSAGES/korganizer.mo share/locale/ro/LC_MESSAGES/korgac.mo share/locale/ro/LC_MESSAGES/korganizer.mo share/locale/ru/LC_MESSAGES/korgac.mo share/locale/ru/LC_MESSAGES/korganizer.mo share/locale/sk/LC_MESSAGES/korgac.mo share/locale/sk/LC_MESSAGES/korganizer.mo share/locale/sl/LC_MESSAGES/korgac.mo share/locale/sl/LC_MESSAGES/korganizer.mo share/locale/sv/LC_MESSAGES/korgac.mo share/locale/sv/LC_MESSAGES/korganizer.mo share/locale/tr/LC_MESSAGES/korgac.mo share/locale/tr/LC_MESSAGES/korganizer.mo share/locale/ug/LC_MESSAGES/korganizer.mo share/locale/uk/LC_MESSAGES/korgac.mo share/locale/uk/LC_MESSAGES/korganizer.mo share/locale/wa/LC_MESSAGES/korganizer.mo share/locale/zh_CN/LC_MESSAGES/korgac.mo share/locale/zh_CN/LC_MESSAGES/korganizer.mo share/locale/zh_TW/LC_MESSAGES/korgac.mo share/locale/zh_TW/LC_MESSAGES/korganizer.mo share/metainfo/org.kde.korganizer.appdata.xml diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 5fb469eb1431..42e870a6b543 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706209 -SHA256 (KDE/release-service/20.12.3/kruler-20.12.3.tar.xz) = 3f7152398f31f7315be5b504d9bb55e11358ab5cee8303e6b406d8f686836fdb -SIZE (KDE/release-service/20.12.3/kruler-20.12.3.tar.xz) = 272396 +TIMESTAMP = 1618579105 +SHA256 (KDE/release-service/21.04.0/kruler-21.04.0.tar.xz) = be7cbde21b33f072bc0efb71562483cdd0ac7ca2cd8c91c4f05dbc52ce9a377b +SIZE (KDE/release-service/21.04.0/kruler-21.04.0.tar.xz) = 272928 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 8dc7d2b7d29c..496d7d22bea4 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706210 -SHA256 (KDE/release-service/20.12.3/libkdepim-20.12.3.tar.xz) = ca4d3680cdf2a49c61338184ff7e299766c446c16471f7608a331014d5ec35ab -SIZE (KDE/release-service/20.12.3/libkdepim-20.12.3.tar.xz) = 238528 +TIMESTAMP = 1618579106 +SHA256 (KDE/release-service/21.04.0/libkdepim-21.04.0.tar.xz) = 8bb23222eafc0bb3c04a1be4003e27cf7bb00aea9a90b377b3fc5ac970a225aa +SIZE (KDE/release-service/21.04.0/libkdepim-21.04.0.tar.xz) = 242276 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 85c479d3c774..d723b1cf91ec 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706214 -SHA256 (KDE/release-service/20.12.3/mbox-importer-20.12.3.tar.xz) = 6982ab776fe8f5f87a6b8e3d8bb45c51514a80fc34c367a86957bea5e94a5366 -SIZE (KDE/release-service/20.12.3/mbox-importer-20.12.3.tar.xz) = 24760 +TIMESTAMP = 1618579106 +SHA256 (KDE/release-service/21.04.0/mbox-importer-21.04.0.tar.xz) = 4822e5816185ea5a3b8db634b38c8551f3fbfa70c18a8af2ccff96d57570b967 +SIZE (KDE/release-service/21.04.0/mbox-importer-21.04.0.tar.xz) = 28712 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 06219ba6e5e7..07bb91678237 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706215 -SHA256 (KDE/release-service/20.12.3/pim-data-exporter-20.12.3.tar.xz) = 987420ed8accd4a1c9db7baf35807b2c92e1f80eb606aed074b859208829ec9f -SIZE (KDE/release-service/20.12.3/pim-data-exporter-20.12.3.tar.xz) = 401632 +TIMESTAMP = 1618579108 +SHA256 (KDE/release-service/21.04.0/pim-data-exporter-21.04.0.tar.xz) = 369c4e1443e05625627063c1e673fd7efc09dd04c2fa4522249804fa76c87365 +SIZE (KDE/release-service/21.04.0/pim-data-exporter-21.04.0.tar.xz) = 398676 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 75673637ff54..726de8a0de7f 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706213 -SHA256 (KDE/release-service/20.12.3/pim-sieve-editor-20.12.3.tar.xz) = a1d4d0eef6ded2cf051e8e64769e2f475964140067c18b8876d9d8f246243fb4 -SIZE (KDE/release-service/20.12.3/pim-sieve-editor-20.12.3.tar.xz) = 455152 +TIMESTAMP = 1618579109 +SHA256 (KDE/release-service/21.04.0/pim-sieve-editor-21.04.0.tar.xz) = 7e049b164d8a5daca13eeda386932795cd1ffee0671262354f323fbd4024acfb +SIZE (KDE/release-service/21.04.0/pim-sieve-editor-21.04.0.tar.xz) = 458088 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 04b67a53052a..2c1f3307ebdf 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706231 -SHA256 (KDE/release-service/20.12.3/cervisia-20.12.3.tar.xz) = 2560ab30d981d81d7739dd67a4398b1efa93e93d33e55205bf31284134cf0220 -SIZE (KDE/release-service/20.12.3/cervisia-20.12.3.tar.xz) = 1888284 +TIMESTAMP = 1618579109 +SHA256 (KDE/release-service/21.04.0/cervisia-21.04.0.tar.xz) = 1f762444c7d420072643d759cae22b72db0b6155dcf43741410e6d8273abe6e4 +SIZE (KDE/release-service/21.04.0/cervisia-21.04.0.tar.xz) = 1888564 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 21421f122c7e..18eb6ea05383 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706227 -SHA256 (KDE/release-service/20.12.3/dolphin-plugins-20.12.3.tar.xz) = fcb2ca9acf2ef3b7aaa8d5bf66920fc79983952cda7223416d172802ad9a5e80 -SIZE (KDE/release-service/20.12.3/dolphin-plugins-20.12.3.tar.xz) = 239340 +TIMESTAMP = 1618579110 +SHA256 (KDE/release-service/21.04.0/dolphin-plugins-21.04.0.tar.xz) = 9fb395bfc62b726a4feae87b89d97294262cdadbeadf69706d7f314b1ff488d2 +SIZE (KDE/release-service/21.04.0/dolphin-plugins-21.04.0.tar.xz) = 242608 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index 98886c6b6d18..f4c45e679c43 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,201 +1,203 @@ %%QT_PLUGINDIR%%/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/fileviewgitplugin.so %%QT_PLUGINDIR%%/fileviewhgplugin.so %%QT_PLUGINDIR%%/fileviewsvnplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/kservices5/fileviewbazaarplugin.desktop share/kservices5/fileviewdropboxplugin.desktop share/kservices5/fileviewgitplugin.desktop share/kservices5/fileviewhgplugin.desktop share/kservices5/fileviewsvnplugin.desktop +share/locale/ast/LC_MESSAGES/mountisoaction.mo share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/mountisoaction.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca@valencia/LC_MESSAGES/mountisoaction.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/cs/LC_MESSAGES/mountisoaction.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/mountisoaction.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/mountisoaction.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/mountisoaction.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo share/locale/et/LC_MESSAGES/mountisoaction.mo share/locale/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eu/LC_MESSAGES/mountisoaction.mo share/locale/fi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fi/LC_MESSAGES/fileviewgitplugin.mo share/locale/fi/LC_MESSAGES/fileviewhgplugin.mo share/locale/fi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fi/LC_MESSAGES/mountisoaction.mo share/locale/fr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fr/LC_MESSAGES/fileviewgitplugin.mo share/locale/fr/LC_MESSAGES/fileviewhgplugin.mo share/locale/fr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fr/LC_MESSAGES/mountisoaction.mo share/locale/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo share/locale/ga/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/gl/LC_MESSAGES/fileviewgitplugin.mo share/locale/gl/LC_MESSAGES/fileviewhgplugin.mo share/locale/gl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hu/LC_MESSAGES/fileviewgitplugin.mo share/locale/hu/LC_MESSAGES/fileviewhgplugin.mo share/locale/hu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ia/LC_MESSAGES/mountisoaction.mo share/locale/it/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/it/LC_MESSAGES/fileviewgitplugin.mo share/locale/it/LC_MESSAGES/fileviewhgplugin.mo share/locale/it/LC_MESSAGES/fileviewsvnplugin.mo share/locale/it/LC_MESSAGES/mountisoaction.mo share/locale/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo share/locale/ja/LC_MESSAGES/fileviewsvnplugin.mo share/locale/kk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/kk/LC_MESSAGES/fileviewgitplugin.mo share/locale/kk/LC_MESSAGES/fileviewhgplugin.mo share/locale/kk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ko/LC_MESSAGES/fileviewgitplugin.mo share/locale/ko/LC_MESSAGES/fileviewhgplugin.mo share/locale/ko/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/mountisoaction.mo share/locale/lt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/lt/LC_MESSAGES/fileviewgitplugin.mo share/locale/lt/LC_MESSAGES/fileviewhgplugin.mo share/locale/lt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/lt/LC_MESSAGES/mountisoaction.mo share/locale/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo share/locale/mr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/mountisoaction.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nn/LC_MESSAGES/mountisoaction.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/pa/LC_MESSAGES/mountisoaction.mo share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pl/LC_MESSAGES/mountisoaction.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt/LC_MESSAGES/mountisoaction.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt_BR/LC_MESSAGES/mountisoaction.mo share/locale/ro/LC_MESSAGES/fileviewgitplugin.mo share/locale/ro/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ro/LC_MESSAGES/mountisoaction.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ru/LC_MESSAGES/mountisoaction.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sk/LC_MESSAGES/mountisoaction.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sl/LC_MESSAGES/mountisoaction.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sv/LC_MESSAGES/mountisoaction.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/mountisoaction.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_CN/LC_MESSAGES/mountisoaction.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo share/metainfo/org.kde.dolphin-plugins.metainfo.xml diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 2b668132335e..56815dae7056 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706232 -SHA256 (KDE/release-service/20.12.3/kapptemplate-20.12.3.tar.xz) = 8cf0a5fac4d3a08e616a3d7a0fd066c5c6558ed598b6b4f837e7242835670715 -SIZE (KDE/release-service/20.12.3/kapptemplate-20.12.3.tar.xz) = 336772 +TIMESTAMP = 1618579111 +SHA256 (KDE/release-service/21.04.0/kapptemplate-21.04.0.tar.xz) = 3caa31c85cfbf8ecc70bc5121982688b3bb0d71be0ae5df24f69e6a385295e50 +SIZE (KDE/release-service/21.04.0/kapptemplate-21.04.0.tar.xz) = 333612 diff --git a/devel/kapptemplate/pkg-plist b/devel/kapptemplate/pkg-plist index bb192f078e12..522d73acb195 100644 --- a/devel/kapptemplate/pkg-plist +++ b/devel/kapptemplate/pkg-plist @@ -1,54 +1,55 @@ bin/kapptemplate share/applications/org.kde.kapptemplate.desktop share/config.kcfg/kapptemplate.kcfg share/icons/hicolor/128x128/apps/kapptemplate.png share/icons/hicolor/16x16/apps/kapptemplate.png share/icons/hicolor/22x22/apps/kapptemplate.png share/icons/hicolor/32x32/apps/kapptemplate.png share/icons/hicolor/48x48/apps/kapptemplate.png share/icons/hicolor/64x64/apps/kapptemplate.png share/icons/hicolor/scalable/apps/kapptemplate.svg share/kdevappwizard/templates/kde-frameworks5-simple.tar.bz2 share/kdevappwizard/templates/kde-frameworks5.tar.bz2 share/locale/bs/LC_MESSAGES/kapptemplate.mo share/locale/ca/LC_MESSAGES/kapptemplate.mo share/locale/ca@valencia/LC_MESSAGES/kapptemplate.mo share/locale/cs/LC_MESSAGES/kapptemplate.mo share/locale/da/LC_MESSAGES/kapptemplate.mo share/locale/de/LC_MESSAGES/kapptemplate.mo share/locale/el/LC_MESSAGES/kapptemplate.mo share/locale/en_GB/LC_MESSAGES/kapptemplate.mo share/locale/eo/LC_MESSAGES/kapptemplate.mo share/locale/es/LC_MESSAGES/kapptemplate.mo share/locale/et/LC_MESSAGES/kapptemplate.mo share/locale/eu/LC_MESSAGES/kapptemplate.mo share/locale/fi/LC_MESSAGES/kapptemplate.mo share/locale/fr/LC_MESSAGES/kapptemplate.mo share/locale/ga/LC_MESSAGES/kapptemplate.mo share/locale/gl/LC_MESSAGES/kapptemplate.mo share/locale/hu/LC_MESSAGES/kapptemplate.mo share/locale/it/LC_MESSAGES/kapptemplate.mo share/locale/ja/LC_MESSAGES/kapptemplate.mo share/locale/kk/LC_MESSAGES/kapptemplate.mo share/locale/ko/LC_MESSAGES/kapptemplate.mo share/locale/lt/LC_MESSAGES/kapptemplate.mo share/locale/lv/LC_MESSAGES/kapptemplate.mo share/locale/mr/LC_MESSAGES/kapptemplate.mo share/locale/nb/LC_MESSAGES/kapptemplate.mo share/locale/nds/LC_MESSAGES/kapptemplate.mo share/locale/nl/LC_MESSAGES/kapptemplate.mo share/locale/nn/LC_MESSAGES/kapptemplate.mo share/locale/pl/LC_MESSAGES/kapptemplate.mo share/locale/pt/LC_MESSAGES/kapptemplate.mo share/locale/pt_BR/LC_MESSAGES/kapptemplate.mo share/locale/ru/LC_MESSAGES/kapptemplate.mo share/locale/sk/LC_MESSAGES/kapptemplate.mo share/locale/sl/LC_MESSAGES/kapptemplate.mo share/locale/sr/LC_MESSAGES/kapptemplate.mo share/locale/sv/LC_MESSAGES/kapptemplate.mo share/locale/tr/LC_MESSAGES/kapptemplate.mo share/locale/ug/LC_MESSAGES/kapptemplate.mo share/locale/uk/LC_MESSAGES/kapptemplate.mo share/locale/zh_CN/LC_MESSAGES/kapptemplate.mo share/locale/zh_TW/LC_MESSAGES/kapptemplate.mo share/metainfo/org.kde.kapptemplate.appdata.xml +share/qlogging-categories5/kapptemplate.categories diff --git a/devel/kcachegrind/Makefile b/devel/kcachegrind/Makefile index b4e6b7d8775d..d168540670bc 100644 --- a/devel/kcachegrind/Makefile +++ b/devel/kcachegrind/Makefile @@ -1,28 +1,29 @@ PORTNAME= kcachegrind DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Profiler frontend for KDE USES= cmake compiler:c++11-lang desktop-file-utils kde:5 python:run qt:5 \ shebangfix tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons ecm i18n itemviews jobwidgets kio service solid \ - widgetsaddons xmlgui + widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build -SHEBANG_FILES= converters/hotshot2calltree.cmake \ +SHEBANG_FILES= converters/dprof2calltree \ + converters/hotshot2calltree.in \ converters/memprof2calltree \ - converters/op2calltree converters/dprof2calltree + converters/op2calltree OPTIONS_DEFINE= DOT VALGRIND DOCS DOT_DESC= Use GraphViz/dot to render call graphs DOT_RUN_DEPENDS= dot:graphics/graphviz VALGRIND_DESC= Install devel/valgrind VALGRIND_RUN_DEPENDS= valgrind:devel/valgrind .include diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index c84b40b18943..4a8de2b5c9e2 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706227 -SHA256 (KDE/release-service/20.12.3/kcachegrind-20.12.3.tar.xz) = 95e18b85ae69a522f1f0047960c2dbcc2553af284d18b45d5373746a7e5f69ea -SIZE (KDE/release-service/20.12.3/kcachegrind-20.12.3.tar.xz) = 818260 +TIMESTAMP = 1618579112 +SHA256 (KDE/release-service/21.04.0/kcachegrind-21.04.0.tar.xz) = b91ce13625d1e0925fc27c8ec00e6b809d5765c6c612c7feda968454c6fdb4ad +SIZE (KDE/release-service/21.04.0/kcachegrind-21.04.0.tar.xz) = 828436 diff --git a/devel/kcachegrind/pkg-plist b/devel/kcachegrind/pkg-plist index c3aecc4e47bc..17436e6d656b 100644 --- a/devel/kcachegrind/pkg-plist +++ b/devel/kcachegrind/pkg-plist @@ -1,103 +1,65 @@ bin/dprof2calltree bin/hotshot2calltree bin/kcachegrind bin/memprof2calltree bin/op2calltree bin/pprof2calltree share/applications/org.kde.kcachegrind.desktop share/icons/hicolor/128x128/apps/kcachegrind.png share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/64x64/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips share/locale/ar/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind.mo -share/locale/bs/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca/LC_MESSAGES/kcachegrind.mo -share/locale/ca/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca@valencia/LC_MESSAGES/kcachegrind.mo -share/locale/ca@valencia/LC_MESSAGES/kcachegrind_qt.qm share/locale/cs/LC_MESSAGES/kcachegrind.mo -share/locale/cs/LC_MESSAGES/kcachegrind_qt.qm share/locale/da/LC_MESSAGES/kcachegrind.mo -share/locale/da/LC_MESSAGES/kcachegrind_qt.qm share/locale/de/LC_MESSAGES/kcachegrind.mo -share/locale/de/LC_MESSAGES/kcachegrind_qt.qm share/locale/el/LC_MESSAGES/kcachegrind.mo -share/locale/el/LC_MESSAGES/kcachegrind_qt.qm share/locale/en_GB/LC_MESSAGES/kcachegrind.mo -share/locale/en_GB/LC_MESSAGES/kcachegrind_qt.qm share/locale/eo/LC_MESSAGES/kcachegrind.mo -share/locale/eo/LC_MESSAGES/kcachegrind_qt.qm share/locale/es/LC_MESSAGES/kcachegrind.mo -share/locale/es/LC_MESSAGES/kcachegrind_qt.qm share/locale/et/LC_MESSAGES/kcachegrind.mo -share/locale/et/LC_MESSAGES/kcachegrind_qt.qm share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/fa/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo -share/locale/fi/LC_MESSAGES/kcachegrind_qt.qm share/locale/fr/LC_MESSAGES/kcachegrind.mo -share/locale/fr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ga/LC_MESSAGES/kcachegrind.mo -share/locale/ga/LC_MESSAGES/kcachegrind_qt.qm share/locale/gl/LC_MESSAGES/kcachegrind.mo -share/locale/gl/LC_MESSAGES/kcachegrind_qt.qm share/locale/hi/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind.mo -share/locale/hr/LC_MESSAGES/kcachegrind_qt.qm share/locale/hu/LC_MESSAGES/kcachegrind.mo -share/locale/hu/LC_MESSAGES/kcachegrind_qt.qm share/locale/it/LC_MESSAGES/kcachegrind.mo -share/locale/it/LC_MESSAGES/kcachegrind_qt.qm share/locale/ja/LC_MESSAGES/kcachegrind.mo -share/locale/ja/LC_MESSAGES/kcachegrind_qt.qm share/locale/kk/LC_MESSAGES/kcachegrind.mo -share/locale/kk/LC_MESSAGES/kcachegrind_qt.qm share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind.mo -share/locale/ko/LC_MESSAGES/kcachegrind_qt.qm share/locale/lt/LC_MESSAGES/kcachegrind.mo -share/locale/lt/LC_MESSAGES/kcachegrind_qt.qm share/locale/mr/LC_MESSAGES/kcachegrind.mo -share/locale/mr/LC_MESSAGES/kcachegrind_qt.qm share/locale/nb/LC_MESSAGES/kcachegrind.mo -share/locale/nb/LC_MESSAGES/kcachegrind_qt.qm share/locale/nds/LC_MESSAGES/kcachegrind.mo -share/locale/nds/LC_MESSAGES/kcachegrind_qt.qm share/locale/nl/LC_MESSAGES/kcachegrind.mo -share/locale/nl/LC_MESSAGES/kcachegrind_qt.qm share/locale/nn/LC_MESSAGES/kcachegrind.mo -share/locale/nn/LC_MESSAGES/kcachegrind_qt.qm share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo -share/locale/pl/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt/LC_MESSAGES/kcachegrind.mo -share/locale/pt/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo -share/locale/pt_BR/LC_MESSAGES/kcachegrind_qt.qm share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo -share/locale/ru/LC_MESSAGES/kcachegrind_qt.qm share/locale/sk/LC_MESSAGES/kcachegrind.mo -share/locale/sk/LC_MESSAGES/kcachegrind_qt.qm share/locale/sl/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo -share/locale/sv/LC_MESSAGES/kcachegrind_qt.qm share/locale/tr/LC_MESSAGES/kcachegrind.mo -share/locale/tr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ug/LC_MESSAGES/kcachegrind.mo -share/locale/ug/LC_MESSAGES/kcachegrind_qt.qm share/locale/uk/LC_MESSAGES/kcachegrind.mo -share/locale/uk/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo -share/locale/zh_CN/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo -share/locale/zh_TW/LC_MESSAGES/kcachegrind_qt.qm share/metainfo/org.kde.kcachegrind.appdata.xml diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index c21797b2eab7..7aa98fe39d60 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706223 -SHA256 (KDE/release-service/20.12.3/kde-dev-scripts-20.12.3.tar.xz) = d08eee9aab934e88b130ac9310d94b929b98e19cf4c45c3ac5dffd278600cfe2 -SIZE (KDE/release-service/20.12.3/kde-dev-scripts-20.12.3.tar.xz) = 366516 +TIMESTAMP = 1618579112 +SHA256 (KDE/release-service/21.04.0/kde-dev-scripts-21.04.0.tar.xz) = dab822e25fb8da3e44e0ff48d477fdfe58e98c9210c9d1c5ea778d0b0b098f5e +SIZE (KDE/release-service/21.04.0/kde-dev-scripts-21.04.0.tar.xz) = 366316 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index a2480f78b759..4fc8c7e8d734 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706226 -SHA256 (KDE/release-service/20.12.3/kde-dev-utils-20.12.3.tar.xz) = a7218d5d57a73c6ea8fa9935b78316769e16dd3cb866f5c519033f331b606926 -SIZE (KDE/release-service/20.12.3/kde-dev-utils-20.12.3.tar.xz) = 65832 +TIMESTAMP = 1618579113 +SHA256 (KDE/release-service/21.04.0/kde-dev-utils-21.04.0.tar.xz) = 85d5b54ec296637bea22af7aa5fcf498b36165cdd7e94cfafa4107b42e9cffb1 +SIZE (KDE/release-service/21.04.0/kde-dev-utils-21.04.0.tar.xz) = 65728 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 1f758a34ef51..fc68703306d1 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706229 -SHA256 (KDE/release-service/20.12.3/kdesdk-thumbnailers-20.12.3.tar.xz) = bb9ae86dd543b6e2903ffe107b5c0c50fe67f94d07a275de6f4814b095be89d8 -SIZE (KDE/release-service/20.12.3/kdesdk-thumbnailers-20.12.3.tar.xz) = 17816 +TIMESTAMP = 1618579114 +SHA256 (KDE/release-service/21.04.0/kdesdk-thumbnailers-21.04.0.tar.xz) = 7144b74f18b86e49369f7d6c3c4b9ea0c5e2ed2cf986bb04a0246dfc95ee4632 +SIZE (KDE/release-service/21.04.0/kdesdk-thumbnailers-21.04.0.tar.xz) = 17836 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index ae1fa017b4fb..b9288350ac48 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706225 -SHA256 (KDE/release-service/20.12.3/kio-extras-20.12.3.tar.xz) = ba5b90dbbc08ce1a0aeb456e3bba89a328538a41950e7bfa3e04f24b7f6741e2 -SIZE (KDE/release-service/20.12.3/kio-extras-20.12.3.tar.xz) = 636012 +TIMESTAMP = 1618579115 +SHA256 (KDE/release-service/21.04.0/kio-extras-21.04.0.tar.xz) = 4f4a6f127a29d68e7c8185ff9f67a2c1ceb2df8edaa87bab4bcc974b5869b3dc +SIZE (KDE/release-service/21.04.0/kio-extras-21.04.0.tar.xz) = 646088 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index 2b08fa6ddb5b..4f7ebd565ad7 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,819 +1,822 @@ 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 %%SAMBA%%lib/libexec/kf5/smbnotifier 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 %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kded/smbwatcher.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 %%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 %%SSH%%share/kservices5/sftp.protocol share/kservices5/svgthumbnail.desktop share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.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_info.mo share/locale/ast/LC_MESSAGES/kio5_mtp.mo +share/locale/ast/LC_MESSAGES/kio5_network.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_network.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_network.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_network.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_network.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_network.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 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index ab6166eb4ba1..415d01c9c02e 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706224 -SHA256 (KDE/release-service/20.12.3/kirigami-gallery-20.12.3.tar.xz) = 7b342c922dfd8310846127d218c8d6c36e8dd574ca8d085c323b19c587b04524 -SIZE (KDE/release-service/20.12.3/kirigami-gallery-20.12.3.tar.xz) = 328180 +TIMESTAMP = 1618579116 +SHA256 (KDE/release-service/21.04.0/kirigami-gallery-21.04.0.tar.xz) = 4e7b759b697a5cb2bf39e752d4be57a3ec76d27348f781167d22993e23041812 +SIZE (KDE/release-service/21.04.0/kirigami-gallery-21.04.0.tar.xz) = 329296 diff --git a/devel/kirigami-gallery/pkg-plist b/devel/kirigami-gallery/pkg-plist index 22ee854483ad..40dd68768a7f 100644 --- a/devel/kirigami-gallery/pkg-plist +++ b/devel/kirigami-gallery/pkg-plist @@ -1,32 +1,33 @@ bin/kirigami2gallery share/applications/org.kde.kirigami2.gallery.desktop +share/locale/pa/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ca/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ca@valencia/LC_MESSAGES/kirigamigallery_qt.qm share/locale/cs/LC_MESSAGES/kirigamigallery_qt.qm share/locale/da/LC_MESSAGES/kirigamigallery_qt.qm share/locale/de/LC_MESSAGES/kirigamigallery_qt.qm share/locale/el/LC_MESSAGES/kirigamigallery_qt.qm share/locale/en_GB/LC_MESSAGES/kirigamigallery_qt.qm share/locale/es/LC_MESSAGES/kirigamigallery_qt.qm share/locale/et/LC_MESSAGES/kirigamigallery_qt.qm share/locale/eu/LC_MESSAGES/kirigamigallery_qt.qm share/locale/fi/LC_MESSAGES/kirigamigallery_qt.qm share/locale/fr/LC_MESSAGES/kirigamigallery_qt.qm share/locale/gl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/it/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ja/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ko/LC_MESSAGES/kirigamigallery_qt.qm share/locale/lt/LC_MESSAGES/kirigamigallery_qt.qm share/locale/nl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/nn/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pt/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pt_BR/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ru/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sk/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sv/LC_MESSAGES/kirigamigallery_qt.qm share/locale/uk/LC_MESSAGES/kirigamigallery_qt.qm share/locale/zh_CN/LC_MESSAGES/kirigamigallery_qt.qm share/locale/zh_TW/LC_MESSAGES/kirigamigallery_qt.qm share/metainfo/org.kde.kirigami2.gallery.appdata.xml diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index d8d6987318ea..35681b1e8eee 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -1,17 +1,20 @@ PORTNAME= kpublictransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Access realtime public transport data LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core declarative gui network \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS +# Override shared library version +KDE_APPLICATIONS_SHLIB_VER= 21.4.0 + .include diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index e91d4b1a314a..8b30c1048c65 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706230 -SHA256 (KDE/release-service/20.12.3/kpublictransport-20.12.3.tar.xz) = 9950d1a1b3cd0d9bcd46591c6ca9170b0bbdab8ce12c40b4cbe8d0c60981c697 -SIZE (KDE/release-service/20.12.3/kpublictransport-20.12.3.tar.xz) = 345364 +TIMESTAMP = 1618579116 +SHA256 (KDE/release-service/21.04.0/kpublictransport-21.04.0.tar.xz) = 6bb525f2e52b21ca0ca8d52c40937adf0e141637dcb18d4dd7a8155412d6f5a3 +SIZE (KDE/release-service/21.04.0/kpublictransport-21.04.0.tar.xz) = 391620 diff --git a/devel/kpublictransport/pkg-plist b/devel/kpublictransport/pkg-plist index 8e28425007ea..5bab0b64b7ab 100644 --- a/devel/kpublictransport/pkg-plist +++ b/devel/kpublictransport/pkg-plist @@ -1,79 +1,83 @@ include/KPublicTransport/AbstractQueryModel include/KPublicTransport/Attribution include/KPublicTransport/Backend include/KPublicTransport/BackendModel include/KPublicTransport/Datatypes include/KPublicTransport/Departure include/KPublicTransport/DepartureQueryModel include/KPublicTransport/DepartureReply include/KPublicTransport/DepartureRequest include/KPublicTransport/Disruption +include/KPublicTransport/Equipment include/KPublicTransport/Journey include/KPublicTransport/JourneyQueryModel include/KPublicTransport/JourneyReply include/KPublicTransport/JourneyRequest include/KPublicTransport/Line include/KPublicTransport/Load include/KPublicTransport/Location include/KPublicTransport/LocationQueryModel include/KPublicTransport/LocationReply include/KPublicTransport/LocationRequest include/KPublicTransport/Manager +include/KPublicTransport/Path include/KPublicTransport/Platform include/KPublicTransport/RentalVehicle include/KPublicTransport/Reply include/KPublicTransport/Stopover include/KPublicTransport/StopoverQueryModel include/KPublicTransport/StopoverReply include/KPublicTransport/StopoverRequest include/KPublicTransport/Vehicle include/KPublicTransport/VehicleLayoutQueryModel include/KPublicTransport/VehicleLayoutReply include/KPublicTransport/VehicleLayoutRequest include/kpublictransport/abstractquerymodel.h include/kpublictransport/attribution.h include/kpublictransport/backend.h include/kpublictransport/backendmodel.h include/kpublictransport/datatypes.h include/kpublictransport/departure.h include/kpublictransport/departurequerymodel.h include/kpublictransport/departurereply.h include/kpublictransport/departurerequest.h include/kpublictransport/disruption.h +include/kpublictransport/equipment.h include/kpublictransport/journey.h include/kpublictransport/journeyquerymodel.h include/kpublictransport/journeyreply.h include/kpublictransport/journeyrequest.h include/kpublictransport/kpublictransport_export.h include/kpublictransport/line.h include/kpublictransport/load.h include/kpublictransport/location.h include/kpublictransport/locationquerymodel.h include/kpublictransport/locationreply.h include/kpublictransport/locationrequest.h include/kpublictransport/manager.h +include/kpublictransport/path.h include/kpublictransport/platform.h include/kpublictransport/rentalvehicle.h include/kpublictransport/reply.h include/kpublictransport/stopover.h include/kpublictransport/stopoverquerymodel.h include/kpublictransport/stopoverreply.h include/kpublictransport/stopoverrequest.h include/kpublictransport/vehicle.h include/kpublictransport/vehiclelayoutquerymodel.h include/kpublictransport/vehiclelayoutreply.h include/kpublictransport/vehiclelayoutrequest.h include/kpublictransport_version.h lib/cmake/KPublicTransport/KPublicTransportConfig.cmake lib/cmake/KPublicTransport/KPublicTransportConfigVersion.cmake lib/cmake/KPublicTransport/KPublicTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPublicTransport/KPublicTransportTargets.cmake lib/libKPublicTransport.so lib/libKPublicTransport.so.1 -lib/libKPublicTransport.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKPublicTransport.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_QMLDIR%%/org/kde/kpublictransport/libkpublictransportqmlplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kpublictransport/ui/VehicleSectionItem.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/libkpublictransportquickplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/ui/qmldir share/qlogging-categories5/org_kde_kpublictransport.categories diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 2e34dcbd0933..639a661ee0e6 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706228 -SHA256 (KDE/release-service/20.12.3/lokalize-20.12.3.tar.xz) = e20c8a33750f2c997802da28f92d7eca6c930bbbd31e4b37eb6d348ecdfb2da8 -SIZE (KDE/release-service/20.12.3/lokalize-20.12.3.tar.xz) = 1995860 +TIMESTAMP = 1618579117 +SHA256 (KDE/release-service/21.04.0/lokalize-21.04.0.tar.xz) = ca2a1a1f1b902cbd1d9c054509ea50acbd9c0c2f07fb46353c9f449c902f69f1 +SIZE (KDE/release-service/21.04.0/lokalize-21.04.0.tar.xz) = 1993192 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 814fdeb70ddb..1c84b0ae313f 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706229 -SHA256 (KDE/release-service/20.12.3/poxml-20.12.3.tar.xz) = 34bdbb4b25ccd3b64d48e8819ae7e2b2ba501f60bdb2a27c0512f42cb1f1f7fc -SIZE (KDE/release-service/20.12.3/poxml-20.12.3.tar.xz) = 43224 +TIMESTAMP = 1618579118 +SHA256 (KDE/release-service/21.04.0/poxml-21.04.0.tar.xz) = 8f1490d45fb85ef668627109b8b63e06a12e64249092d16ef8ca44d07e7c1e7a +SIZE (KDE/release-service/21.04.0/poxml-21.04.0.tar.xz) = 43552 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index bbc5d156f754..374d2713c0e1 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706224 -SHA256 (KDE/release-service/20.12.3/umbrello-20.12.3.tar.xz) = 57fb7d988e115be18514f807bab483a19877acc3f1910aeb952c4d8372f4d378 -SIZE (KDE/release-service/20.12.3/umbrello-20.12.3.tar.xz) = 5555804 +TIMESTAMP = 1618579119 +SHA256 (KDE/release-service/21.04.0/umbrello-21.04.0.tar.xz) = 1d5f7c637a59a68a1ee3c15f3c992a38f0a75671a407b299a64fc01b98d4bc9f +SIZE (KDE/release-service/21.04.0/umbrello-21.04.0.tar.xz) = 5568700 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index 4e41901d6a47..761eb0e761a3 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,176 +1,177 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/component-horizontal.desktop share/umbrello5/layouts/component-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-horizontal.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/simple4125/sdbcent.mod share/umbrello5/simple4125/sdbhier.mod share/umbrello5/simple4125/sdbpool.mod share/umbrello5/simple4125/sdocbook-custom.dtd share/umbrello5/simple4125/sdocbook.css share/umbrello5/simple4125/sdocbook.dtd share/umbrello5/simple4125/sdocbookref-custom.dtd share/umbrello5/simple4125/sdocbookref.dtd share/umbrello5/simple4125/sinclist.mod share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 9b12239af3e8..e95d09c1dcd6 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706232 -SHA256 (KDE/release-service/20.12.3/kate-20.12.3.tar.xz) = 81bc2d8afe1958186feec8b1b275da5d6eb52bd8b4fa154896d19830d628d4fd -SIZE (KDE/release-service/20.12.3/kate-20.12.3.tar.xz) = 5949012 +TIMESTAMP = 1618579120 +SHA256 (KDE/release-service/21.04.0/kate-21.04.0.tar.xz) = 3780cc0de0cf078add7901e255a6524c34f093a4aff2a2d032ed88c20a7421d4 +SIZE (KDE/release-service/21.04.0/kate-21.04.0.tar.xz) = 6940360 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index a5dd76ccb80d..04beb47acce5 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1267 +1,1307 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so +%%QT_PLUGINDIR%%/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so +%%QT_PLUGINDIR%%/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz -man/ru/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ca/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo +share/locale/ca/LC_MESSAGES/kategitblameplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ca@valencia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo +share/locale/ca@valencia/LC_MESSAGES/kategitblameplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo +share/locale/cs/LC_MESSAGES/kategitblameplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/lspclient.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/de/LC_MESSAGES/katecolorpickerplugin.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/en_GB/LC_MESSAGES/katecolorpickerplugin.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo +share/locale/en_GB/LC_MESSAGES/kategitblameplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/es/LC_MESSAGES/katecolorpickerplugin.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo +share/locale/es/LC_MESSAGES/kategitblameplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/kwrite.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/fi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo +share/locale/fi/LC_MESSAGES/kategitblameplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/fr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo +share/locale/fr/LC_MESSAGES/kategitblameplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo +share/locale/ia/LC_MESSAGES/kategitblameplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/it/LC_MESSAGES/katecolorpickerplugin.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo +share/locale/it/LC_MESSAGES/kategitblameplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/lspclient.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/nl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo +share/locale/nl/LC_MESSAGES/kategitblameplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/pl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo +share/locale/pl/LC_MESSAGES/kategitblameplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/pt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo +share/locale/pt/LC_MESSAGES/kategitblameplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo +share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ru/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo +share/locale/sk/LC_MESSAGES/kategitblameplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sl/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo +share/locale/sl/LC_MESSAGES/kategitblameplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo +share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo +share/locale/sv/LC_MESSAGES/kategitblameplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/uk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo +share/locale/uk/LC_MESSAGES/kategitblameplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/zh_CN/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo +share/locale/zh_CN/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations diff --git a/games/blinken/distinfo b/games/blinken/distinfo index f850cd99683f..ef15901b2d8f 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706254 -SHA256 (KDE/release-service/20.12.3/blinken-20.12.3.tar.xz) = f4612c004afe025696744ffd074e6cadfc3d15dca486966fe80d18ab5aa6db6d -SIZE (KDE/release-service/20.12.3/blinken-20.12.3.tar.xz) = 2537996 +TIMESTAMP = 1618579120 +SHA256 (KDE/release-service/21.04.0/blinken-21.04.0.tar.xz) = 47e0b72ba8f4b546580654b5201efcd8be2f60260c8ac5e4151a1b87920acb01 +SIZE (KDE/release-service/21.04.0/blinken-21.04.0.tar.xz) = 2709568 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index e875e83271f8..b407edaebdad 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706247 -SHA256 (KDE/release-service/20.12.3/bomber-20.12.3.tar.xz) = 57279c0620b44b45bcd4153509cef698fff1e4ba4e0cb3ba760925c89144a00d -SIZE (KDE/release-service/20.12.3/bomber-20.12.3.tar.xz) = 825104 +TIMESTAMP = 1618579121 +SHA256 (KDE/release-service/21.04.0/bomber-21.04.0.tar.xz) = feb77feadb78be43d8424124146de2289984d63ca53d2ee164b134affc9a713a +SIZE (KDE/release-service/21.04.0/bomber-21.04.0.tar.xz) = 828344 diff --git a/games/bomber/pkg-plist b/games/bomber/pkg-plist index 235ce465d1e9..be12b12c4385 100644 --- a/games/bomber/pkg-plist +++ b/games/bomber/pkg-plist @@ -1,68 +1,67 @@ bin/bomber share/applications/org.kde.bomber.desktop %%DATADIR%%/sounds/bomb.ogg %%DATADIR%%/sounds/crash.ogg %%DATADIR%%/themes/Lava-Island.desktop %%DATADIR%%/themes/Lava-Island.svgz %%DATADIR%%/themes/kbomber.desktop %%DATADIR%%/themes/kbomber.png %%DATADIR%%/themes/kbomber.svgz %%DATADIR%%/themes/lava-Island.png share/config.kcfg/bomber.kcfg share/icons/hicolor/128x128/apps/bomber.png share/icons/hicolor/32x32/apps/bomber.png share/icons/hicolor/48x48/apps/bomber.png share/icons/hicolor/64x64/apps/bomber.png -share/kxmlgui5/bomber/bomberui.rc share/locale/ar/LC_MESSAGES/bomber.mo share/locale/bg/LC_MESSAGES/bomber.mo share/locale/bs/LC_MESSAGES/bomber.mo share/locale/ca/LC_MESSAGES/bomber.mo share/locale/ca@valencia/LC_MESSAGES/bomber.mo share/locale/cs/LC_MESSAGES/bomber.mo share/locale/da/LC_MESSAGES/bomber.mo share/locale/de/LC_MESSAGES/bomber.mo share/locale/el/LC_MESSAGES/bomber.mo share/locale/en_GB/LC_MESSAGES/bomber.mo share/locale/eo/LC_MESSAGES/bomber.mo share/locale/es/LC_MESSAGES/bomber.mo share/locale/et/LC_MESSAGES/bomber.mo share/locale/eu/LC_MESSAGES/bomber.mo share/locale/fi/LC_MESSAGES/bomber.mo share/locale/fr/LC_MESSAGES/bomber.mo share/locale/ga/LC_MESSAGES/bomber.mo share/locale/gl/LC_MESSAGES/bomber.mo share/locale/he/LC_MESSAGES/bomber.mo share/locale/hr/LC_MESSAGES/bomber.mo share/locale/hu/LC_MESSAGES/bomber.mo share/locale/id/LC_MESSAGES/bomber.mo share/locale/is/LC_MESSAGES/bomber.mo share/locale/it/LC_MESSAGES/bomber.mo share/locale/ja/LC_MESSAGES/bomber.mo share/locale/kk/LC_MESSAGES/bomber.mo share/locale/km/LC_MESSAGES/bomber.mo share/locale/ko/LC_MESSAGES/bomber.mo share/locale/lt/LC_MESSAGES/bomber.mo share/locale/lv/LC_MESSAGES/bomber.mo share/locale/ml/LC_MESSAGES/bomber.mo share/locale/mr/LC_MESSAGES/bomber.mo share/locale/nb/LC_MESSAGES/bomber.mo share/locale/nds/LC_MESSAGES/bomber.mo share/locale/nl/LC_MESSAGES/bomber.mo share/locale/nn/LC_MESSAGES/bomber.mo share/locale/pa/LC_MESSAGES/bomber.mo share/locale/pl/LC_MESSAGES/bomber.mo share/locale/pt/LC_MESSAGES/bomber.mo share/locale/pt_BR/LC_MESSAGES/bomber.mo share/locale/ro/LC_MESSAGES/bomber.mo share/locale/ru/LC_MESSAGES/bomber.mo share/locale/sk/LC_MESSAGES/bomber.mo share/locale/sl/LC_MESSAGES/bomber.mo share/locale/sr/LC_MESSAGES/bomber.mo share/locale/sv/LC_MESSAGES/bomber.mo share/locale/tr/LC_MESSAGES/bomber.mo share/locale/ug/LC_MESSAGES/bomber.mo share/locale/uk/LC_MESSAGES/bomber.mo share/locale/zh_CN/LC_MESSAGES/bomber.mo share/locale/zh_TW/LC_MESSAGES/bomber.mo share/metainfo/org.kde.bomber.appdata.xml diff --git a/games/bovo/distinfo b/games/bovo/distinfo index ea36df2dbe02..c5ff92e82c5f 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706242 -SHA256 (KDE/release-service/20.12.3/bovo-20.12.3.tar.xz) = bb845496ed0f1d783846918c52faab9e38eae373c2ba7f4a4a2e657994c09984 -SIZE (KDE/release-service/20.12.3/bovo-20.12.3.tar.xz) = 205792 +TIMESTAMP = 1618579122 +SHA256 (KDE/release-service/21.04.0/bovo-21.04.0.tar.xz) = c32a0afbcd1df30e254bc63014f16e9ccfd59652005f320540e2dbfc274cd3cc +SIZE (KDE/release-service/21.04.0/bovo-21.04.0.tar.xz) = 206472 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index a2be0fd6e437..3330d999ce43 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706257 -SHA256 (KDE/release-service/20.12.3/granatier-20.12.3.tar.xz) = 740fdf55a24e26ad83678290641676d3cc40127234332cb2010e67de934b54f4 -SIZE (KDE/release-service/20.12.3/granatier-20.12.3.tar.xz) = 1951672 +TIMESTAMP = 1618579123 +SHA256 (KDE/release-service/21.04.0/granatier-21.04.0.tar.xz) = e84bf46f618e6ab66cae8baee528486bba14eed38c92bff89b3e0022ecc99661 +SIZE (KDE/release-service/21.04.0/granatier-21.04.0.tar.xz) = 1952812 diff --git a/games/granatier/pkg-plist b/games/granatier/pkg-plist index d2eaf93f239f..b08c759edcd0 100644 --- a/games/granatier/pkg-plist +++ b/games/granatier/pkg-plist @@ -1,167 +1,166 @@ bin/granatier share/qlogging-categories5/granatier.categories share/applications/org.kde.granatier.desktop share/config.kcfg/granatier.kcfg %%DATADIR%%/arenas/clanbomber_Arena.desktop %%DATADIR%%/arenas/clanbomber_Arena.xml %%DATADIR%%/arenas/clanbomber_Big_Block.desktop %%DATADIR%%/arenas/clanbomber_Big_Block.xml %%DATADIR%%/arenas/clanbomber_Big_Standard.desktop %%DATADIR%%/arenas/clanbomber_Big_Standard.xml %%DATADIR%%/arenas/clanbomber_Blast_Matrix.desktop %%DATADIR%%/arenas/clanbomber_Blast_Matrix.xml %%DATADIR%%/arenas/clanbomber_Bloody_Ring.desktop %%DATADIR%%/arenas/clanbomber_Bloody_Ring.xml %%DATADIR%%/arenas/clanbomber_Boiling_Egg.desktop %%DATADIR%%/arenas/clanbomber_Boiling_Egg.xml %%DATADIR%%/arenas/clanbomber_Bomb_Attack.desktop %%DATADIR%%/arenas/clanbomber_Bomb_Attack.xml %%DATADIR%%/arenas/clanbomber_Broken_Heart.desktop %%DATADIR%%/arenas/clanbomber_Broken_Heart.xml %%DATADIR%%/arenas/clanbomber_Crammed.desktop %%DATADIR%%/arenas/clanbomber_Crammed.xml %%DATADIR%%/arenas/clanbomber_Death_Corridor.desktop %%DATADIR%%/arenas/clanbomber_Death_Corridor.xml %%DATADIR%%/arenas/clanbomber_Dilemma.desktop %%DATADIR%%/arenas/clanbomber_Dilemma.xml %%DATADIR%%/arenas/clanbomber_FearCircle.desktop %%DATADIR%%/arenas/clanbomber_FearCircle.xml %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.desktop %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.xml %%DATADIR%%/arenas/clanbomber_FireWheels.desktop %%DATADIR%%/arenas/clanbomber_FireWheels.xml %%DATADIR%%/arenas/clanbomber_Football.desktop %%DATADIR%%/arenas/clanbomber_Football.xml %%DATADIR%%/arenas/clanbomber_Four_Instance.desktop %%DATADIR%%/arenas/clanbomber_Four_Instance.xml %%DATADIR%%/arenas/clanbomber_Ghostbear.desktop %%DATADIR%%/arenas/clanbomber_Ghostbear.xml %%DATADIR%%/arenas/clanbomber_Hard_Work.desktop %%DATADIR%%/arenas/clanbomber_Hard_Work.xml %%DATADIR%%/arenas/clanbomber_Hole_Run.desktop %%DATADIR%%/arenas/clanbomber_Hole_Run.xml %%DATADIR%%/arenas/clanbomber_Huge_Standard.desktop %%DATADIR%%/arenas/clanbomber_Huge_Standard.xml %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.desktop %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.xml %%DATADIR%%/arenas/clanbomber_Kitchen.desktop %%DATADIR%%/arenas/clanbomber_Kitchen.xml %%DATADIR%%/arenas/clanbomber_Meeting.desktop %%DATADIR%%/arenas/clanbomber_Meeting.xml %%DATADIR%%/arenas/clanbomber_MungoBane.desktop %%DATADIR%%/arenas/clanbomber_MungoBane.xml %%DATADIR%%/arenas/clanbomber_Obstacle_Race.desktop %%DATADIR%%/arenas/clanbomber_Obstacle_Race.xml %%DATADIR%%/arenas/clanbomber_Overkill.desktop %%DATADIR%%/arenas/clanbomber_Overkill.xml %%DATADIR%%/arenas/clanbomber_Prison_Cells.desktop %%DATADIR%%/arenas/clanbomber_Prison_Cells.xml %%DATADIR%%/arenas/clanbomber_Redirection.desktop %%DATADIR%%/arenas/clanbomber_Redirection.xml %%DATADIR%%/arenas/clanbomber_Sixty_Nine.desktop %%DATADIR%%/arenas/clanbomber_Sixty_Nine.xml %%DATADIR%%/arenas/clanbomber_Small_Standard.desktop %%DATADIR%%/arenas/clanbomber_Small_Standard.xml %%DATADIR%%/arenas/clanbomber_Snake_Race.desktop %%DATADIR%%/arenas/clanbomber_Snake_Race.xml %%DATADIR%%/arenas/clanbomber_Tiny_Standard.desktop %%DATADIR%%/arenas/clanbomber_Tiny_Standard.xml %%DATADIR%%/arenas/clanbomber_Whole_Mess.desktop %%DATADIR%%/arenas/clanbomber_Whole_Mess.xml %%DATADIR%%/arenas/clover.desktop %%DATADIR%%/arenas/clover.xml %%DATADIR%%/arenas/crazy.desktop %%DATADIR%%/arenas/crazy.xml %%DATADIR%%/arenas/granatier.desktop %%DATADIR%%/arenas/granatier.xml %%DATADIR%%/arenas/labyrinth.desktop %%DATADIR%%/arenas/labyrinth.xml %%DATADIR%%/arenas/threeofthree.desktop %%DATADIR%%/arenas/threeofthree.xml %%DATADIR%%/players/player1.desktop %%DATADIR%%/players/player1.svgz %%DATADIR%%/players/player2.desktop %%DATADIR%%/players/player2.svgz %%DATADIR%%/players/player3.desktop %%DATADIR%%/players/player3.svgz %%DATADIR%%/players/player4.desktop %%DATADIR%%/players/player4.svgz %%DATADIR%%/players/player5.desktop %%DATADIR%%/players/player5.svgz %%DATADIR%%/sounds/break.wav %%DATADIR%%/sounds/clear.wav %%DATADIR%%/sounds/corpse_explode.wav %%DATADIR%%/sounds/crunch.wav %%DATADIR%%/sounds/deepfall.wav %%DATADIR%%/sounds/die.wav %%DATADIR%%/sounds/explode.wav %%DATADIR%%/sounds/joint.wav %%DATADIR%%/sounds/putbomb.wav %%DATADIR%%/sounds/winlevel.wav %%DATADIR%%/sounds/wow.wav %%DATADIR%%/themes/clanbomber.desktop %%DATADIR%%/themes/clanbomber.svgz %%DATADIR%%/themes/clanbomber_preview.png %%DATADIR%%/themes/granatier.desktop %%DATADIR%%/themes/granatier.svgz %%DATADIR%%/themes/granatier_preview.png %%DATADIR%%/themes/waterbomb.desktop %%DATADIR%%/themes/waterbomb.svgz %%DATADIR%%/themes/waterbomb_preview.png share/icons/hicolor/128x128/apps/granatier.png share/icons/hicolor/16x16/apps/granatier.png share/icons/hicolor/22x22/apps/granatier.png share/icons/hicolor/32x32/apps/granatier.png share/icons/hicolor/48x48/apps/granatier.png share/icons/hicolor/64x64/apps/granatier.png -share/kxmlgui5/granatier/granatierui.rc share/locale/ar/LC_MESSAGES/granatier.mo share/locale/bg/LC_MESSAGES/granatier.mo share/locale/bs/LC_MESSAGES/granatier.mo share/locale/ca/LC_MESSAGES/granatier.mo share/locale/ca@valencia/LC_MESSAGES/granatier.mo share/locale/cs/LC_MESSAGES/granatier.mo share/locale/da/LC_MESSAGES/granatier.mo share/locale/de/LC_MESSAGES/granatier.mo share/locale/el/LC_MESSAGES/granatier.mo share/locale/en_GB/LC_MESSAGES/granatier.mo share/locale/eo/LC_MESSAGES/granatier.mo share/locale/es/LC_MESSAGES/granatier.mo share/locale/et/LC_MESSAGES/granatier.mo share/locale/eu/LC_MESSAGES/granatier.mo share/locale/fi/LC_MESSAGES/granatier.mo share/locale/fr/LC_MESSAGES/granatier.mo share/locale/ga/LC_MESSAGES/granatier.mo share/locale/gl/LC_MESSAGES/granatier.mo share/locale/hr/LC_MESSAGES/granatier.mo share/locale/hu/LC_MESSAGES/granatier.mo share/locale/id/LC_MESSAGES/granatier.mo share/locale/is/LC_MESSAGES/granatier.mo share/locale/it/LC_MESSAGES/granatier.mo share/locale/ja/LC_MESSAGES/granatier.mo share/locale/kk/LC_MESSAGES/granatier.mo share/locale/km/LC_MESSAGES/granatier.mo share/locale/ko/LC_MESSAGES/granatier.mo share/locale/lt/LC_MESSAGES/granatier.mo share/locale/lv/LC_MESSAGES/granatier.mo share/locale/ml/LC_MESSAGES/granatier.mo share/locale/mr/LC_MESSAGES/granatier.mo share/locale/nb/LC_MESSAGES/granatier.mo share/locale/nds/LC_MESSAGES/granatier.mo share/locale/nl/LC_MESSAGES/granatier.mo share/locale/nn/LC_MESSAGES/granatier.mo share/locale/pl/LC_MESSAGES/granatier.mo share/locale/pt/LC_MESSAGES/granatier.mo share/locale/pt_BR/LC_MESSAGES/granatier.mo share/locale/ro/LC_MESSAGES/granatier.mo share/locale/ru/LC_MESSAGES/granatier.mo share/locale/sk/LC_MESSAGES/granatier.mo share/locale/sl/LC_MESSAGES/granatier.mo share/locale/sr/LC_MESSAGES/granatier.mo share/locale/sv/LC_MESSAGES/granatier.mo share/locale/tr/LC_MESSAGES/granatier.mo share/locale/ug/LC_MESSAGES/granatier.mo share/locale/uk/LC_MESSAGES/granatier.mo share/locale/zh_CN/LC_MESSAGES/granatier.mo share/locale/zh_TW/LC_MESSAGES/granatier.mo share/metainfo/org.kde.granatier.appdata.xml diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 6d73f3ab0561..bc55848128d9 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706261 -SHA256 (KDE/release-service/20.12.3/kanagram-20.12.3.tar.xz) = c54e91e65e092045390a235343d3ed20818f5876528ad3d773709b53af42ff7b -SIZE (KDE/release-service/20.12.3/kanagram-20.12.3.tar.xz) = 8028804 +TIMESTAMP = 1618579124 +SHA256 (KDE/release-service/21.04.0/kanagram-21.04.0.tar.xz) = 197deacb7af0d5d3e3d2b0a420894f5dd957a6433f2acdd4e91892a272fe9631 +SIZE (KDE/release-service/21.04.0/kanagram-21.04.0.tar.xz) = 8033760 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index aa483eb4ab10..528f10cf1164 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706238 -SHA256 (KDE/release-service/20.12.3/kapman-20.12.3.tar.xz) = 857e8daaf5a6d2d10f1a52486012358fe52be828c5ec0aab5e0cf13322c8649c -SIZE (KDE/release-service/20.12.3/kapman-20.12.3.tar.xz) = 2531568 +TIMESTAMP = 1618579124 +SHA256 (KDE/release-service/21.04.0/kapman-21.04.0.tar.xz) = 1523fb4d100cebfe26b418c212aeb326f59f0e2e63b0b5d2e7640f483bcaf2c4 +SIZE (KDE/release-service/21.04.0/kapman-21.04.0.tar.xz) = 2531396 diff --git a/games/kapman/pkg-plist b/games/kapman/pkg-plist index 025fded49d53..2d887466c76b 100644 --- a/games/kapman/pkg-plist +++ b/games/kapman/pkg-plist @@ -1,84 +1,83 @@ bin/kapman share/applications/org.kde.kapman.desktop share/icons/hicolor/128x128/apps/kapman.png share/icons/hicolor/16x16/apps/kapman.png share/icons/hicolor/22x22/apps/kapman.png share/icons/hicolor/32x32/apps/kapman.png share/icons/hicolor/48x48/apps/kapman.png share/icons/hicolor/64x64/apps/kapman.png %%DATADIR%%/defaultmaze.xml %%DATADIR%%/themes/invisible.desktop %%DATADIR%%/themes/invisible.svgz %%DATADIR%%/themes/invisible_preview.png %%DATADIR%%/themes/matches.desktop %%DATADIR%%/themes/matches.svgz %%DATADIR%%/themes/matches_preview.png %%DATADIR%%/themes/mountain.copyright %%DATADIR%%/themes/mountain.desktop %%DATADIR%%/themes/mountain.svgz %%DATADIR%%/themes/mountain_preview.png %%DATADIR%%/themes/mummies_crypt.desktop %%DATADIR%%/themes/mummies_crypt.svgz %%DATADIR%%/themes/mummies_crypt_preview.png %%DATADIR%%/themes/retro.desktop %%DATADIR%%/themes/retro.svgz %%DATADIR%%/themes/retro_preview.png -share/kxmlgui5/kapman/kapmanui.rc share/locale/ar/LC_MESSAGES/kapman.mo share/locale/bg/LC_MESSAGES/kapman.mo share/locale/bs/LC_MESSAGES/kapman.mo share/locale/ca/LC_MESSAGES/kapman.mo share/locale/ca@valencia/LC_MESSAGES/kapman.mo share/locale/cs/LC_MESSAGES/kapman.mo share/locale/da/LC_MESSAGES/kapman.mo share/locale/de/LC_MESSAGES/kapman.mo share/locale/el/LC_MESSAGES/kapman.mo share/locale/en_GB/LC_MESSAGES/kapman.mo share/locale/eo/LC_MESSAGES/kapman.mo share/locale/es/LC_MESSAGES/kapman.mo share/locale/et/LC_MESSAGES/kapman.mo share/locale/eu/LC_MESSAGES/kapman.mo share/locale/fi/LC_MESSAGES/kapman.mo share/locale/fr/LC_MESSAGES/kapman.mo share/locale/ga/LC_MESSAGES/kapman.mo share/locale/gl/LC_MESSAGES/kapman.mo share/locale/hi/LC_MESSAGES/kapman.mo share/locale/hr/LC_MESSAGES/kapman.mo share/locale/hu/LC_MESSAGES/kapman.mo share/locale/id/LC_MESSAGES/kapman.mo share/locale/is/LC_MESSAGES/kapman.mo share/locale/it/LC_MESSAGES/kapman.mo share/locale/ja/LC_MESSAGES/kapman.mo share/locale/kk/LC_MESSAGES/kapman.mo share/locale/km/LC_MESSAGES/kapman.mo share/locale/ko/LC_MESSAGES/kapman.mo share/locale/lt/LC_MESSAGES/kapman.mo share/locale/lv/LC_MESSAGES/kapman.mo share/locale/ml/LC_MESSAGES/kapman.mo share/locale/mr/LC_MESSAGES/kapman.mo share/locale/nb/LC_MESSAGES/kapman.mo share/locale/nds/LC_MESSAGES/kapman.mo share/locale/nl/LC_MESSAGES/kapman.mo share/locale/nn/LC_MESSAGES/kapman.mo share/locale/pl/LC_MESSAGES/kapman.mo share/locale/pt/LC_MESSAGES/kapman.mo share/locale/pt_BR/LC_MESSAGES/kapman.mo share/locale/ro/LC_MESSAGES/kapman.mo share/locale/ru/LC_MESSAGES/kapman.mo share/locale/sk/LC_MESSAGES/kapman.mo share/locale/sl/LC_MESSAGES/kapman.mo share/locale/sr/LC_MESSAGES/kapman.mo share/locale/sv/LC_MESSAGES/kapman.mo share/locale/tr/LC_MESSAGES/kapman.mo share/locale/ug/LC_MESSAGES/kapman.mo share/locale/uk/LC_MESSAGES/kapman.mo share/locale/zh_CN/LC_MESSAGES/kapman.mo share/locale/zh_TW/LC_MESSAGES/kapman.mo share/metainfo/org.kde.kapman.appdata.xml share/sounds/kapman/bonus.ogg share/sounds/kapman/energizer.ogg share/sounds/kapman/gameover.ogg share/sounds/kapman/ghost.ogg share/sounds/kapman/levelup.ogg share/sounds/kapman/life.ogg share/sounds/kapman/pill.ogg diff --git a/games/katomic/Makefile b/games/katomic/Makefile index 50825e6a7063..179e17b0a56e 100644 --- a/games/katomic/Makefile +++ b/games/katomic/Makefile @@ -1,19 +1,19 @@ PORTNAME= katomic DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= games education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shebangfix tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemviews kio \ libkdegames newstuff notifyconfig service widgetsaddons xmlgui USE_QT= core dbus declarative gui network widgets xml \ buildtools_build qmake_build -SHEBANG_FILES= katomic-levelset-upd.pl +SHEBANG_FILES= src/katomic-levelset-upd.pl OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 9978d8ad1a45..28fd9940b818 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706244 -SHA256 (KDE/release-service/20.12.3/katomic-20.12.3.tar.xz) = 1868fd6b08f9ce33e7b7a80eaf2772aa6aa380596cf9ae320ce3eb7099f0abe2 -SIZE (KDE/release-service/20.12.3/katomic-20.12.3.tar.xz) = 1429264 +TIMESTAMP = 1618579125 +SHA256 (KDE/release-service/21.04.0/katomic-21.04.0.tar.xz) = 33fb70505ffac3db6380ef14aeecbe88017026ff00194cc6d876006ef1af3443 +SIZE (KDE/release-service/21.04.0/katomic-21.04.0.tar.xz) = 1428692 diff --git a/games/katomic/pkg-plist b/games/katomic/pkg-plist index ed1abc0d3ec9..9310d76b7e86 100644 --- a/games/katomic/pkg-plist +++ b/games/katomic/pkg-plist @@ -1,69 +1,68 @@ bin/katomic share/applications/org.kde.katomic.desktop share/icons/hicolor/128x128/apps/katomic.png share/icons/hicolor/16x16/apps/katomic.png share/icons/hicolor/22x22/apps/katomic.png share/icons/hicolor/32x32/apps/katomic.png share/icons/hicolor/48x48/apps/katomic.png share/icons/hicolor/64x64/apps/katomic.png %%DATADIR%%/levels/default_levels.dat %%DATADIR%%/pics/default_theme.svgz share/kconf_update/katomic-levelset-upd.pl share/kconf_update/katomic-levelset.upd share/knsrcfiles/katomic.knsrc -share/kxmlgui5/katomic/katomicui.rc share/locale/ar/LC_MESSAGES/katomic.mo share/locale/bg/LC_MESSAGES/katomic.mo share/locale/bs/LC_MESSAGES/katomic.mo share/locale/ca/LC_MESSAGES/katomic.mo share/locale/ca@valencia/LC_MESSAGES/katomic.mo share/locale/cs/LC_MESSAGES/katomic.mo share/locale/da/LC_MESSAGES/katomic.mo share/locale/de/LC_MESSAGES/katomic.mo share/locale/el/LC_MESSAGES/katomic.mo share/locale/en_GB/LC_MESSAGES/katomic.mo share/locale/eo/LC_MESSAGES/katomic.mo share/locale/es/LC_MESSAGES/katomic.mo share/locale/et/LC_MESSAGES/katomic.mo share/locale/eu/LC_MESSAGES/katomic.mo share/locale/fa/LC_MESSAGES/katomic.mo share/locale/fi/LC_MESSAGES/katomic.mo share/locale/fr/LC_MESSAGES/katomic.mo share/locale/ga/LC_MESSAGES/katomic.mo share/locale/gl/LC_MESSAGES/katomic.mo share/locale/he/LC_MESSAGES/katomic.mo share/locale/hi/LC_MESSAGES/katomic.mo share/locale/hr/LC_MESSAGES/katomic.mo share/locale/hu/LC_MESSAGES/katomic.mo share/locale/id/LC_MESSAGES/katomic.mo share/locale/is/LC_MESSAGES/katomic.mo share/locale/it/LC_MESSAGES/katomic.mo share/locale/ja/LC_MESSAGES/katomic.mo share/locale/kk/LC_MESSAGES/katomic.mo share/locale/km/LC_MESSAGES/katomic.mo share/locale/ko/LC_MESSAGES/katomic.mo share/locale/lt/LC_MESSAGES/katomic.mo share/locale/lv/LC_MESSAGES/katomic.mo share/locale/ml/LC_MESSAGES/katomic.mo share/locale/mr/LC_MESSAGES/katomic.mo share/locale/nb/LC_MESSAGES/katomic.mo share/locale/nds/LC_MESSAGES/katomic.mo share/locale/nl/LC_MESSAGES/katomic.mo share/locale/nn/LC_MESSAGES/katomic.mo share/locale/pa/LC_MESSAGES/katomic.mo share/locale/pl/LC_MESSAGES/katomic.mo share/locale/pt/LC_MESSAGES/katomic.mo share/locale/pt_BR/LC_MESSAGES/katomic.mo share/locale/ro/LC_MESSAGES/katomic.mo share/locale/ru/LC_MESSAGES/katomic.mo share/locale/sk/LC_MESSAGES/katomic.mo share/locale/sl/LC_MESSAGES/katomic.mo share/locale/sr/LC_MESSAGES/katomic.mo share/locale/sv/LC_MESSAGES/katomic.mo share/locale/tr/LC_MESSAGES/katomic.mo share/locale/ug/LC_MESSAGES/katomic.mo share/locale/uk/LC_MESSAGES/katomic.mo share/locale/zh_CN/LC_MESSAGES/katomic.mo share/locale/zh_TW/LC_MESSAGES/katomic.mo share/metainfo/org.kde.katomic.appdata.xml share/qlogging-categories5/katomic.categories diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index ef0b8059561e..c85849b25fc0 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706237 -SHA256 (KDE/release-service/20.12.3/kblackbox-20.12.3.tar.xz) = 47d3c9277e1daca2e78c93abda49e10b03f5429a6f554976ddb5a126841b9c7c -SIZE (KDE/release-service/20.12.3/kblackbox-20.12.3.tar.xz) = 450304 +TIMESTAMP = 1618579126 +SHA256 (KDE/release-service/21.04.0/kblackbox-21.04.0.tar.xz) = 492229ddbfedd1e4d776764bfbdda194d9cd27a01d3662806a382a5ff1006a9d +SIZE (KDE/release-service/21.04.0/kblackbox-21.04.0.tar.xz) = 449880 diff --git a/games/kblackbox/pkg-plist b/games/kblackbox/pkg-plist index 02b29abd3f24..799ef5b4f9d1 100644 --- a/games/kblackbox/pkg-plist +++ b/games/kblackbox/pkg-plist @@ -1,64 +1,63 @@ bin/kblackbox share/applications/org.kde.kblackbox.desktop share/icons/hicolor/128x128/apps/kblackbox.png share/icons/hicolor/16x16/apps/kblackbox.png share/icons/hicolor/22x22/apps/kblackbox.png share/icons/hicolor/32x32/apps/kblackbox.png share/icons/hicolor/48x48/apps/kblackbox.png share/icons/hicolor/64x64/apps/kblackbox.png %%DATADIR%%/pics/kblackbox.svgz -share/kxmlgui5/kblackbox/kblackboxui.rc share/locale/ar/LC_MESSAGES/kblackbox.mo share/locale/bg/LC_MESSAGES/kblackbox.mo share/locale/bs/LC_MESSAGES/kblackbox.mo share/locale/ca/LC_MESSAGES/kblackbox.mo share/locale/ca@valencia/LC_MESSAGES/kblackbox.mo share/locale/cs/LC_MESSAGES/kblackbox.mo share/locale/da/LC_MESSAGES/kblackbox.mo share/locale/de/LC_MESSAGES/kblackbox.mo share/locale/el/LC_MESSAGES/kblackbox.mo share/locale/en_GB/LC_MESSAGES/kblackbox.mo share/locale/eo/LC_MESSAGES/kblackbox.mo share/locale/es/LC_MESSAGES/kblackbox.mo share/locale/et/LC_MESSAGES/kblackbox.mo share/locale/eu/LC_MESSAGES/kblackbox.mo share/locale/fa/LC_MESSAGES/kblackbox.mo share/locale/fi/LC_MESSAGES/kblackbox.mo share/locale/fr/LC_MESSAGES/kblackbox.mo share/locale/ga/LC_MESSAGES/kblackbox.mo share/locale/gl/LC_MESSAGES/kblackbox.mo share/locale/he/LC_MESSAGES/kblackbox.mo share/locale/hi/LC_MESSAGES/kblackbox.mo share/locale/hr/LC_MESSAGES/kblackbox.mo share/locale/hu/LC_MESSAGES/kblackbox.mo share/locale/id/LC_MESSAGES/kblackbox.mo share/locale/is/LC_MESSAGES/kblackbox.mo share/locale/it/LC_MESSAGES/kblackbox.mo share/locale/ja/LC_MESSAGES/kblackbox.mo share/locale/kk/LC_MESSAGES/kblackbox.mo share/locale/km/LC_MESSAGES/kblackbox.mo share/locale/ko/LC_MESSAGES/kblackbox.mo share/locale/lt/LC_MESSAGES/kblackbox.mo share/locale/lv/LC_MESSAGES/kblackbox.mo share/locale/ml/LC_MESSAGES/kblackbox.mo share/locale/mr/LC_MESSAGES/kblackbox.mo share/locale/nb/LC_MESSAGES/kblackbox.mo share/locale/nds/LC_MESSAGES/kblackbox.mo share/locale/nl/LC_MESSAGES/kblackbox.mo share/locale/nn/LC_MESSAGES/kblackbox.mo share/locale/pa/LC_MESSAGES/kblackbox.mo share/locale/pl/LC_MESSAGES/kblackbox.mo share/locale/pt/LC_MESSAGES/kblackbox.mo share/locale/pt_BR/LC_MESSAGES/kblackbox.mo share/locale/ro/LC_MESSAGES/kblackbox.mo share/locale/ru/LC_MESSAGES/kblackbox.mo share/locale/sk/LC_MESSAGES/kblackbox.mo share/locale/sl/LC_MESSAGES/kblackbox.mo share/locale/sr/LC_MESSAGES/kblackbox.mo share/locale/sv/LC_MESSAGES/kblackbox.mo share/locale/tr/LC_MESSAGES/kblackbox.mo share/locale/ug/LC_MESSAGES/kblackbox.mo share/locale/uk/LC_MESSAGES/kblackbox.mo share/locale/zh_CN/LC_MESSAGES/kblackbox.mo share/locale/zh_TW/LC_MESSAGES/kblackbox.mo share/metainfo/org.kde.kblackbox.appdata.xml diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 858d726e24fc..476b0309550c 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706241 -SHA256 (KDE/release-service/20.12.3/kblocks-20.12.3.tar.xz) = 1b0e0798e6c634afff48a20a24282c42213f8b4154bff23152443ff395f75d67 -SIZE (KDE/release-service/20.12.3/kblocks-20.12.3.tar.xz) = 1908420 +TIMESTAMP = 1618579127 +SHA256 (KDE/release-service/21.04.0/kblocks-21.04.0.tar.xz) = f678d652875cdad8612fc572ad86970a716e7701c9d246fdf6a621fda3232206 +SIZE (KDE/release-service/21.04.0/kblocks-21.04.0.tar.xz) = 1910768 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 23adf20a1951..87b245954ac3 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706234 -SHA256 (KDE/release-service/20.12.3/kbounce-20.12.3.tar.xz) = ba942d26d8959cd0415a0ea8ad0a0fecdddff2236d0fe17776ca6d5d3fc8df7b -SIZE (KDE/release-service/20.12.3/kbounce-20.12.3.tar.xz) = 3443204 +TIMESTAMP = 1618579128 +SHA256 (KDE/release-service/21.04.0/kbounce-21.04.0.tar.xz) = 42ca5f40793ffb1757aee0d68ef4f5765ea8577250dc212b138746487c259e17 +SIZE (KDE/release-service/21.04.0/kbounce-21.04.0.tar.xz) = 3442920 diff --git a/games/kbounce/pkg-plist b/games/kbounce/pkg-plist index 5341c1844375..526ff5630f4c 100644 --- a/games/kbounce/pkg-plist +++ b/games/kbounce/pkg-plist @@ -1,84 +1,84 @@ bin/kbounce share/applications/org.kde.kbounce.desktop share/icons/hicolor/128x128/apps/kbounce.png share/icons/hicolor/16x16/apps/kbounce.png share/icons/hicolor/22x22/apps/kbounce.png share/icons/hicolor/32x32/apps/kbounce.png share/icons/hicolor/48x48/apps/kbounce.png share/icons/hicolor/64x64/apps/kbounce.png %%DATADIR%%/sounds/death.wav %%DATADIR%%/sounds/reflect.wav %%DATADIR%%/sounds/seconds.wav %%DATADIR%%/sounds/timeout.wav %%DATADIR%%/sounds/wallend.wav %%DATADIR%%/sounds/wallstart.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_bounce.png %%DATADIR%%/themes/egyptian_bounce.svgz %%DATADIR%%/themes/geometry.desktop %%DATADIR%%/themes/geometry.png %%DATADIR%%/themes/kbounce.svg %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.png %%DATADIR%%/themes/oxygen.svgz %%DATADIR%%/themes/roads.desktop %%DATADIR%%/themes/roads.svgz %%DATADIR%%/themes/roads_preview.png %%DATADIR%%/themes/the_beach.desktop %%DATADIR%%/themes/the_beach.svgz %%DATADIR%%/themes/thebeach_preview.png -share/kxmlgui5/kbounce/kbounceui.rc share/locale/ar/LC_MESSAGES/kbounce.mo share/locale/bg/LC_MESSAGES/kbounce.mo share/locale/bs/LC_MESSAGES/kbounce.mo share/locale/ca/LC_MESSAGES/kbounce.mo share/locale/ca@valencia/LC_MESSAGES/kbounce.mo share/locale/cs/LC_MESSAGES/kbounce.mo share/locale/da/LC_MESSAGES/kbounce.mo share/locale/de/LC_MESSAGES/kbounce.mo share/locale/el/LC_MESSAGES/kbounce.mo share/locale/en_GB/LC_MESSAGES/kbounce.mo share/locale/eo/LC_MESSAGES/kbounce.mo share/locale/es/LC_MESSAGES/kbounce.mo share/locale/et/LC_MESSAGES/kbounce.mo share/locale/eu/LC_MESSAGES/kbounce.mo share/locale/fa/LC_MESSAGES/kbounce.mo share/locale/fi/LC_MESSAGES/kbounce.mo share/locale/fr/LC_MESSAGES/kbounce.mo share/locale/ga/LC_MESSAGES/kbounce.mo share/locale/gl/LC_MESSAGES/kbounce.mo share/locale/he/LC_MESSAGES/kbounce.mo share/locale/hi/LC_MESSAGES/kbounce.mo share/locale/hr/LC_MESSAGES/kbounce.mo share/locale/hu/LC_MESSAGES/kbounce.mo share/locale/id/LC_MESSAGES/kbounce.mo share/locale/is/LC_MESSAGES/kbounce.mo share/locale/it/LC_MESSAGES/kbounce.mo share/locale/ja/LC_MESSAGES/kbounce.mo share/locale/kk/LC_MESSAGES/kbounce.mo share/locale/km/LC_MESSAGES/kbounce.mo share/locale/ko/LC_MESSAGES/kbounce.mo share/locale/lt/LC_MESSAGES/kbounce.mo share/locale/lv/LC_MESSAGES/kbounce.mo share/locale/ml/LC_MESSAGES/kbounce.mo share/locale/mr/LC_MESSAGES/kbounce.mo share/locale/nb/LC_MESSAGES/kbounce.mo share/locale/nds/LC_MESSAGES/kbounce.mo share/locale/nl/LC_MESSAGES/kbounce.mo share/locale/nn/LC_MESSAGES/kbounce.mo share/locale/pa/LC_MESSAGES/kbounce.mo share/locale/pl/LC_MESSAGES/kbounce.mo share/locale/pt/LC_MESSAGES/kbounce.mo share/locale/pt_BR/LC_MESSAGES/kbounce.mo share/locale/ro/LC_MESSAGES/kbounce.mo share/locale/ru/LC_MESSAGES/kbounce.mo share/locale/sk/LC_MESSAGES/kbounce.mo share/locale/sl/LC_MESSAGES/kbounce.mo share/locale/sr/LC_MESSAGES/kbounce.mo share/locale/sv/LC_MESSAGES/kbounce.mo share/locale/tr/LC_MESSAGES/kbounce.mo share/locale/ug/LC_MESSAGES/kbounce.mo share/locale/uk/LC_MESSAGES/kbounce.mo share/locale/zh_CN/LC_MESSAGES/kbounce.mo share/locale/zh_TW/LC_MESSAGES/kbounce.mo share/metainfo/org.kde.kbounce.appdata.xml +share/qlogging-categories5/kbounce.categories diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index ad03dafdbf46..0e3212415ced 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706257 -SHA256 (KDE/release-service/20.12.3/kbreakout-20.12.3.tar.xz) = 011b5491d9c0765f648824553ecb58f1897d80e513ee859ab845a8c6738f51b6 -SIZE (KDE/release-service/20.12.3/kbreakout-20.12.3.tar.xz) = 2284120 +TIMESTAMP = 1618579128 +SHA256 (KDE/release-service/21.04.0/kbreakout-21.04.0.tar.xz) = d2c941ac6db29d8d886fb0c7ce4cc7df63bf2ecbafd029f9a9614cce498b0401 +SIZE (KDE/release-service/21.04.0/kbreakout-21.04.0.tar.xz) = 2281340 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 402ba4f0d5fe..c8839a05c6fa 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706235 -SHA256 (KDE/release-service/20.12.3/kdiamond-20.12.3.tar.xz) = 4731ebc32b050e2a2a1eeefb6106a7588cb6998f0d901eac61503105c19e92f2 -SIZE (KDE/release-service/20.12.3/kdiamond-20.12.3.tar.xz) = 4698168 +TIMESTAMP = 1618579129 +SHA256 (KDE/release-service/21.04.0/kdiamond-21.04.0.tar.xz) = 3b1521dabf33890147d9f45f7db2d1bec0419ee5a3fe2d6a1644908d3c7cfcd2 +SIZE (KDE/release-service/21.04.0/kdiamond-21.04.0.tar.xz) = 4697428 diff --git a/games/kdiamond/pkg-plist b/games/kdiamond/pkg-plist index 13da4e7f8cc4..d4056e8f0e2d 100644 --- a/games/kdiamond/pkg-plist +++ b/games/kdiamond/pkg-plist @@ -1,75 +1,74 @@ bin/kdiamond share/applications/org.kde.kdiamond.desktop share/icons/hicolor/128x128/apps/kdiamond.png share/icons/hicolor/16x16/apps/kdiamond.png share/icons/hicolor/22x22/apps/kdiamond.png share/icons/hicolor/32x32/apps/kdiamond.png share/icons/hicolor/48x48/apps/kdiamond.png share/icons/hicolor/64x64/apps/kdiamond.png %%DATADIR%%/kdiamond.kcfg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/diamonds.desktop %%DATADIR%%/themes/diamonds.png %%DATADIR%%/themes/diamonds.svgz %%DATADIR%%/themes/egyptian.svgz %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/funny_zoo.desktop %%DATADIR%%/themes/funny_zoo.png %%DATADIR%%/themes/funny_zoo.svgz share/knotifications5/kdiamond.notifyrc share/knsrcfiles/kdiamond.knsrc -share/kxmlgui5/kdiamond/kdiamondui.rc share/locale/ar/LC_MESSAGES/kdiamond.mo share/locale/bg/LC_MESSAGES/kdiamond.mo share/locale/bs/LC_MESSAGES/kdiamond.mo share/locale/ca/LC_MESSAGES/kdiamond.mo share/locale/ca@valencia/LC_MESSAGES/kdiamond.mo share/locale/cs/LC_MESSAGES/kdiamond.mo share/locale/da/LC_MESSAGES/kdiamond.mo share/locale/de/LC_MESSAGES/kdiamond.mo share/locale/el/LC_MESSAGES/kdiamond.mo share/locale/en_GB/LC_MESSAGES/kdiamond.mo share/locale/eo/LC_MESSAGES/kdiamond.mo share/locale/es/LC_MESSAGES/kdiamond.mo share/locale/et/LC_MESSAGES/kdiamond.mo share/locale/eu/LC_MESSAGES/kdiamond.mo share/locale/fi/LC_MESSAGES/kdiamond.mo share/locale/fr/LC_MESSAGES/kdiamond.mo share/locale/ga/LC_MESSAGES/kdiamond.mo share/locale/gl/LC_MESSAGES/kdiamond.mo share/locale/hi/LC_MESSAGES/kdiamond.mo share/locale/hr/LC_MESSAGES/kdiamond.mo share/locale/hu/LC_MESSAGES/kdiamond.mo share/locale/id/LC_MESSAGES/kdiamond.mo share/locale/is/LC_MESSAGES/kdiamond.mo share/locale/it/LC_MESSAGES/kdiamond.mo share/locale/ja/LC_MESSAGES/kdiamond.mo share/locale/kk/LC_MESSAGES/kdiamond.mo share/locale/km/LC_MESSAGES/kdiamond.mo share/locale/ko/LC_MESSAGES/kdiamond.mo share/locale/lt/LC_MESSAGES/kdiamond.mo share/locale/lv/LC_MESSAGES/kdiamond.mo share/locale/ml/LC_MESSAGES/kdiamond.mo share/locale/mr/LC_MESSAGES/kdiamond.mo share/locale/nb/LC_MESSAGES/kdiamond.mo share/locale/nds/LC_MESSAGES/kdiamond.mo share/locale/nl/LC_MESSAGES/kdiamond.mo share/locale/nn/LC_MESSAGES/kdiamond.mo share/locale/pl/LC_MESSAGES/kdiamond.mo share/locale/pt/LC_MESSAGES/kdiamond.mo share/locale/pt_BR/LC_MESSAGES/kdiamond.mo share/locale/ro/LC_MESSAGES/kdiamond.mo share/locale/ru/LC_MESSAGES/kdiamond.mo share/locale/sk/LC_MESSAGES/kdiamond.mo share/locale/sl/LC_MESSAGES/kdiamond.mo share/locale/sr/LC_MESSAGES/kdiamond.mo share/locale/sv/LC_MESSAGES/kdiamond.mo share/locale/tr/LC_MESSAGES/kdiamond.mo share/locale/ug/LC_MESSAGES/kdiamond.mo share/locale/uk/LC_MESSAGES/kdiamond.mo share/locale/zh_CN/LC_MESSAGES/kdiamond.mo share/locale/zh_TW/LC_MESSAGES/kdiamond.mo share/metainfo/org.kde.kdiamond.appdata.xml share/sounds/KDiamond-Stone-Drop.ogg share/sounds/KDiamond-Stone-Swap.ogg share/sounds/KDiamond-Stone-Touch.ogg diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 696e83d1de78..7c5f7e12f792 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706250 -SHA256 (KDE/release-service/20.12.3/kfourinline-20.12.3.tar.xz) = 5212aa2110bc662de79c71bdc4383fcc2e87e64c9b8ac4b147cfb6f380594166 -SIZE (KDE/release-service/20.12.3/kfourinline-20.12.3.tar.xz) = 643812 +TIMESTAMP = 1618579130 +SHA256 (KDE/release-service/21.04.0/kfourinline-21.04.0.tar.xz) = ba09948d2fab355c3e34b4f8b3d74d9c38f5462a4546ad7288f181db3c1dca7a +SIZE (KDE/release-service/21.04.0/kfourinline-21.04.0.tar.xz) = 645016 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index a6de224787f0..043a8e5d00c8 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706251 -SHA256 (KDE/release-service/20.12.3/kgoldrunner-20.12.3.tar.xz) = 401cb5e45c1e6d7b97cca856788172ac0ab370d6540ea8bc1229220d918a8205 -SIZE (KDE/release-service/20.12.3/kgoldrunner-20.12.3.tar.xz) = 4444752 +TIMESTAMP = 1618579131 +SHA256 (KDE/release-service/21.04.0/kgoldrunner-21.04.0.tar.xz) = a28e7addae40b67b04731474e8aaf6006a66ffebd1cfec6bfdff4544cf6ef409 +SIZE (KDE/release-service/21.04.0/kgoldrunner-21.04.0.tar.xz) = 4450992 diff --git a/games/kgoldrunner/pkg-plist b/games/kgoldrunner/pkg-plist index 8660e095360b..35131aad7131 100644 --- a/games/kgoldrunner/pkg-plist +++ b/games/kgoldrunner/pkg-plist @@ -1,129 +1,128 @@ bin/kgoldrunner share/applications/org.kde.kgoldrunner.desktop share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png share/icons/hicolor/32x32/apps/kgoldrunner.png share/icons/hicolor/48x48/apps/kgoldrunner.png share/icons/hicolor/64x64/apps/kgoldrunner.png %%DATADIR%%/system/game_CM.txt %%DATADIR%%/system/game_GMEP.txt %%DATADIR%%/system/game_GMGR.txt %%DATADIR%%/system/game_GRII.txt %%DATADIR%%/system/game_MAZ.txt %%DATADIR%%/system/game_blb.txt %%DATADIR%%/system/game_cnt.txt %%DATADIR%%/system/game_ende.txt %%DATADIR%%/system/game_fd.txt %%DATADIR%%/system/game_kgr.txt %%DATADIR%%/system/game_lars.txt %%DATADIR%%/system/game_plws.txt %%DATADIR%%/system/game_plwv.txt %%DATADIR%%/system/game_sot.txt %%DATADIR%%/system/game_tute.txt %%DATADIR%%/system/game_tutea.txt %%DATADIR%%/system/game_wad.txt %%DATADIR%%/system/hi_kgr.dat %%DATADIR%%/system/hi_plws.dat %%DATADIR%%/system/hi_plwv.dat %%DATADIR%%/system/hi_wad.dat %%DATADIR%%/system/rec_GMGR.txt %%DATADIR%%/system/rec_GRII.txt %%DATADIR%%/system/rec_demo.txt %%DATADIR%%/system/sol_blb.txt %%DATADIR%%/system/sol_fd.txt %%DATADIR%%/system/sol_kgr.txt %%DATADIR%%/system/sol_plws.txt %%DATADIR%%/system/sol_tute.txt %%DATADIR%%/system/sol_tutea.txt %%DATADIR%%/themes/README %%DATADIR%%/themes/accessible/black-on-white-actors.svg %%DATADIR%%/themes/accessible/black-on-white-set.svg %%DATADIR%%/themes/accessible/black-on-white.png %%DATADIR%%/themes/black-on-white.desktop %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default/actors.svg %%DATADIR%%/themes/default/climb.wav %%DATADIR%%/themes/default/completed.ogg %%DATADIR%%/themes/default/death.ogg %%DATADIR%%/themes/default/default.png %%DATADIR%%/themes/default/dig.ogg %%DATADIR%%/themes/default/falling.ogg %%DATADIR%%/themes/default/gameover.ogg %%DATADIR%%/themes/default/gold.ogg %%DATADIR%%/themes/default/ladder.ogg %%DATADIR%%/themes/default/set.svg %%DATADIR%%/themes/default/step.wav %%DATADIR%%/themes/default/victory.ogg %%DATADIR%%/themes/egypt.desktop %%DATADIR%%/themes/egypt/actors.svgz %%DATADIR%%/themes/egypt/egypt.png %%DATADIR%%/themes/egypt/egypt_kgr.svgz %%DATADIR%%/themes/kgr_geek.desktop %%DATADIR%%/themes/kgr_geek/actors.svgz %%DATADIR%%/themes/kgr_geek/kgr_geek.png %%DATADIR%%/themes/kgr_geek/set.svgz %%DATADIR%%/themes/nostalgia-blues.desktop %%DATADIR%%/themes/nostalgia.desktop %%DATADIR%%/themes/nostalgia/actors.svg %%DATADIR%%/themes/nostalgia/blue-actors.svg %%DATADIR%%/themes/nostalgia/blue-set.svg %%DATADIR%%/themes/nostalgia/nostalgia-blues.png %%DATADIR%%/themes/nostalgia/nostalgia.png %%DATADIR%%/themes/nostalgia/set.svg share/knsrcfiles/kgoldrunner.knsrc -share/kxmlgui5/kgoldrunner/kgoldrunnerui.rc share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/bg/LC_MESSAGES/kgoldrunner.mo share/locale/bs/LC_MESSAGES/kgoldrunner.mo share/locale/ca/LC_MESSAGES/kgoldrunner.mo share/locale/ca@valencia/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo share/locale/da/LC_MESSAGES/kgoldrunner.mo share/locale/de/LC_MESSAGES/kgoldrunner.mo share/locale/el/LC_MESSAGES/kgoldrunner.mo share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo share/locale/eo/LC_MESSAGES/kgoldrunner.mo share/locale/es/LC_MESSAGES/kgoldrunner.mo share/locale/et/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/fa/LC_MESSAGES/kgoldrunner.mo share/locale/fi/LC_MESSAGES/kgoldrunner.mo share/locale/fr/LC_MESSAGES/kgoldrunner.mo share/locale/ga/LC_MESSAGES/kgoldrunner.mo share/locale/gl/LC_MESSAGES/kgoldrunner.mo share/locale/hi/LC_MESSAGES/kgoldrunner.mo share/locale/hr/LC_MESSAGES/kgoldrunner.mo share/locale/hu/LC_MESSAGES/kgoldrunner.mo share/locale/id/LC_MESSAGES/kgoldrunner.mo share/locale/is/LC_MESSAGES/kgoldrunner.mo share/locale/it/LC_MESSAGES/kgoldrunner.mo share/locale/ja/LC_MESSAGES/kgoldrunner.mo share/locale/kk/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo share/locale/ko/LC_MESSAGES/kgoldrunner.mo share/locale/lt/LC_MESSAGES/kgoldrunner.mo share/locale/lv/LC_MESSAGES/kgoldrunner.mo share/locale/ml/LC_MESSAGES/kgoldrunner.mo share/locale/mr/LC_MESSAGES/kgoldrunner.mo share/locale/nb/LC_MESSAGES/kgoldrunner.mo share/locale/nds/LC_MESSAGES/kgoldrunner.mo share/locale/nl/LC_MESSAGES/kgoldrunner.mo share/locale/nn/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pl/LC_MESSAGES/kgoldrunner.mo share/locale/pt/LC_MESSAGES/kgoldrunner.mo share/locale/pt_BR/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ru/LC_MESSAGES/kgoldrunner.mo share/locale/sk/LC_MESSAGES/kgoldrunner.mo share/locale/sl/LC_MESSAGES/kgoldrunner.mo share/locale/sr/LC_MESSAGES/kgoldrunner.mo share/locale/sv/LC_MESSAGES/kgoldrunner.mo share/locale/tr/LC_MESSAGES/kgoldrunner.mo share/locale/ug/LC_MESSAGES/kgoldrunner.mo share/locale/uk/LC_MESSAGES/kgoldrunner.mo share/locale/zh_CN/LC_MESSAGES/kgoldrunner.mo share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo share/metainfo/org.kde.kgoldrunner.appdata.xml share/qlogging-categories5/kgoldrunner.categories diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 9b8c24c8057f..784ae1ddb5f2 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706262 -SHA256 (KDE/release-service/20.12.3/khangman-20.12.3.tar.xz) = 59a0ada3e8dddaff597e6bf25ff4116007bd4d4cc613d7ffa0acd492140a932a -SIZE (KDE/release-service/20.12.3/khangman-20.12.3.tar.xz) = 7400372 +TIMESTAMP = 1618579132 +SHA256 (KDE/release-service/21.04.0/khangman-21.04.0.tar.xz) = ec4835867e04d9be5a918ceb0368b74dd991fab18ec663391bbb9cc1f782785e +SIZE (KDE/release-service/21.04.0/khangman-21.04.0.tar.xz) = 7414496 diff --git a/games/khangman/pkg-plist b/games/khangman/pkg-plist index babcfb6fdb3d..89fb1fa9f6fe 100644 --- a/games/khangman/pkg-plist +++ b/games/khangman/pkg-plist @@ -1,141 +1,142 @@ bin/khangman etc/xdg/khangman.knsrc man/ca/man6/khangman.6.gz man/de/man6/khangman.6.gz man/es/man6/khangman.6.gz man/et/man6/khangman.6.gz +man/fr/man6/khangman.6.gz man/it/man6/khangman.6.gz man/man6/khangman.6.gz man/nl/man6/khangman.6.gz man/pt/man6/khangman.6.gz man/pt_BR/man6/khangman.6.gz man/ru/man6/khangman.6.gz man/sv/man6/khangman.6.gz man/uk/man6/khangman.6.gz share/applications/org.kde.khangman.desktop share/config.kcfg/khangman.kcfg share/icons/hicolor/128x128/apps/khangman.png share/icons/hicolor/16x16/apps/khangman.png share/icons/hicolor/22x22/apps/khangman.png share/icons/hicolor/32x32/apps/khangman.png share/icons/hicolor/48x48/apps/khangman.png share/icons/hicolor/64x64/apps/khangman.png share/icons/hicolor/scalable/apps/khangman.svgz %%DATADIR%%/ca.txt %%DATADIR%%/cs.txt %%DATADIR%%/da.txt %%DATADIR%%/de.txt %%DATADIR%%/es.txt %%DATADIR%%/et.txt %%DATADIR%%/fi.txt %%DATADIR%%/fonts/Domestic_Manners.ttf %%DATADIR%%/fonts/Dustismo_Roman.ttf %%DATADIR%%/fr.txt %%DATADIR%%/ga.txt %%DATADIR%%/gl.txt %%DATADIR%%/hu.txt %%DATADIR%%/nb.txt %%DATADIR%%/nds.txt %%DATADIR%%/nn.txt %%DATADIR%%/pl.txt %%DATADIR%%/pt.txt %%DATADIR%%/pt_BR.txt %%DATADIR%%/qml/GamePage.qml %%DATADIR%%/qml/Images/about-kde.png %%DATADIR%%/qml/Images/action-fail.png %%DATADIR%%/qml/Images/action-success.png %%DATADIR%%/qml/Images/dialog-information.png %%DATADIR%%/qml/Images/get-hot-new-stuff.png %%DATADIR%%/qml/Images/go-next.png %%DATADIR%%/qml/Images/handbook.png %%DATADIR%%/qml/Images/help-hint.png %%DATADIR%%/qml/Images/pause.png %%DATADIR%%/qml/Images/play.png %%DATADIR%%/qml/Images/quit.png %%DATADIR%%/qml/Images/settings_icon.png %%DATADIR%%/qml/LetterElement.qml %%DATADIR%%/qml/MainSettingsDialog.qml %%DATADIR%%/qml/MySelectionDialog.qml %%DATADIR%%/qml/gallows/gallows1.png %%DATADIR%%/qml/gallows/gallows10.png %%DATADIR%%/qml/gallows/gallows2.png %%DATADIR%%/qml/gallows/gallows3.png %%DATADIR%%/qml/gallows/gallows4.png %%DATADIR%%/qml/gallows/gallows5.png %%DATADIR%%/qml/gallows/gallows6.png %%DATADIR%%/qml/gallows/gallows7.png %%DATADIR%%/qml/gallows/gallows8.png %%DATADIR%%/qml/gallows/gallows9.png %%DATADIR%%/qml/main.qml %%DATADIR%%/qml/sounds/EW_Dialogue_Appear.ogg %%DATADIR%%/qml/sounds/EW_Dialogue_Appear.wav %%DATADIR%%/qml/sounds/chalk.ogg %%DATADIR%%/qml/sounds/chalk.wav %%DATADIR%%/qml/sounds/khangman-alphabet-button-press.wav %%DATADIR%%/qml/sounds/new_game.ogg %%DATADIR%%/qml/sounds/new_game.wav %%DATADIR%%/qml/sounds/splash.ogg %%DATADIR%%/qml/sounds/splash.wav %%DATADIR%%/qml/sounds/wrong.ogg %%DATADIR%%/qml/sounds/wrong.wav %%DATADIR%%/sk.txt %%DATADIR%%/sl.txt %%DATADIR%%/sv.txt %%DATADIR%%/themes/khangman_bees.svg %%DATADIR%%/themes/khangman_desert.svg %%DATADIR%%/themes/khangman_notes.png %%DATADIR%%/themes/khangman_sea.svg %%DATADIR%%/themes/khangman_winter.svg %%DATADIR%%/themes/standardthemes.xml %%DATADIR%%/tr.txt share/locale/ar/LC_MESSAGES/khangman.mo share/locale/bg/LC_MESSAGES/khangman.mo share/locale/bs/LC_MESSAGES/khangman.mo share/locale/ca/LC_MESSAGES/khangman.mo share/locale/ca@valencia/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khangman.mo share/locale/da/LC_MESSAGES/khangman.mo share/locale/de/LC_MESSAGES/khangman.mo share/locale/el/LC_MESSAGES/khangman.mo share/locale/en_GB/LC_MESSAGES/khangman.mo share/locale/eo/LC_MESSAGES/khangman.mo share/locale/es/LC_MESSAGES/khangman.mo share/locale/et/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/fa/LC_MESSAGES/khangman.mo share/locale/fi/LC_MESSAGES/khangman.mo share/locale/fr/LC_MESSAGES/khangman.mo share/locale/ga/LC_MESSAGES/khangman.mo share/locale/gl/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/hi/LC_MESSAGES/khangman.mo share/locale/hr/LC_MESSAGES/khangman.mo share/locale/hu/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/it/LC_MESSAGES/khangman.mo share/locale/ja/LC_MESSAGES/khangman.mo share/locale/kk/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khangman.mo share/locale/lt/LC_MESSAGES/khangman.mo share/locale/lv/LC_MESSAGES/khangman.mo share/locale/ml/LC_MESSAGES/khangman.mo share/locale/mr/LC_MESSAGES/khangman.mo share/locale/nb/LC_MESSAGES/khangman.mo share/locale/nds/LC_MESSAGES/khangman.mo share/locale/nl/LC_MESSAGES/khangman.mo share/locale/nn/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pl/LC_MESSAGES/khangman.mo share/locale/pt/LC_MESSAGES/khangman.mo share/locale/pt_BR/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ru/LC_MESSAGES/khangman.mo share/locale/sk/LC_MESSAGES/khangman.mo share/locale/sl/LC_MESSAGES/khangman.mo share/locale/sv/LC_MESSAGES/khangman.mo share/locale/tr/LC_MESSAGES/khangman.mo share/locale/ug/LC_MESSAGES/khangman.mo share/locale/uk/LC_MESSAGES/khangman.mo share/locale/zh_CN/LC_MESSAGES/khangman.mo share/locale/zh_TW/LC_MESSAGES/khangman.mo share/metainfo/org.kde.khangman.appdata.xml diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 7b81bba7b538..2c0ea4cf3985 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706242 -SHA256 (KDE/release-service/20.12.3/kigo-20.12.3.tar.xz) = 2895590c7530b9b3f7689be8beba9520a6602a48635b478835f31d92699f9ee8 -SIZE (KDE/release-service/20.12.3/kigo-20.12.3.tar.xz) = 5234272 +TIMESTAMP = 1618579133 +SHA256 (KDE/release-service/21.04.0/kigo-21.04.0.tar.xz) = f17be6181216716b8e3283f378576019d53939e01a8cc06c6ddb509c6405da2a +SIZE (KDE/release-service/21.04.0/kigo-21.04.0.tar.xz) = 5245112 diff --git a/games/kigo/pkg-plist b/games/kigo/pkg-plist index bb8c43f81bf2..34cea069ec9c 100644 --- a/games/kigo/pkg-plist +++ b/games/kigo/pkg-plist @@ -1,69 +1,68 @@ bin/kigo share/applications/org.kde.kigo.desktop share/config.kcfg/kigo.kcfg share/icons/hicolor/128x128/apps/kigo.png share/icons/hicolor/16x16/apps/kigo.png share/icons/hicolor/22x22/apps/kigo.png share/icons/hicolor/32x32/apps/kigo.png share/icons/hicolor/48x48/apps/kigo.png share/icons/hicolor/64x64/apps/kigo.png %%DATADIR%%/games/Honinbo-51-5.sgf %%DATADIR%%/games/Mehin-21-2.sgf %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/kigo_default.png %%DATADIR%%/themes/kigo_default.svgz %%DATADIR%%/themes/kigo_plain.png %%DATADIR%%/themes/kigo_plain.svgz %%DATADIR%%/themes/plain.desktop share/knsrcfiles/kigo-games.knsrc share/knsrcfiles/kigo.knsrc -share/kxmlgui5/kigo/kigoui.rc share/locale/bs/LC_MESSAGES/kigo.mo share/locale/ca/LC_MESSAGES/kigo.mo share/locale/ca@valencia/LC_MESSAGES/kigo.mo share/locale/cs/LC_MESSAGES/kigo.mo share/locale/da/LC_MESSAGES/kigo.mo share/locale/de/LC_MESSAGES/kigo.mo share/locale/el/LC_MESSAGES/kigo.mo share/locale/en_GB/LC_MESSAGES/kigo.mo share/locale/eo/LC_MESSAGES/kigo.mo share/locale/es/LC_MESSAGES/kigo.mo share/locale/et/LC_MESSAGES/kigo.mo share/locale/eu/LC_MESSAGES/kigo.mo share/locale/fi/LC_MESSAGES/kigo.mo share/locale/fr/LC_MESSAGES/kigo.mo share/locale/ga/LC_MESSAGES/kigo.mo share/locale/gl/LC_MESSAGES/kigo.mo share/locale/hr/LC_MESSAGES/kigo.mo share/locale/hu/LC_MESSAGES/kigo.mo share/locale/id/LC_MESSAGES/kigo.mo share/locale/is/LC_MESSAGES/kigo.mo share/locale/it/LC_MESSAGES/kigo.mo share/locale/ja/LC_MESSAGES/kigo.mo share/locale/kk/LC_MESSAGES/kigo.mo share/locale/km/LC_MESSAGES/kigo.mo share/locale/ko/LC_MESSAGES/kigo.mo share/locale/lt/LC_MESSAGES/kigo.mo share/locale/lv/LC_MESSAGES/kigo.mo share/locale/ml/LC_MESSAGES/kigo.mo share/locale/mr/LC_MESSAGES/kigo.mo share/locale/nb/LC_MESSAGES/kigo.mo share/locale/nds/LC_MESSAGES/kigo.mo share/locale/nl/LC_MESSAGES/kigo.mo share/locale/nn/LC_MESSAGES/kigo.mo share/locale/pl/LC_MESSAGES/kigo.mo share/locale/pt/LC_MESSAGES/kigo.mo share/locale/pt_BR/LC_MESSAGES/kigo.mo share/locale/ro/LC_MESSAGES/kigo.mo share/locale/ru/LC_MESSAGES/kigo.mo share/locale/sk/LC_MESSAGES/kigo.mo share/locale/sl/LC_MESSAGES/kigo.mo share/locale/sr/LC_MESSAGES/kigo.mo share/locale/sv/LC_MESSAGES/kigo.mo share/locale/tr/LC_MESSAGES/kigo.mo share/locale/ug/LC_MESSAGES/kigo.mo share/locale/uk/LC_MESSAGES/kigo.mo share/locale/zh_CN/LC_MESSAGES/kigo.mo share/locale/zh_TW/LC_MESSAGES/kigo.mo share/metainfo/org.kde.kigo.appdata.xml share/qlogging-categories5/kigo.categories diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 34bf00d9fde2..df6c5be119d8 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706259 -SHA256 (KDE/release-service/20.12.3/killbots-20.12.3.tar.xz) = ea12a0f14e0791ab9ef014678d84c81f8081d56682cc574e0464bed4c8a5da14 -SIZE (KDE/release-service/20.12.3/killbots-20.12.3.tar.xz) = 1186532 +TIMESTAMP = 1618579134 +SHA256 (KDE/release-service/21.04.0/killbots-21.04.0.tar.xz) = 53fc17ca1d804e5598c5ea75c5d9660ebdc07792dadcb7f663e995b8a1a2c2e1 +SIZE (KDE/release-service/21.04.0/killbots-21.04.0.tar.xz) = 1186320 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index a012046a425b..e6c9b5be29b6 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706234 -SHA256 (KDE/release-service/20.12.3/kiriki-20.12.3.tar.xz) = 0db68777af69e41cbfbe3a9a6f9cf1b0cb6c5110b656f9ecbb187dbaec6edc76 -SIZE (KDE/release-service/20.12.3/kiriki-20.12.3.tar.xz) = 378704 +TIMESTAMP = 1618579134 +SHA256 (KDE/release-service/21.04.0/kiriki-21.04.0.tar.xz) = 3afe38905c82c98baa1c603cbd36bb257e63075dd098702ae92946c321af9136 +SIZE (KDE/release-service/21.04.0/kiriki-21.04.0.tar.xz) = 379296 diff --git a/games/kiriki/pkg-plist b/games/kiriki/pkg-plist index c05d6c8472cf..86791c63cc34 100644 --- a/games/kiriki/pkg-plist +++ b/games/kiriki/pkg-plist @@ -1,65 +1,64 @@ bin/kiriki share/applications/org.kde.kiriki.desktop share/icons/hicolor/128x128/apps/kiriki.png share/icons/hicolor/16x16/apps/kiriki.png share/icons/hicolor/22x22/apps/kiriki.png share/icons/hicolor/32x32/apps/kiriki.png share/icons/hicolor/48x48/apps/kiriki.png share/icons/hicolor/64x64/apps/kiriki.png %%DATADIR%%/images/dice-1.png %%DATADIR%%/images/dice-2.png %%DATADIR%%/images/dice-3.png %%DATADIR%%/images/dice-4.png %%DATADIR%%/images/dice-5.png %%DATADIR%%/images/dice-6.png %%DATADIR%%/images/dice-none.png -share/kxmlgui5/kiriki/kirikiui.rc share/locale/ar/LC_MESSAGES/kiriki.mo share/locale/bs/LC_MESSAGES/kiriki.mo share/locale/ca/LC_MESSAGES/kiriki.mo share/locale/ca@valencia/LC_MESSAGES/kiriki.mo share/locale/cs/LC_MESSAGES/kiriki.mo share/locale/da/LC_MESSAGES/kiriki.mo share/locale/de/LC_MESSAGES/kiriki.mo share/locale/el/LC_MESSAGES/kiriki.mo share/locale/en_GB/LC_MESSAGES/kiriki.mo share/locale/eo/LC_MESSAGES/kiriki.mo share/locale/es/LC_MESSAGES/kiriki.mo share/locale/et/LC_MESSAGES/kiriki.mo share/locale/fi/LC_MESSAGES/kiriki.mo share/locale/fr/LC_MESSAGES/kiriki.mo share/locale/ga/LC_MESSAGES/kiriki.mo share/locale/gl/LC_MESSAGES/kiriki.mo share/locale/hi/LC_MESSAGES/kiriki.mo share/locale/hr/LC_MESSAGES/kiriki.mo share/locale/hu/LC_MESSAGES/kiriki.mo share/locale/id/LC_MESSAGES/kiriki.mo share/locale/is/LC_MESSAGES/kiriki.mo share/locale/it/LC_MESSAGES/kiriki.mo share/locale/ja/LC_MESSAGES/kiriki.mo share/locale/kk/LC_MESSAGES/kiriki.mo share/locale/km/LC_MESSAGES/kiriki.mo share/locale/ko/LC_MESSAGES/kiriki.mo share/locale/lt/LC_MESSAGES/kiriki.mo share/locale/lv/LC_MESSAGES/kiriki.mo share/locale/ml/LC_MESSAGES/kiriki.mo share/locale/mr/LC_MESSAGES/kiriki.mo share/locale/nb/LC_MESSAGES/kiriki.mo share/locale/nds/LC_MESSAGES/kiriki.mo share/locale/nl/LC_MESSAGES/kiriki.mo share/locale/nn/LC_MESSAGES/kiriki.mo share/locale/pl/LC_MESSAGES/kiriki.mo share/locale/pt/LC_MESSAGES/kiriki.mo share/locale/pt_BR/LC_MESSAGES/kiriki.mo share/locale/ro/LC_MESSAGES/kiriki.mo share/locale/ru/LC_MESSAGES/kiriki.mo share/locale/sk/LC_MESSAGES/kiriki.mo share/locale/sl/LC_MESSAGES/kiriki.mo share/locale/sr/LC_MESSAGES/kiriki.mo share/locale/sv/LC_MESSAGES/kiriki.mo share/locale/tr/LC_MESSAGES/kiriki.mo share/locale/ug/LC_MESSAGES/kiriki.mo share/locale/uk/LC_MESSAGES/kiriki.mo share/locale/zh_CN/LC_MESSAGES/kiriki.mo share/locale/zh_TW/LC_MESSAGES/kiriki.mo share/metainfo/org.kde.kiriki.appdata.xml diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 2dd5d21f75b5..6967a68513df 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706239 -SHA256 (KDE/release-service/20.12.3/kjumpingcube-20.12.3.tar.xz) = 6fcf9435cb784d28434da7af734a39f546f060be0dbfa156e92037a6c5492067 -SIZE (KDE/release-service/20.12.3/kjumpingcube-20.12.3.tar.xz) = 290892 +TIMESTAMP = 1618579135 +SHA256 (KDE/release-service/21.04.0/kjumpingcube-21.04.0.tar.xz) = a8cb7a34c6e752d3d24176b36413c2651ff154b88c4f5ff42fe21c44fbf5708a +SIZE (KDE/release-service/21.04.0/kjumpingcube-21.04.0.tar.xz) = 290988 diff --git a/games/klickety/Makefile b/games/klickety/Makefile index 1bbb99bda37b..5b28b43949eb 100644 --- a/games/klickety/Makefile +++ b/games/klickety/Makefile @@ -1,21 +1,21 @@ PORTNAME= klickety DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shebangfix tar:xz -SHEBANG_FILES= klickety-2.0-inherit-ksame-highscore.pl +SHEBANG_FILES= src/klickety-2.0-inherit-ksame-highscore.pl USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n itemviews \ jobwidgets kio libkdegames notifications notifyconfig service \ solid widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/klickety/distinfo b/games/klickety/distinfo index e02ce1ebd2a4..52f623faf91e 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706255 -SHA256 (KDE/release-service/20.12.3/klickety-20.12.3.tar.xz) = 58c4eca0569a5fd9595641f55ee8c293ef111360a597fa1de13675aa9f86b894 -SIZE (KDE/release-service/20.12.3/klickety-20.12.3.tar.xz) = 1394852 +TIMESTAMP = 1618579136 +SHA256 (KDE/release-service/21.04.0/klickety-21.04.0.tar.xz) = cb288b89a212e0be2b0f5fb60821dd72feadff547a81669aabcfafb6bfeb2a4a +SIZE (KDE/release-service/21.04.0/klickety-21.04.0.tar.xz) = 1394376 diff --git a/games/klickety/pkg-plist b/games/klickety/pkg-plist index 33686101f693..5bc6d7622a0e 100644 --- a/games/klickety/pkg-plist +++ b/games/klickety/pkg-plist @@ -1,75 +1,74 @@ bin/klickety share/applications/org.kde.klickety.desktop share/applications/org.kde.ksame.desktop share/icons/hicolor/128x128/apps/klickety.png share/icons/hicolor/128x128/apps/ksame.png share/icons/hicolor/16x16/apps/klickety.png share/icons/hicolor/16x16/apps/ksame.png share/icons/hicolor/22x22/apps/klickety.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/32x32/apps/klickety.png share/icons/hicolor/32x32/apps/ksame.png share/icons/hicolor/48x48/apps/klickety.png share/icons/hicolor/48x48/apps/ksame.png share/icons/hicolor/64x64/apps/klickety.png share/icons/hicolor/64x64/apps/ksame.png share/kconf_update/klickety-2.0-inherit-ksame-highscore.pl share/kconf_update/klickety.upd %%DATADIR%%/klickety.kcfg %%DATADIR%%/themes/classic.svg %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/ksame.desktop %%DATADIR%%/themes/ksame.svg %%DATADIR%%/themes/ksame_old.desktop %%DATADIR%%/themes/ksame_old.svg %%DATADIR%%/themes/ksame_old_preview.png %%DATADIR%%/themes/ksame_preview.png -share/kxmlgui5/klickety/klicketyui.rc share/locale/bs/LC_MESSAGES/klickety.mo share/locale/ca/LC_MESSAGES/klickety.mo share/locale/ca@valencia/LC_MESSAGES/klickety.mo share/locale/cs/LC_MESSAGES/klickety.mo share/locale/da/LC_MESSAGES/klickety.mo share/locale/de/LC_MESSAGES/klickety.mo share/locale/el/LC_MESSAGES/klickety.mo share/locale/en_GB/LC_MESSAGES/klickety.mo share/locale/es/LC_MESSAGES/klickety.mo share/locale/et/LC_MESSAGES/klickety.mo share/locale/fi/LC_MESSAGES/klickety.mo share/locale/fr/LC_MESSAGES/klickety.mo share/locale/ga/LC_MESSAGES/klickety.mo share/locale/gl/LC_MESSAGES/klickety.mo share/locale/hu/LC_MESSAGES/klickety.mo share/locale/id/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klickety.mo share/locale/it/LC_MESSAGES/klickety.mo share/locale/ja/LC_MESSAGES/klickety.mo share/locale/kk/LC_MESSAGES/klickety.mo share/locale/ko/LC_MESSAGES/klickety.mo share/locale/lt/LC_MESSAGES/klickety.mo share/locale/lv/LC_MESSAGES/klickety.mo share/locale/ml/LC_MESSAGES/klickety.mo share/locale/mr/LC_MESSAGES/klickety.mo share/locale/nb/LC_MESSAGES/klickety.mo share/locale/nds/LC_MESSAGES/klickety.mo share/locale/nl/LC_MESSAGES/klickety.mo share/locale/nn/LC_MESSAGES/klickety.mo share/locale/pl/LC_MESSAGES/klickety.mo share/locale/pt/LC_MESSAGES/klickety.mo share/locale/pt_BR/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ru/LC_MESSAGES/klickety.mo share/locale/sk/LC_MESSAGES/klickety.mo share/locale/sl/LC_MESSAGES/klickety.mo share/locale/sr/LC_MESSAGES/klickety.mo share/locale/sv/LC_MESSAGES/klickety.mo share/locale/tr/LC_MESSAGES/klickety.mo share/locale/ug/LC_MESSAGES/klickety.mo share/locale/uk/LC_MESSAGES/klickety.mo share/locale/zh_CN/LC_MESSAGES/klickety.mo share/locale/zh_TW/LC_MESSAGES/klickety.mo share/metainfo/org.kde.klickety.appdata.xml share/metainfo/org.kde.ksame.appdata.xml share/sounds/klickety/game-finished.ogg share/sounds/klickety/remove.ogg diff --git a/games/klines/distinfo b/games/klines/distinfo index d5f364b92de3..8be0be9aecbb 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706248 -SHA256 (KDE/release-service/20.12.3/klines-20.12.3.tar.xz) = 1689eebfb9e36ab17db362bd1a2196088f089ae49c1e5a20e6a909d779d95e1b -SIZE (KDE/release-service/20.12.3/klines-20.12.3.tar.xz) = 1790320 +TIMESTAMP = 1618579137 +SHA256 (KDE/release-service/21.04.0/klines-21.04.0.tar.xz) = 5472649f2f6e80301223273df3f59e9f5fac7debfa75442258c77228fc32c2ab +SIZE (KDE/release-service/21.04.0/klines-21.04.0.tar.xz) = 1789456 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 19b2178a1d31..bf17f4b5dd26 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706239 -SHA256 (KDE/release-service/20.12.3/kmahjongg-20.12.3.tar.xz) = 4256a643c64d5d8df226f56f65fdba241caeb25f87491cd1c99b21d307a0a6cf -SIZE (KDE/release-service/20.12.3/kmahjongg-20.12.3.tar.xz) = 3435208 +TIMESTAMP = 1618579138 +SHA256 (KDE/release-service/21.04.0/kmahjongg-21.04.0.tar.xz) = 9859b6e970d0a47254ff385cd095acbbae8d7aa0d3286818ca7127eb94bd8e70 +SIZE (KDE/release-service/21.04.0/kmahjongg-21.04.0.tar.xz) = 3433944 diff --git a/games/kmahjongg/pkg-plist b/games/kmahjongg/pkg-plist index 3570ec30130f..8a4a0a180a28 100644 --- a/games/kmahjongg/pkg-plist +++ b/games/kmahjongg/pkg-plist @@ -1,211 +1,210 @@ bin/kmahjongg share/qlogging-categories5/kmahjongg.categories share/applications/org.kde.kmahjongg.desktop share/config.kcfg/kmahjongg.kcfg share/icons/hicolor/128x128/apps/kmahjongg.png share/icons/hicolor/16x16/apps/kmahjongg.png share/icons/hicolor/22x22/apps/kmahjongg.png share/icons/hicolor/32x32/apps/kmahjongg.png share/icons/hicolor/48x48/apps/kmahjongg.png share/icons/hicolor/64x64/apps/kmahjongg.png share/icons/hicolor/scalable/apps/kmahjongg.svgz %%DATADIR%%/layouts/4_winds.desktop %%DATADIR%%/layouts/4_winds.layout %%DATADIR%%/layouts/Vi.desktop %%DATADIR%%/layouts/Vi.layout %%DATADIR%%/layouts/X_shaped.desktop %%DATADIR%%/layouts/X_shaped.layout %%DATADIR%%/layouts/alien.desktop %%DATADIR%%/layouts/alien.layout %%DATADIR%%/layouts/altar.desktop %%DATADIR%%/layouts/altar.layout %%DATADIR%%/layouts/arena.desktop %%DATADIR%%/layouts/arena.layout %%DATADIR%%/layouts/arrow.desktop %%DATADIR%%/layouts/arrow.layout %%DATADIR%%/layouts/atlantis.desktop %%DATADIR%%/layouts/atlantis.layout %%DATADIR%%/layouts/aztec.desktop %%DATADIR%%/layouts/aztec.layout %%DATADIR%%/layouts/balance.desktop %%DATADIR%%/layouts/balance.layout %%DATADIR%%/layouts/bat.desktop %%DATADIR%%/layouts/bat.layout %%DATADIR%%/layouts/bug.desktop %%DATADIR%%/layouts/bug.layout %%DATADIR%%/layouts/castle.desktop %%DATADIR%%/layouts/castle.layout %%DATADIR%%/layouts/castle2.desktop %%DATADIR%%/layouts/castle2.layout %%DATADIR%%/layouts/cat.desktop %%DATADIR%%/layouts/cat.layout %%DATADIR%%/layouts/chains.desktop %%DATADIR%%/layouts/chains.layout %%DATADIR%%/layouts/checkered.desktop %%DATADIR%%/layouts/checkered.layout %%DATADIR%%/layouts/chip.desktop %%DATADIR%%/layouts/chip.layout %%DATADIR%%/layouts/clubs.desktop %%DATADIR%%/layouts/clubs.layout %%DATADIR%%/layouts/columns.desktop %%DATADIR%%/layouts/columns.layout %%DATADIR%%/layouts/crab.desktop %%DATADIR%%/layouts/crab.layout %%DATADIR%%/layouts/cross.desktop %%DATADIR%%/layouts/cross.layout %%DATADIR%%/layouts/default.desktop %%DATADIR%%/layouts/default.layout %%DATADIR%%/layouts/dragon.desktop %%DATADIR%%/layouts/dragon.layout %%DATADIR%%/layouts/eagle.desktop %%DATADIR%%/layouts/eagle.layout %%DATADIR%%/layouts/enterprise.desktop %%DATADIR%%/layouts/enterprise.layout %%DATADIR%%/layouts/explosion.desktop %%DATADIR%%/layouts/explosion.layout %%DATADIR%%/layouts/flowers.desktop %%DATADIR%%/layouts/flowers.layout %%DATADIR%%/layouts/future.desktop %%DATADIR%%/layouts/future.layout %%DATADIR%%/layouts/galaxy.desktop %%DATADIR%%/layouts/galaxy.layout %%DATADIR%%/layouts/garden.desktop %%DATADIR%%/layouts/garden.layout %%DATADIR%%/layouts/girl.desktop %%DATADIR%%/layouts/girl.layout %%DATADIR%%/layouts/glade.desktop %%DATADIR%%/layouts/glade.layout %%DATADIR%%/layouts/grid.desktop %%DATADIR%%/layouts/grid.layout %%DATADIR%%/layouts/helios.desktop %%DATADIR%%/layouts/helios.layout %%DATADIR%%/layouts/hole.desktop %%DATADIR%%/layouts/hole.layout %%DATADIR%%/layouts/inner_circle.desktop %%DATADIR%%/layouts/inner_circle.layout %%DATADIR%%/layouts/key.desktop %%DATADIR%%/layouts/key.layout %%DATADIR%%/layouts/km.desktop %%DATADIR%%/layouts/km.layout %%DATADIR%%/layouts/labyrinth.desktop %%DATADIR%%/layouts/labyrinth.layout %%DATADIR%%/layouts/mask.desktop %%DATADIR%%/layouts/mask.layout %%DATADIR%%/layouts/maya.desktop %%DATADIR%%/layouts/maya.layout %%DATADIR%%/layouts/maze.desktop %%DATADIR%%/layouts/maze.layout %%DATADIR%%/layouts/mesh.desktop %%DATADIR%%/layouts/mesh.layout %%DATADIR%%/layouts/moth.desktop %%DATADIR%%/layouts/moth.layout %%DATADIR%%/layouts/order.desktop %%DATADIR%%/layouts/order.layout %%DATADIR%%/layouts/pattern.desktop %%DATADIR%%/layouts/pattern.layout %%DATADIR%%/layouts/penta.desktop %%DATADIR%%/layouts/penta.layout %%DATADIR%%/layouts/pillars.desktop %%DATADIR%%/layouts/pillars.layout %%DATADIR%%/layouts/pirates.desktop %%DATADIR%%/layouts/pirates.layout %%DATADIR%%/layouts/pyramid.desktop %%DATADIR%%/layouts/pyramid.layout %%DATADIR%%/layouts/rocket.desktop %%DATADIR%%/layouts/rocket.layout %%DATADIR%%/layouts/shield.desktop %%DATADIR%%/layouts/shield.layout %%DATADIR%%/layouts/spider.desktop %%DATADIR%%/layouts/spider.layout %%DATADIR%%/layouts/squares.desktop %%DATADIR%%/layouts/squares.layout %%DATADIR%%/layouts/squaring.desktop %%DATADIR%%/layouts/squaring.layout %%DATADIR%%/layouts/stadion.desktop %%DATADIR%%/layouts/stadion.layout %%DATADIR%%/layouts/stairs.desktop %%DATADIR%%/layouts/stairs.layout %%DATADIR%%/layouts/star.desktop %%DATADIR%%/layouts/star.layout %%DATADIR%%/layouts/star_ship.desktop %%DATADIR%%/layouts/star_ship.layout %%DATADIR%%/layouts/stax.desktop %%DATADIR%%/layouts/stax.layout %%DATADIR%%/layouts/swirl.desktop %%DATADIR%%/layouts/swirl.layout %%DATADIR%%/layouts/temple.desktop %%DATADIR%%/layouts/temple.layout %%DATADIR%%/layouts/the_door.desktop %%DATADIR%%/layouts/the_door.layout %%DATADIR%%/layouts/theatre.desktop %%DATADIR%%/layouts/theatre.layout %%DATADIR%%/layouts/time_tunnel.desktop %%DATADIR%%/layouts/time_tunnel.layout %%DATADIR%%/layouts/tomb.desktop %%DATADIR%%/layouts/tomb.layout %%DATADIR%%/layouts/totem.desktop %%DATADIR%%/layouts/totem.layout %%DATADIR%%/layouts/tower.desktop %%DATADIR%%/layouts/tower.layout %%DATADIR%%/layouts/triangle.desktop %%DATADIR%%/layouts/triangle.layout %%DATADIR%%/layouts/up&down.desktop %%DATADIR%%/layouts/up&down.layout %%DATADIR%%/layouts/well.desktop %%DATADIR%%/layouts/well.layout -share/kxmlgui5/kmahjongg/kmahjonggui.rc share/locale/ar/LC_MESSAGES/kmahjongg.mo share/locale/bg/LC_MESSAGES/kmahjongg.mo share/locale/bs/LC_MESSAGES/kmahjongg.mo share/locale/ca/LC_MESSAGES/kmahjongg.mo share/locale/ca@valencia/LC_MESSAGES/kmahjongg.mo share/locale/cs/LC_MESSAGES/kmahjongg.mo share/locale/da/LC_MESSAGES/kmahjongg.mo share/locale/de/LC_MESSAGES/kmahjongg.mo share/locale/el/LC_MESSAGES/kmahjongg.mo share/locale/en_GB/LC_MESSAGES/kmahjongg.mo share/locale/eo/LC_MESSAGES/kmahjongg.mo share/locale/es/LC_MESSAGES/kmahjongg.mo share/locale/et/LC_MESSAGES/kmahjongg.mo share/locale/eu/LC_MESSAGES/kmahjongg.mo share/locale/fa/LC_MESSAGES/kmahjongg.mo share/locale/fi/LC_MESSAGES/kmahjongg.mo share/locale/fr/LC_MESSAGES/kmahjongg.mo share/locale/ga/LC_MESSAGES/kmahjongg.mo share/locale/gl/LC_MESSAGES/kmahjongg.mo share/locale/he/LC_MESSAGES/kmahjongg.mo share/locale/hi/LC_MESSAGES/kmahjongg.mo share/locale/hr/LC_MESSAGES/kmahjongg.mo share/locale/hu/LC_MESSAGES/kmahjongg.mo share/locale/id/LC_MESSAGES/kmahjongg.mo share/locale/is/LC_MESSAGES/kmahjongg.mo share/locale/it/LC_MESSAGES/kmahjongg.mo share/locale/ja/LC_MESSAGES/kmahjongg.mo share/locale/kk/LC_MESSAGES/kmahjongg.mo share/locale/km/LC_MESSAGES/kmahjongg.mo share/locale/ko/LC_MESSAGES/kmahjongg.mo share/locale/lt/LC_MESSAGES/kmahjongg.mo share/locale/lv/LC_MESSAGES/kmahjongg.mo share/locale/ml/LC_MESSAGES/kmahjongg.mo share/locale/mr/LC_MESSAGES/kmahjongg.mo share/locale/nb/LC_MESSAGES/kmahjongg.mo share/locale/nds/LC_MESSAGES/kmahjongg.mo share/locale/nl/LC_MESSAGES/kmahjongg.mo share/locale/nn/LC_MESSAGES/kmahjongg.mo share/locale/pa/LC_MESSAGES/kmahjongg.mo share/locale/pl/LC_MESSAGES/kmahjongg.mo share/locale/pt/LC_MESSAGES/kmahjongg.mo share/locale/pt_BR/LC_MESSAGES/kmahjongg.mo share/locale/ro/LC_MESSAGES/kmahjongg.mo share/locale/ru/LC_MESSAGES/kmahjongg.mo share/locale/sk/LC_MESSAGES/kmahjongg.mo share/locale/sl/LC_MESSAGES/kmahjongg.mo share/locale/sr/LC_MESSAGES/kmahjongg.mo share/locale/sv/LC_MESSAGES/kmahjongg.mo share/locale/tr/LC_MESSAGES/kmahjongg.mo share/locale/ug/LC_MESSAGES/kmahjongg.mo share/locale/uk/LC_MESSAGES/kmahjongg.mo share/locale/wa/LC_MESSAGES/kmahjongg.mo share/locale/zh_CN/LC_MESSAGES/kmahjongg.mo share/locale/zh_TW/LC_MESSAGES/kmahjongg.mo share/metainfo/org.kde.kmahjongg.appdata.xml diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 1589a8d541da..95e83af9a67e 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706262 -SHA256 (KDE/release-service/20.12.3/kmines-20.12.3.tar.xz) = 595261077519c2556d614ba5da6b09caf6f93154cb907d77fc419d839143e985 -SIZE (KDE/release-service/20.12.3/kmines-20.12.3.tar.xz) = 959492 +TIMESTAMP = 1618579138 +SHA256 (KDE/release-service/21.04.0/kmines-21.04.0.tar.xz) = f7fefd9563a5821ec2460ad04142177f0006efab8c0510516912d81404b5be21 +SIZE (KDE/release-service/21.04.0/kmines-21.04.0.tar.xz) = 959108 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index b9fb0f7ee834..e5ac786b6465 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706263 -SHA256 (KDE/release-service/20.12.3/knavalbattle-20.12.3.tar.xz) = cfd0b16aabe73c57eb7fe0b9805b7dc3f63dba044d53995752ca80f58392f9a8 -SIZE (KDE/release-service/20.12.3/knavalbattle-20.12.3.tar.xz) = 1290248 +TIMESTAMP = 1618579139 +SHA256 (KDE/release-service/21.04.0/knavalbattle-21.04.0.tar.xz) = 6510efefec72bd90eb9b563cea1ca0226c17d33cb337d62662e692cceaacc776 +SIZE (KDE/release-service/21.04.0/knavalbattle-21.04.0.tar.xz) = 1366736 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 26f538638dd6..e54f951ff428 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706264 -SHA256 (KDE/release-service/20.12.3/knetwalk-20.12.3.tar.xz) = a974f14ed362dc42cb04c57f51e6bc1df9c9458dd817ed4fd9ea45701d0dd5ae -SIZE (KDE/release-service/20.12.3/knetwalk-20.12.3.tar.xz) = 1267580 +TIMESTAMP = 1618579140 +SHA256 (KDE/release-service/21.04.0/knetwalk-21.04.0.tar.xz) = 959c3dcf616877ed1a2e3cdb4c563c78ea2cc7d6a97130de7acdb22b9f2bfa88 +SIZE (KDE/release-service/21.04.0/knetwalk-21.04.0.tar.xz) = 1269676 diff --git a/games/knights/distinfo b/games/knights/distinfo index b2b9604b7e8a..88765b67e76f 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706247 -SHA256 (KDE/release-service/20.12.3/knights-20.12.3.tar.xz) = 497b1785ef27a00e2ac852855f160950116b3c86fa053ad187f9611712ef057d -SIZE (KDE/release-service/20.12.3/knights-20.12.3.tar.xz) = 3535008 +TIMESTAMP = 1618579141 +SHA256 (KDE/release-service/21.04.0/knights-21.04.0.tar.xz) = c392a3b3f02cc52aedd3e22e90950d3204fb1465f49bcfdd1a1fcd7237c68327 +SIZE (KDE/release-service/21.04.0/knights-21.04.0.tar.xz) = 3536400 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index d2f1a99f9945..bb98e9b9a0a8 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706237 -SHA256 (KDE/release-service/20.12.3/kolf-20.12.3.tar.xz) = 774d4d8a33cf521a71df9b10f3fd64341608fedf00976e956c26e9fe0ae2b5f7 -SIZE (KDE/release-service/20.12.3/kolf-20.12.3.tar.xz) = 1029796 +TIMESTAMP = 1618579142 +SHA256 (KDE/release-service/21.04.0/kolf-21.04.0.tar.xz) = 98b91f596f95899ed65133c2478c0396a2decc49117e3dee6167c1bb2a594008 +SIZE (KDE/release-service/21.04.0/kolf-21.04.0.tar.xz) = 1034140 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index b6843a883bf4..5f1e3623d21a 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706258 -SHA256 (KDE/release-service/20.12.3/kollision-20.12.3.tar.xz) = 201e97209e88aacd076b92d17707fbfbc2eb9c5b7a8746d5e2d3d176165c6e99 -SIZE (KDE/release-service/20.12.3/kollision-20.12.3.tar.xz) = 290660 +TIMESTAMP = 1618579142 +SHA256 (KDE/release-service/21.04.0/kollision-21.04.0.tar.xz) = 2e41b601d918b95cd5bb265488bb084c9aee0fb838a3982ace4650c6083dd631 +SIZE (KDE/release-service/21.04.0/kollision-21.04.0.tar.xz) = 290424 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index e75a4f5069f1..d2779814e680 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706252 -SHA256 (KDE/release-service/20.12.3/konquest-20.12.3.tar.xz) = c82471fa69d001770bd8c79d131e8e31b78914988dd4944a47d69e5f5c64cf87 -SIZE (KDE/release-service/20.12.3/konquest-20.12.3.tar.xz) = 666152 +TIMESTAMP = 1618579143 +SHA256 (KDE/release-service/21.04.0/konquest-21.04.0.tar.xz) = fa001508f0298ca375900d1e6f3de1a96b04b8ffbeabace4463cef66473bd0e7 +SIZE (KDE/release-service/21.04.0/konquest-21.04.0.tar.xz) = 665736 diff --git a/games/konquest/pkg-plist b/games/konquest/pkg-plist index af3faeda8b1b..3fbecba02b25 100644 --- a/games/konquest/pkg-plist +++ b/games/konquest/pkg-plist @@ -1,64 +1,63 @@ bin/konquest share/applications/org.kde.konquest.desktop share/icons/hicolor/128x128/apps/konquest.png share/icons/hicolor/16x16/apps/konquest.png share/icons/hicolor/22x22/apps/konquest.png share/icons/hicolor/32x32/apps/konquest.png share/icons/hicolor/48x48/apps/konquest.png share/icons/hicolor/64x64/apps/konquest.png %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/pics/konquest-splash.png -share/kxmlgui5/konquest/konquestui.rc share/locale/ar/LC_MESSAGES/konquest.mo share/locale/bg/LC_MESSAGES/konquest.mo share/locale/bs/LC_MESSAGES/konquest.mo share/locale/ca/LC_MESSAGES/konquest.mo share/locale/ca@valencia/LC_MESSAGES/konquest.mo share/locale/cs/LC_MESSAGES/konquest.mo share/locale/da/LC_MESSAGES/konquest.mo share/locale/de/LC_MESSAGES/konquest.mo share/locale/el/LC_MESSAGES/konquest.mo share/locale/en_GB/LC_MESSAGES/konquest.mo share/locale/eo/LC_MESSAGES/konquest.mo share/locale/es/LC_MESSAGES/konquest.mo share/locale/et/LC_MESSAGES/konquest.mo share/locale/eu/LC_MESSAGES/konquest.mo share/locale/fa/LC_MESSAGES/konquest.mo share/locale/fi/LC_MESSAGES/konquest.mo share/locale/fr/LC_MESSAGES/konquest.mo share/locale/ga/LC_MESSAGES/konquest.mo share/locale/gl/LC_MESSAGES/konquest.mo share/locale/he/LC_MESSAGES/konquest.mo share/locale/hi/LC_MESSAGES/konquest.mo share/locale/hr/LC_MESSAGES/konquest.mo share/locale/hu/LC_MESSAGES/konquest.mo share/locale/is/LC_MESSAGES/konquest.mo share/locale/it/LC_MESSAGES/konquest.mo share/locale/ja/LC_MESSAGES/konquest.mo share/locale/kk/LC_MESSAGES/konquest.mo share/locale/km/LC_MESSAGES/konquest.mo share/locale/ko/LC_MESSAGES/konquest.mo share/locale/lt/LC_MESSAGES/konquest.mo share/locale/lv/LC_MESSAGES/konquest.mo share/locale/ml/LC_MESSAGES/konquest.mo share/locale/mr/LC_MESSAGES/konquest.mo share/locale/nb/LC_MESSAGES/konquest.mo share/locale/nds/LC_MESSAGES/konquest.mo share/locale/nl/LC_MESSAGES/konquest.mo share/locale/nn/LC_MESSAGES/konquest.mo share/locale/pa/LC_MESSAGES/konquest.mo share/locale/pl/LC_MESSAGES/konquest.mo share/locale/pt/LC_MESSAGES/konquest.mo share/locale/pt_BR/LC_MESSAGES/konquest.mo share/locale/ro/LC_MESSAGES/konquest.mo share/locale/ru/LC_MESSAGES/konquest.mo share/locale/sk/LC_MESSAGES/konquest.mo share/locale/sl/LC_MESSAGES/konquest.mo share/locale/sr/LC_MESSAGES/konquest.mo share/locale/sv/LC_MESSAGES/konquest.mo share/locale/tr/LC_MESSAGES/konquest.mo share/locale/ug/LC_MESSAGES/konquest.mo share/locale/uk/LC_MESSAGES/konquest.mo share/locale/zh_CN/LC_MESSAGES/konquest.mo share/locale/zh_TW/LC_MESSAGES/konquest.mo share/metainfo/org.kde.konquest.appdata.xml diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 82ee2e61c701..402e46286a69 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706240 -SHA256 (KDE/release-service/20.12.3/kpat-20.12.3.tar.xz) = 21d802097e8891d7655407a56a42a79107a4002096a2a3ea26b0ac0ee8fe34ec -SIZE (KDE/release-service/20.12.3/kpat-20.12.3.tar.xz) = 3584892 +TIMESTAMP = 1618579144 +SHA256 (KDE/release-service/21.04.0/kpat-21.04.0.tar.xz) = d645882d8de0e5ec6c79e01f13fef258553e1d59bb18189b6888cd5276bb6a10 +SIZE (KDE/release-service/21.04.0/kpat-21.04.0.tar.xz) = 3648792 diff --git a/games/kpat/pkg-plist b/games/kpat/pkg-plist index 36c9eb256c68..92b727c4053f 100644 --- a/games/kpat/pkg-plist +++ b/games/kpat/pkg-plist @@ -1,110 +1,110 @@ bin/kpat share/qlogging-categories5/kpat.categories lib/libkcardgame.so man/ca/man6/kpat.6.gz 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/19.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/knsrcfiles/kcardtheme.knsrc share/knsrcfiles/kpat.knsrc -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/ca/LC_MESSAGES/kpat.mo share/locale/ca@valencia/LC_MESSAGES/kpat.mo share/locale/cs/LC_MESSAGES/kpat.mo share/locale/da/LC_MESSAGES/kpat.mo share/locale/de/LC_MESSAGES/kpat.mo share/locale/el/LC_MESSAGES/kpat.mo share/locale/en_GB/LC_MESSAGES/kpat.mo share/locale/eo/LC_MESSAGES/kpat.mo share/locale/es/LC_MESSAGES/kpat.mo share/locale/et/LC_MESSAGES/kpat.mo share/locale/eu/LC_MESSAGES/kpat.mo share/locale/fa/LC_MESSAGES/kpat.mo share/locale/fi/LC_MESSAGES/kpat.mo share/locale/fr/LC_MESSAGES/kpat.mo share/locale/ga/LC_MESSAGES/kpat.mo share/locale/gl/LC_MESSAGES/kpat.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/is/LC_MESSAGES/kpat.mo share/locale/it/LC_MESSAGES/kpat.mo share/locale/ja/LC_MESSAGES/kpat.mo share/locale/kk/LC_MESSAGES/kpat.mo share/locale/km/LC_MESSAGES/kpat.mo share/locale/ko/LC_MESSAGES/kpat.mo share/locale/lt/LC_MESSAGES/kpat.mo share/locale/lv/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat.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/nn/LC_MESSAGES/kpat.mo share/locale/pa/LC_MESSAGES/kpat.mo share/locale/pl/LC_MESSAGES/kpat.mo share/locale/pt/LC_MESSAGES/kpat.mo share/locale/pt_BR/LC_MESSAGES/kpat.mo share/locale/ro/LC_MESSAGES/kpat.mo share/locale/ru/LC_MESSAGES/kpat.mo share/locale/sk/LC_MESSAGES/kpat.mo share/locale/sl/LC_MESSAGES/kpat.mo share/locale/sr/LC_MESSAGES/kpat.mo share/locale/sv/LC_MESSAGES/kpat.mo share/locale/tr/LC_MESSAGES/kpat.mo share/locale/ug/LC_MESSAGES/kpat.mo share/locale/uk/LC_MESSAGES/kpat.mo share/locale/wa/LC_MESSAGES/kpat.mo share/locale/zh_CN/LC_MESSAGES/kpat.mo share/locale/zh_TW/LC_MESSAGES/kpat.mo share/metainfo/org.kde.kpat.appdata.xml share/mime/packages/kpatience.xml diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index dc46ea242916..e53e557cd118 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706256 -SHA256 (KDE/release-service/20.12.3/kreversi-20.12.3.tar.xz) = eecf3987100268c4c338adf14bc2da6710b6ae3e9b07e9f961fc9ed67f86d66c -SIZE (KDE/release-service/20.12.3/kreversi-20.12.3.tar.xz) = 953588 +TIMESTAMP = 1618579145 +SHA256 (KDE/release-service/21.04.0/kreversi-21.04.0.tar.xz) = 446aa6487bf7f1529ffa6878e9bceb5ba8d6c1559dffbddc99f7c12af902f30b +SIZE (KDE/release-service/21.04.0/kreversi-21.04.0.tar.xz) = 955432 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 903318eac0fb..15f0bfb2931b 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706243 -SHA256 (KDE/release-service/20.12.3/kshisen-20.12.3.tar.xz) = d898e064fc5d7fe95e322224959c7e73eda97459963847af14341aa1bfe8f9a5 -SIZE (KDE/release-service/20.12.3/kshisen-20.12.3.tar.xz) = 827336 +TIMESTAMP = 1618579146 +SHA256 (KDE/release-service/21.04.0/kshisen-21.04.0.tar.xz) = 313b118c4486bbbde2511d42ef860120ac78c46cac6f1b921074e46796f5fb20 +SIZE (KDE/release-service/21.04.0/kshisen-21.04.0.tar.xz) = 827724 diff --git a/games/kshisen/pkg-plist b/games/kshisen/pkg-plist index f5f8f66f0ec2..8fb1207c97ad 100644 --- a/games/kshisen/pkg-plist +++ b/games/kshisen/pkg-plist @@ -1,67 +1,66 @@ bin/kshisen share/qlogging-categories5/kshisen.categories share/applications/org.kde.kshisen.desktop share/config.kcfg/kshisen.kcfg share/icons/hicolor/128x128/apps/kshisen.png share/icons/hicolor/16x16/apps/kshisen.png share/icons/hicolor/22x22/apps/kshisen.png share/icons/hicolor/32x32/apps/kshisen.png share/icons/hicolor/48x48/apps/kshisen.png share/icons/hicolor/64x64/apps/kshisen.png -share/kxmlgui5/kshisen/kshisenui.rc share/locale/ar/LC_MESSAGES/kshisen.mo share/locale/bg/LC_MESSAGES/kshisen.mo share/locale/bs/LC_MESSAGES/kshisen.mo share/locale/ca/LC_MESSAGES/kshisen.mo share/locale/ca@valencia/LC_MESSAGES/kshisen.mo share/locale/cs/LC_MESSAGES/kshisen.mo share/locale/da/LC_MESSAGES/kshisen.mo share/locale/de/LC_MESSAGES/kshisen.mo share/locale/el/LC_MESSAGES/kshisen.mo share/locale/en_GB/LC_MESSAGES/kshisen.mo share/locale/eo/LC_MESSAGES/kshisen.mo share/locale/es/LC_MESSAGES/kshisen.mo share/locale/et/LC_MESSAGES/kshisen.mo share/locale/eu/LC_MESSAGES/kshisen.mo share/locale/fa/LC_MESSAGES/kshisen.mo share/locale/fi/LC_MESSAGES/kshisen.mo share/locale/fr/LC_MESSAGES/kshisen.mo share/locale/ga/LC_MESSAGES/kshisen.mo share/locale/gl/LC_MESSAGES/kshisen.mo share/locale/he/LC_MESSAGES/kshisen.mo share/locale/hi/LC_MESSAGES/kshisen.mo share/locale/hr/LC_MESSAGES/kshisen.mo share/locale/hu/LC_MESSAGES/kshisen.mo share/locale/id/LC_MESSAGES/kshisen.mo share/locale/is/LC_MESSAGES/kshisen.mo share/locale/it/LC_MESSAGES/kshisen.mo share/locale/ja/LC_MESSAGES/kshisen.mo share/locale/kk/LC_MESSAGES/kshisen.mo share/locale/km/LC_MESSAGES/kshisen.mo share/locale/ko/LC_MESSAGES/kshisen.mo share/locale/lt/LC_MESSAGES/kshisen.mo share/locale/lv/LC_MESSAGES/kshisen.mo share/locale/ml/LC_MESSAGES/kshisen.mo share/locale/mr/LC_MESSAGES/kshisen.mo share/locale/nb/LC_MESSAGES/kshisen.mo share/locale/nds/LC_MESSAGES/kshisen.mo share/locale/nl/LC_MESSAGES/kshisen.mo share/locale/nn/LC_MESSAGES/kshisen.mo share/locale/pa/LC_MESSAGES/kshisen.mo share/locale/pl/LC_MESSAGES/kshisen.mo share/locale/pt/LC_MESSAGES/kshisen.mo share/locale/pt_BR/LC_MESSAGES/kshisen.mo share/locale/ro/LC_MESSAGES/kshisen.mo share/locale/ru/LC_MESSAGES/kshisen.mo share/locale/sk/LC_MESSAGES/kshisen.mo share/locale/sl/LC_MESSAGES/kshisen.mo share/locale/sr/LC_MESSAGES/kshisen.mo share/locale/sv/LC_MESSAGES/kshisen.mo share/locale/tr/LC_MESSAGES/kshisen.mo share/locale/ug/LC_MESSAGES/kshisen.mo share/locale/uk/LC_MESSAGES/kshisen.mo share/locale/zh_CN/LC_MESSAGES/kshisen.mo share/locale/zh_TW/LC_MESSAGES/kshisen.mo share/metainfo/org.kde.kshisen.appdata.xml share/sounds/kshisen/tile-fall-tile.ogg share/sounds/kshisen/tile-touch.ogg diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index f8238e399dff..5c5d347e995f 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706252 -SHA256 (KDE/release-service/20.12.3/ksirk-20.12.3.tar.xz) = 45a198f6fec37d15a084ce2bf20770ca23a694bf4687b3bbbbb3c11a5ac904e7 -SIZE (KDE/release-service/20.12.3/ksirk-20.12.3.tar.xz) = 6993564 +TIMESTAMP = 1618579146 +SHA256 (KDE/release-service/21.04.0/ksirk-21.04.0.tar.xz) = 799adcab7b1bc6008dead0214ead6be19e68faec13bf33abf9d2ee53df9f2fe3 +SIZE (KDE/release-service/21.04.0/ksirk-21.04.0.tar.xz) = 6996308 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 7b94f02a5df8..446aa3b41c10 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706245 -SHA256 (KDE/release-service/20.12.3/ksnakeduel-20.12.3.tar.xz) = 4cc3bb58faf185e0ddbe3718d0bb332e71d9cbbf051ded812fc5cb141d6c578c -SIZE (KDE/release-service/20.12.3/ksnakeduel-20.12.3.tar.xz) = 544212 +TIMESTAMP = 1618579147 +SHA256 (KDE/release-service/21.04.0/ksnakeduel-21.04.0.tar.xz) = 27807d5e64bcc5d963d36cdc28cea7b681a7210eb5bf05c0b82e1fa1c42473e8 +SIZE (KDE/release-service/21.04.0/ksnakeduel-21.04.0.tar.xz) = 543720 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 56eeda7327cd..446dac08ed68 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706233 -SHA256 (KDE/release-service/20.12.3/kspaceduel-20.12.3.tar.xz) = bc7be5e02b771b355607da923daf92c7d11aefa7e49ce5cd7bffeb00e46dc139 -SIZE (KDE/release-service/20.12.3/kspaceduel-20.12.3.tar.xz) = 618104 +TIMESTAMP = 1618579148 +SHA256 (KDE/release-service/21.04.0/kspaceduel-21.04.0.tar.xz) = 1f3b8f10f5ae6d15c3e61da6449508db55b97a8477778b7fdde256ba08ac8f29 +SIZE (KDE/release-service/21.04.0/kspaceduel-21.04.0.tar.xz) = 617708 diff --git a/games/kspaceduel/pkg-plist b/games/kspaceduel/pkg-plist index 74f79c9b8007..1dd190c09763 100644 --- a/games/kspaceduel/pkg-plist +++ b/games/kspaceduel/pkg-plist @@ -1,85 +1,84 @@ bin/kspaceduel share/applications/org.kde.kspaceduel.desktop share/config.kcfg/kspaceduel.kcfg share/icons/hicolor/128x128/apps/kspaceduel.png share/icons/hicolor/16x16/apps/kspaceduel.png share/icons/hicolor/22x22/apps/kspaceduel.png share/icons/hicolor/32x32/apps/kspaceduel.png share/icons/hicolor/48x48/apps/kspaceduel.png share/icons/hicolor/64x64/apps/kspaceduel.png %%DATADIR%%/icons/hicolor/16x16/actions/spnewgame.png %%DATADIR%%/icons/hicolor/16x16/actions/spnewround.png %%DATADIR%%/icons/hicolor/16x16/actions/sppausegame.png %%DATADIR%%/icons/hicolor/22x22/actions/spnewgame.png %%DATADIR%%/icons/hicolor/22x22/actions/spnewround.png %%DATADIR%%/icons/hicolor/22x22/actions/sppausegame.png %%DATADIR%%/icons/hicolor/32x32/actions/spnewgame.png %%DATADIR%%/icons/hicolor/32x32/actions/spnewround.png %%DATADIR%%/icons/hicolor/32x32/actions/sppausegame.png %%DATADIR%%/sprites/backgr.png %%DATADIR%%/sprites/default_theme.svgz %%DATADIR%%/sprites/playerinfo/energy.png %%DATADIR%%/sprites/playerinfo/mine.png %%DATADIR%%/sprites/playerinfo/ship10.png %%DATADIR%%/sprites/playerinfo/ship11.png %%DATADIR%%/sprites/playerinfo/ship12.png %%DATADIR%%/sprites/playerinfo/ship13.png %%DATADIR%%/sprites/playerinfo/ship20.png %%DATADIR%%/sprites/playerinfo/ship21.png %%DATADIR%%/sprites/playerinfo/ship22.png %%DATADIR%%/sprites/playerinfo/ship23.png %%DATADIR%%/sprites/playerinfo/win.png -share/kxmlgui5/kspaceduel/kspaceduelui.rc share/locale/ar/LC_MESSAGES/kspaceduel.mo share/locale/bg/LC_MESSAGES/kspaceduel.mo share/locale/bs/LC_MESSAGES/kspaceduel.mo share/locale/ca/LC_MESSAGES/kspaceduel.mo share/locale/ca@valencia/LC_MESSAGES/kspaceduel.mo share/locale/cs/LC_MESSAGES/kspaceduel.mo share/locale/da/LC_MESSAGES/kspaceduel.mo share/locale/de/LC_MESSAGES/kspaceduel.mo share/locale/el/LC_MESSAGES/kspaceduel.mo share/locale/en_GB/LC_MESSAGES/kspaceduel.mo share/locale/eo/LC_MESSAGES/kspaceduel.mo share/locale/es/LC_MESSAGES/kspaceduel.mo share/locale/et/LC_MESSAGES/kspaceduel.mo share/locale/eu/LC_MESSAGES/kspaceduel.mo share/locale/fa/LC_MESSAGES/kspaceduel.mo share/locale/fi/LC_MESSAGES/kspaceduel.mo share/locale/fr/LC_MESSAGES/kspaceduel.mo share/locale/ga/LC_MESSAGES/kspaceduel.mo share/locale/gl/LC_MESSAGES/kspaceduel.mo share/locale/he/LC_MESSAGES/kspaceduel.mo share/locale/hi/LC_MESSAGES/kspaceduel.mo share/locale/hr/LC_MESSAGES/kspaceduel.mo share/locale/hu/LC_MESSAGES/kspaceduel.mo share/locale/is/LC_MESSAGES/kspaceduel.mo share/locale/it/LC_MESSAGES/kspaceduel.mo share/locale/ja/LC_MESSAGES/kspaceduel.mo share/locale/kk/LC_MESSAGES/kspaceduel.mo share/locale/km/LC_MESSAGES/kspaceduel.mo share/locale/ko/LC_MESSAGES/kspaceduel.mo share/locale/lt/LC_MESSAGES/kspaceduel.mo share/locale/lv/LC_MESSAGES/kspaceduel.mo share/locale/ml/LC_MESSAGES/kspaceduel.mo share/locale/mr/LC_MESSAGES/kspaceduel.mo share/locale/nb/LC_MESSAGES/kspaceduel.mo share/locale/nds/LC_MESSAGES/kspaceduel.mo share/locale/nl/LC_MESSAGES/kspaceduel.mo share/locale/nn/LC_MESSAGES/kspaceduel.mo share/locale/pa/LC_MESSAGES/kspaceduel.mo share/locale/pl/LC_MESSAGES/kspaceduel.mo share/locale/pt/LC_MESSAGES/kspaceduel.mo share/locale/pt_BR/LC_MESSAGES/kspaceduel.mo share/locale/ro/LC_MESSAGES/kspaceduel.mo share/locale/ru/LC_MESSAGES/kspaceduel.mo share/locale/sk/LC_MESSAGES/kspaceduel.mo share/locale/sl/LC_MESSAGES/kspaceduel.mo share/locale/sr/LC_MESSAGES/kspaceduel.mo share/locale/sv/LC_MESSAGES/kspaceduel.mo share/locale/tr/LC_MESSAGES/kspaceduel.mo share/locale/ug/LC_MESSAGES/kspaceduel.mo share/locale/uk/LC_MESSAGES/kspaceduel.mo share/locale/zh_CN/LC_MESSAGES/kspaceduel.mo share/locale/zh_TW/LC_MESSAGES/kspaceduel.mo share/metainfo/org.kde.kspaceduel.appdata.xml diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 221f5359d241..182c404003cf 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706236 -SHA256 (KDE/release-service/20.12.3/ksquares-20.12.3.tar.xz) = 6bf6939b252656757676d4eacc593ba81441d6a6ccffb431fb6a4bb91491e262 -SIZE (KDE/release-service/20.12.3/ksquares-20.12.3.tar.xz) = 266692 +TIMESTAMP = 1618579149 +SHA256 (KDE/release-service/21.04.0/ksquares-21.04.0.tar.xz) = 3952773dffef3f7e62e755aa73732651314618394966edbeac0c878f0d6243f8 +SIZE (KDE/release-service/21.04.0/ksquares-21.04.0.tar.xz) = 266352 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 33b2bccc4f81..4fe79fca119d 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706246 -SHA256 (KDE/release-service/20.12.3/ksudoku-20.12.3.tar.xz) = 997003b9c5719402eacb4ae10d6b868b252a141f6b5d6cebac47a746f2bd717a -SIZE (KDE/release-service/20.12.3/ksudoku-20.12.3.tar.xz) = 1676484 +TIMESTAMP = 1618579150 +SHA256 (KDE/release-service/21.04.0/ksudoku-21.04.0.tar.xz) = 60475276fa548766401433c6eaa6b02fa1478f2db02f40f04be5fc2baf34d564 +SIZE (KDE/release-service/21.04.0/ksudoku-21.04.0.tar.xz) = 1678496 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 9862e9be4e3f..474325be2c65 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614877457 -SHA256 (KDE/release-service/20.12.3/ktuberling-20.12.3.tar.xz) = 06a949bf9eb07bdb42732e70c5cc0bdabc4aafedd257d58c5392b60de64c9f34 -SIZE (KDE/release-service/20.12.3/ktuberling-20.12.3.tar.xz) = 70712392 +TIMESTAMP = 1618579151 +SHA256 (KDE/release-service/21.04.0/ktuberling-21.04.0.tar.xz) = 518c00bbf363153b4948662c1299e0c24ce5258bbfc410efc383920adf1dcf93 +SIZE (KDE/release-service/21.04.0/ktuberling-21.04.0.tar.xz) = 70758508 diff --git a/games/ktuberling/pkg-plist b/games/ktuberling/pkg-plist index d1d4b11841f4..7639cda8b3ee 100644 --- a/games/ktuberling/pkg-plist +++ b/games/ktuberling/pkg-plist @@ -1,1781 +1,1780 @@ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/mimetypes/application-x-tuberling.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/mimetypes/application-x-tuberling.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/mimetypes/application-x-tuberling.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/mimetypes/application-x-tuberling.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/mimetypes/application-x-tuberling.png %%DATADIR%%/pics/butterflies.desktop %%DATADIR%%/pics/butterflies.svgz %%DATADIR%%/pics/butterflies.theme %%DATADIR%%/pics/christmas.desktop %%DATADIR%%/pics/christmas.svgz %%DATADIR%%/pics/christmas.theme %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svg %%DATADIR%%/pics/default_theme.theme %%DATADIR%%/pics/egypt.desktop %%DATADIR%%/pics/egypt.svg %%DATADIR%%/pics/egypt.theme %%DATADIR%%/pics/moon.desktop %%DATADIR%%/pics/moon.svg %%DATADIR%%/pics/moon.theme %%DATADIR%%/pics/pizzeria.desktop %%DATADIR%%/pics/pizzeria.svgz %%DATADIR%%/pics/pizzeria.theme %%DATADIR%%/pics/potato-game.desktop %%DATADIR%%/pics/potato-game.svg %%DATADIR%%/pics/potato-game.theme %%DATADIR%%/pics/robin-tux.desktop %%DATADIR%%/pics/robin-tux.svgz %%DATADIR%%/pics/robin-tux.theme %%DATADIR%%/pics/robot_workshop.desktop %%DATADIR%%/pics/robot_workshop.svgz %%DATADIR%%/pics/robot_workshop.theme %%DATADIR%%/pics/train_valley.desktop %%DATADIR%%/pics/train_valley.svgz %%DATADIR%%/pics/train_valley.theme %%DATADIR%%/sounds/ca.soundtheme %%DATADIR%%/sounds/ca/Frier-Tux.ogg %%DATADIR%%/sounds/ca/Guard-Tux.ogg %%DATADIR%%/sounds/ca/Kid-Tux.ogg %%DATADIR%%/sounds/ca/Little-Tux.ogg %%DATADIR%%/sounds/ca/Maiden-Tux.ogg %%DATADIR%%/sounds/ca/Prince-Tux.ogg %%DATADIR%%/sounds/ca/Robin-Tux.ogg %%DATADIR%%/sounds/ca/Sherif-Tux.ogg %%DATADIR%%/sounds/ca/Whitch-Tux.ogg %%DATADIR%%/sounds/ca/apple.ogg %%DATADIR%%/sounds/ca/arrow.ogg %%DATADIR%%/sounds/ca/arrows.ogg %%DATADIR%%/sounds/ca/bow-shoot.ogg %%DATADIR%%/sounds/ca/bow.ogg %%DATADIR%%/sounds/ca/bullseye.ogg %%DATADIR%%/sounds/ca/butterflies_body.ogg %%DATADIR%%/sounds/ca/butterflies_circle.ogg %%DATADIR%%/sounds/ca/butterflies_circles.ogg %%DATADIR%%/sounds/ca/butterflies_eye.ogg %%DATADIR%%/sounds/ca/butterflies_heart.ogg %%DATADIR%%/sounds/ca/butterflies_purple_shape.ogg %%DATADIR%%/sounds/ca/butterflies_spiral.ogg %%DATADIR%%/sounds/ca/butterflies_wing.ogg %%DATADIR%%/sounds/ca/candles-glow.ogg %%DATADIR%%/sounds/ca/candles.ogg %%DATADIR%%/sounds/ca/egypt_arch.ogg %%DATADIR%%/sounds/ca/egypt_birds.ogg %%DATADIR%%/sounds/ca/egypt_boy.ogg %%DATADIR%%/sounds/ca/egypt_bridge.ogg %%DATADIR%%/sounds/ca/egypt_camel.ogg %%DATADIR%%/sounds/ca/egypt_cart.ogg %%DATADIR%%/sounds/ca/egypt_column.ogg %%DATADIR%%/sounds/ca/egypt_donkey.ogg %%DATADIR%%/sounds/ca/egypt_girl.ogg %%DATADIR%%/sounds/ca/egypt_grass.ogg %%DATADIR%%/sounds/ca/egypt_man.ogg %%DATADIR%%/sounds/ca/egypt_oasis.ogg %%DATADIR%%/sounds/ca/egypt_palmtree.ogg %%DATADIR%%/sounds/ca/egypt_pyramid.ogg %%DATADIR%%/sounds/ca/egypt_road.ogg %%DATADIR%%/sounds/ca/egypt_sphynx.ogg %%DATADIR%%/sounds/ca/egypt_well.ogg %%DATADIR%%/sounds/ca/egypt_woman.ogg %%DATADIR%%/sounds/ca/fish.ogg %%DATADIR%%/sounds/ca/flask-poison.ogg %%DATADIR%%/sounds/ca/flask.ogg %%DATADIR%%/sounds/ca/goblet.ogg %%DATADIR%%/sounds/ca/guitar.ogg %%DATADIR%%/sounds/ca/key.ogg %%DATADIR%%/sounds/ca/letter-love.ogg %%DATADIR%%/sounds/ca/letter.ogg %%DATADIR%%/sounds/ca/moon_alien.ogg %%DATADIR%%/sounds/ca/moon_astronaut.ogg %%DATADIR%%/sounds/ca/moon_earth.ogg %%DATADIR%%/sounds/ca/moon_fallingstar.ogg %%DATADIR%%/sounds/ca/moon_hotel.ogg %%DATADIR%%/sounds/ca/moon_monster.ogg %%DATADIR%%/sounds/ca/moon_moonwalker.ogg %%DATADIR%%/sounds/ca/moon_planet.ogg %%DATADIR%%/sounds/ca/moon_radar.ogg %%DATADIR%%/sounds/ca/moon_rocket.ogg %%DATADIR%%/sounds/ca/moon_satellite.ogg %%DATADIR%%/sounds/ca/moon_sign.ogg %%DATADIR%%/sounds/ca/moon_star.ogg %%DATADIR%%/sounds/ca/moon_ufo.ogg %%DATADIR%%/sounds/ca/note.ogg %%DATADIR%%/sounds/ca/notes.ogg %%DATADIR%%/sounds/ca/patata_arrecada.ogg %%DATADIR%%/sounds/ca/patata_barret.ogg %%DATADIR%%/sounds/ca/patata_basto.ogg %%DATADIR%%/sounds/ca/patata_bermudes.ogg %%DATADIR%%/sounds/ca/patata_bigoti.ogg %%DATADIR%%/sounds/ca/patata_cabell.ogg %%DATADIR%%/sounds/ca/patata_cella.ogg %%DATADIR%%/sounds/ca/patata_corbata.ogg %%DATADIR%%/sounds/ca/patata_corbati.ogg %%DATADIR%%/sounds/ca/patata_faldilla.ogg %%DATADIR%%/sounds/ca/patata_flors.ogg %%DATADIR%%/sounds/ca/patata_llavis.ogg %%DATADIR%%/sounds/ca/patata_nas.ogg %%DATADIR%%/sounds/ca/patata_orella.ogg %%DATADIR%%/sounds/ca/patata_paraigua.ogg %%DATADIR%%/sounds/ca/patata_pilota.ogg %%DATADIR%%/sounds/ca/patata_sabata.ogg %%DATADIR%%/sounds/ca/patata_ull.ogg %%DATADIR%%/sounds/ca/patata_ulleres.ogg %%DATADIR%%/sounds/ca/patata_ulleresdesol.ogg %%DATADIR%%/sounds/ca/patata_vestit.ogg %%DATADIR%%/sounds/ca/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ca/pizzeria_bacon.ogg %%DATADIR%%/sounds/ca/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ca/pizzeria_cheese.ogg %%DATADIR%%/sounds/ca/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ca/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ca/pizzeria_olive.ogg %%DATADIR%%/sounds/ca/pizzeria_onion.ogg %%DATADIR%%/sounds/ca/pizzeria_oregano.ogg %%DATADIR%%/sounds/ca/pizzeria_pepper.ogg %%DATADIR%%/sounds/ca/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ca/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ca/pizzeria_salami.ogg %%DATADIR%%/sounds/ca/pizzeria_tomato.ogg %%DATADIR%%/sounds/ca/plate.ogg %%DATADIR%%/sounds/ca/robot_workshop_antenna.ogg %%DATADIR%%/sounds/ca/robot_workshop_arm.ogg %%DATADIR%%/sounds/ca/robot_workshop_ball.ogg %%DATADIR%%/sounds/ca/robot_workshop_base.ogg %%DATADIR%%/sounds/ca/robot_workshop_block.ogg %%DATADIR%%/sounds/ca/robot_workshop_body.ogg %%DATADIR%%/sounds/ca/robot_workshop_claw.ogg %%DATADIR%%/sounds/ca/robot_workshop_eye.ogg %%DATADIR%%/sounds/ca/robot_workshop_foot.ogg %%DATADIR%%/sounds/ca/robot_workshop_hand.ogg %%DATADIR%%/sounds/ca/robot_workshop_head.ogg %%DATADIR%%/sounds/ca/robot_workshop_panel.ogg %%DATADIR%%/sounds/ca/robot_workshop_rocket.ogg %%DATADIR%%/sounds/ca/robot_workshop_rod.ogg %%DATADIR%%/sounds/ca/robot_workshop_wheel.ogg %%DATADIR%%/sounds/ca/say-angry.ogg %%DATADIR%%/sounds/ca/say-huh.ogg %%DATADIR%%/sounds/ca/say-idea.ogg %%DATADIR%%/sounds/ca/say-laugh.ogg %%DATADIR%%/sounds/ca/say-love.ogg %%DATADIR%%/sounds/ca/say-sick.ogg %%DATADIR%%/sounds/ca/say-stare.ogg %%DATADIR%%/sounds/ca/say-what.ogg %%DATADIR%%/sounds/ca/say-wow.ogg %%DATADIR%%/sounds/ca/say-zzz.ogg %%DATADIR%%/sounds/ca/teacup.ogg %%DATADIR%%/sounds/ca/tv_accident.ogg %%DATADIR%%/sounds/ca/tv_ball.ogg %%DATADIR%%/sounds/ca/tv_barrier.ogg %%DATADIR%%/sounds/ca/tv_bicycle.ogg %%DATADIR%%/sounds/ca/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ca/tv_car.ogg %%DATADIR%%/sounds/ca/tv_caravan.ogg %%DATADIR%%/sounds/ca/tv_cyclist.ogg %%DATADIR%%/sounds/ca/tv_elephant.ogg %%DATADIR%%/sounds/ca/tv_excavator.ogg %%DATADIR%%/sounds/ca/tv_fence.ogg %%DATADIR%%/sounds/ca/tv_fire.ogg %%DATADIR%%/sounds/ca/tv_fireengine.ogg %%DATADIR%%/sounds/ca/tv_fireman.ogg %%DATADIR%%/sounds/ca/tv_fisherman.ogg %%DATADIR%%/sounds/ca/tv_giraffe.ogg %%DATADIR%%/sounds/ca/tv_guitar.ogg %%DATADIR%%/sounds/ca/tv_guitarist.ogg %%DATADIR%%/sounds/ca/tv_house.ogg %%DATADIR%%/sounds/ca/tv_ladder.ogg %%DATADIR%%/sounds/ca/tv_lion.ogg %%DATADIR%%/sounds/ca/tv_lorry.ogg %%DATADIR%%/sounds/ca/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ca/tv_man.ogg %%DATADIR%%/sounds/ca/tv_mechanic.ogg %%DATADIR%%/sounds/ca/tv_monkey.ogg %%DATADIR%%/sounds/ca/tv_path.ogg %%DATADIR%%/sounds/ca/tv_rock.ogg %%DATADIR%%/sounds/ca/tv_school.ogg %%DATADIR%%/sounds/ca/tv_shop.ogg %%DATADIR%%/sounds/ca/tv_smoke.ogg %%DATADIR%%/sounds/ca/tv_tipper.ogg %%DATADIR%%/sounds/ca/tv_trailer.ogg %%DATADIR%%/sounds/ca/tv_train.ogg %%DATADIR%%/sounds/ca/tv_tree.ogg %%DATADIR%%/sounds/ca/tv_tunnel.ogg %%DATADIR%%/sounds/ca/tv_volley_net.ogg %%DATADIR%%/sounds/ca/tv_wagon.ogg %%DATADIR%%/sounds/ca/tv_woman.ogg %%DATADIR%%/sounds/ca/vase.ogg %%DATADIR%%/sounds/ca/wanted.ogg %%DATADIR%%/sounds/ca/white-dowe-fly.ogg %%DATADIR%%/sounds/ca/white-dowe.ogg %%DATADIR%%/sounds/ca/xmas_angel.ogg %%DATADIR%%/sounds/ca/xmas_ball.ogg %%DATADIR%%/sounds/ca/xmas_boot.ogg %%DATADIR%%/sounds/ca/xmas_candle.ogg %%DATADIR%%/sounds/ca/xmas_comet.ogg %%DATADIR%%/sounds/ca/xmas_garland.ogg %%DATADIR%%/sounds/ca/xmas_lights.ogg %%DATADIR%%/sounds/ca/xmas_mistletoe.ogg %%DATADIR%%/sounds/ca/xmas_moon.ogg %%DATADIR%%/sounds/ca/xmas_owl.ogg %%DATADIR%%/sounds/ca/xmas_present.ogg %%DATADIR%%/sounds/ca/xmas_rabbit.ogg %%DATADIR%%/sounds/ca/xmas_reindeer.ogg %%DATADIR%%/sounds/ca/xmas_shoe.ogg %%DATADIR%%/sounds/ca/xmas_snowflake.ogg %%DATADIR%%/sounds/ca/xmas_snowman.ogg %%DATADIR%%/sounds/ca/xmas_star.ogg %%DATADIR%%/sounds/ca/xmas_tree.ogg %%DATADIR%%/sounds/ca/xmas_turtle.ogg %%DATADIR%%/sounds/ca/xmas_tux.ogg %%DATADIR%%/sounds/da.soundtheme %%DATADIR%%/sounds/da/blomst.ogg %%DATADIR%%/sounds/da/bold.ogg %%DATADIR%%/sounds/da/briller.ogg %%DATADIR%%/sounds/da/egypt_aesel.ogg %%DATADIR%%/sounds/da/egypt_bro.ogg %%DATADIR%%/sounds/da/egypt_broend.ogg %%DATADIR%%/sounds/da/egypt_bue.ogg %%DATADIR%%/sounds/da/egypt_dreng.ogg %%DATADIR%%/sounds/da/egypt_fugle.ogg %%DATADIR%%/sounds/da/egypt_graes.ogg %%DATADIR%%/sounds/da/egypt_kamel.ogg %%DATADIR%%/sounds/da/egypt_kvinde.ogg %%DATADIR%%/sounds/da/egypt_mand.ogg %%DATADIR%%/sounds/da/egypt_oase.ogg %%DATADIR%%/sounds/da/egypt_palme.ogg %%DATADIR%%/sounds/da/egypt_pige.ogg %%DATADIR%%/sounds/da/egypt_pyramide.ogg %%DATADIR%%/sounds/da/egypt_sfinx.ogg %%DATADIR%%/sounds/da/egypt_soejle.ogg %%DATADIR%%/sounds/da/egypt_vej.ogg %%DATADIR%%/sounds/da/egypt_vogn.ogg %%DATADIR%%/sounds/da/frakke.ogg %%DATADIR%%/sounds/da/frier-tux.ogg %%DATADIR%%/sounds/da/guard-tux.ogg %%DATADIR%%/sounds/da/haar.ogg %%DATADIR%%/sounds/da/hat.ogg %%DATADIR%%/sounds/da/kid-tux.ogg %%DATADIR%%/sounds/da/little-tux.ogg %%DATADIR%%/sounds/da/maiden-tux.ogg %%DATADIR%%/sounds/da/moon_astronaut.ogg %%DATADIR%%/sounds/da/moon_hotel.ogg %%DATADIR%%/sounds/da/moon_jorden.ogg %%DATADIR%%/sounds/da/moon_maanefartoej.ogg %%DATADIR%%/sounds/da/moon_planet.ogg %%DATADIR%%/sounds/da/moon_radar.ogg %%DATADIR%%/sounds/da/moon_raket.ogg %%DATADIR%%/sounds/da/moon_rumvaesen.ogg %%DATADIR%%/sounds/da/moon_satellit.ogg %%DATADIR%%/sounds/da/moon_skilt.ogg %%DATADIR%%/sounds/da/moon_stjerne.ogg %%DATADIR%%/sounds/da/moon_stjerneskud.ogg %%DATADIR%%/sounds/da/moon_ufo.ogg %%DATADIR%%/sounds/da/moon_uhyre.ogg %%DATADIR%%/sounds/da/mund.ogg %%DATADIR%%/sounds/da/naese.ogg %%DATADIR%%/sounds/da/nederdel.ogg %%DATADIR%%/sounds/da/oeje.ogg %%DATADIR%%/sounds/da/oejenbryn.ogg %%DATADIR%%/sounds/da/oere.ogg %%DATADIR%%/sounds/da/oerering.ogg %%DATADIR%%/sounds/da/overskaeg.ogg %%DATADIR%%/sounds/da/paraply.ogg %%DATADIR%%/sounds/da/pizza_agurk.ogg %%DATADIR%%/sounds/da/pizza_ananas.ogg %%DATADIR%%/sounds/da/pizza_ansjos.ogg %%DATADIR%%/sounds/da/pizza_bacon.ogg %%DATADIR%%/sounds/da/pizza_broccoli.ogg %%DATADIR%%/sounds/da/pizza_champignon.ogg %%DATADIR%%/sounds/da/pizza_loeg.ogg %%DATADIR%%/sounds/da/pizza_oliven.ogg %%DATADIR%%/sounds/da/pizza_oregano.ogg %%DATADIR%%/sounds/da/pizza_ost.ogg %%DATADIR%%/sounds/da/pizza_pebber.ogg %%DATADIR%%/sounds/da/pizza_pebberoni.ogg %%DATADIR%%/sounds/da/pizza_salami.ogg %%DATADIR%%/sounds/da/pizza_tomat.ogg %%DATADIR%%/sounds/da/prince-tux.ogg %%DATADIR%%/sounds/da/robin-tux.ogg %%DATADIR%%/sounds/da/sherif-tux.ogg %%DATADIR%%/sounds/da/shorts.ogg %%DATADIR%%/sounds/da/sko.ogg %%DATADIR%%/sounds/da/slips.ogg %%DATADIR%%/sounds/da/sloejfe.ogg %%DATADIR%%/sounds/da/solbriller.ogg %%DATADIR%%/sounds/da/stok.ogg %%DATADIR%%/sounds/da/tux-angry.ogg %%DATADIR%%/sounds/da/tux-apple.ogg %%DATADIR%%/sounds/da/tux-arrow.ogg %%DATADIR%%/sounds/da/tux-arrows.ogg %%DATADIR%%/sounds/da/tux-bow.ogg %%DATADIR%%/sounds/da/tux-bullseye.ogg %%DATADIR%%/sounds/da/tux-candles.ogg %%DATADIR%%/sounds/da/tux-dowe.ogg %%DATADIR%%/sounds/da/tux-fish.ogg %%DATADIR%%/sounds/da/tux-flask.ogg %%DATADIR%%/sounds/da/tux-fly.ogg %%DATADIR%%/sounds/da/tux-goblet.ogg %%DATADIR%%/sounds/da/tux-guitar.ogg %%DATADIR%%/sounds/da/tux-huh.ogg %%DATADIR%%/sounds/da/tux-idea.ogg %%DATADIR%%/sounds/da/tux-key.ogg %%DATADIR%%/sounds/da/tux-laugh.ogg %%DATADIR%%/sounds/da/tux-letter.ogg %%DATADIR%%/sounds/da/tux-love.ogg %%DATADIR%%/sounds/da/tux-note.ogg %%DATADIR%%/sounds/da/tux-notes.ogg %%DATADIR%%/sounds/da/tux-plate.ogg %%DATADIR%%/sounds/da/tux-poison.ogg %%DATADIR%%/sounds/da/tux-sick.ogg %%DATADIR%%/sounds/da/tux-stare.ogg %%DATADIR%%/sounds/da/tux-teacup.ogg %%DATADIR%%/sounds/da/tux-vase.ogg %%DATADIR%%/sounds/da/tux-wanted.ogg %%DATADIR%%/sounds/da/tux-what.ogg %%DATADIR%%/sounds/da/tux-wow.ogg %%DATADIR%%/sounds/da/tux-zzz.ogg %%DATADIR%%/sounds/da/tv_accident.ogg %%DATADIR%%/sounds/da/tv_ball.ogg %%DATADIR%%/sounds/da/tv_barrier.ogg %%DATADIR%%/sounds/da/tv_bil.ogg %%DATADIR%%/sounds/da/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/da/tv_caravan.ogg %%DATADIR%%/sounds/da/tv_cykel.ogg %%DATADIR%%/sounds/da/tv_cyklist.ogg %%DATADIR%%/sounds/da/tv_elephant.ogg %%DATADIR%%/sounds/da/tv_excavator.ogg %%DATADIR%%/sounds/da/tv_fence.ogg %%DATADIR%%/sounds/da/tv_fire.ogg %%DATADIR%%/sounds/da/tv_fireengine.ogg %%DATADIR%%/sounds/da/tv_fireman.ogg %%DATADIR%%/sounds/da/tv_fisherman.ogg %%DATADIR%%/sounds/da/tv_giraffe.ogg %%DATADIR%%/sounds/da/tv_guitar.ogg %%DATADIR%%/sounds/da/tv_guitarist.ogg %%DATADIR%%/sounds/da/tv_house.ogg %%DATADIR%%/sounds/da/tv_ladder.ogg %%DATADIR%%/sounds/da/tv_lion.ogg %%DATADIR%%/sounds/da/tv_lorry.ogg %%DATADIR%%/sounds/da/tv_lorry_tractor.ogg %%DATADIR%%/sounds/da/tv_man.ogg %%DATADIR%%/sounds/da/tv_mechanic.ogg %%DATADIR%%/sounds/da/tv_monkey.ogg %%DATADIR%%/sounds/da/tv_path.ogg %%DATADIR%%/sounds/da/tv_rock.ogg %%DATADIR%%/sounds/da/tv_school.ogg %%DATADIR%%/sounds/da/tv_shop.ogg %%DATADIR%%/sounds/da/tv_smoke.ogg %%DATADIR%%/sounds/da/tv_tipper.ogg %%DATADIR%%/sounds/da/tv_tog.ogg %%DATADIR%%/sounds/da/tv_trailer.ogg %%DATADIR%%/sounds/da/tv_tree.ogg %%DATADIR%%/sounds/da/tv_tunnel.ogg %%DATADIR%%/sounds/da/tv_volley_net.ogg %%DATADIR%%/sounds/da/tv_wagon.ogg %%DATADIR%%/sounds/da/tv_woman.ogg %%DATADIR%%/sounds/da/whitch-tux.ogg %%DATADIR%%/sounds/da/xmas_angel.ogg %%DATADIR%%/sounds/da/xmas_ball.ogg %%DATADIR%%/sounds/da/xmas_boot.ogg %%DATADIR%%/sounds/da/xmas_candle.ogg %%DATADIR%%/sounds/da/xmas_comet.ogg %%DATADIR%%/sounds/da/xmas_garland.ogg %%DATADIR%%/sounds/da/xmas_lights.ogg %%DATADIR%%/sounds/da/xmas_mistletoe.ogg %%DATADIR%%/sounds/da/xmas_moon.ogg %%DATADIR%%/sounds/da/xmas_owl.ogg %%DATADIR%%/sounds/da/xmas_present.ogg %%DATADIR%%/sounds/da/xmas_rabbit.ogg %%DATADIR%%/sounds/da/xmas_reindeer.ogg %%DATADIR%%/sounds/da/xmas_shoe.ogg %%DATADIR%%/sounds/da/xmas_snowflake.ogg %%DATADIR%%/sounds/da/xmas_snowman.ogg %%DATADIR%%/sounds/da/xmas_star.ogg %%DATADIR%%/sounds/da/xmas_tree.ogg %%DATADIR%%/sounds/da/xmas_turtle.ogg %%DATADIR%%/sounds/da/xmas_tux.ogg %%DATADIR%%/sounds/de.soundtheme %%DATADIR%%/sounds/de/ball.ogg %%DATADIR%%/sounds/de/bow.ogg %%DATADIR%%/sounds/de/coat.ogg %%DATADIR%%/sounds/de/ear.ogg %%DATADIR%%/sounds/de/earring.ogg %%DATADIR%%/sounds/de/egypt_arch.ogg %%DATADIR%%/sounds/de/egypt_birds.ogg %%DATADIR%%/sounds/de/egypt_boy.ogg %%DATADIR%%/sounds/de/egypt_bridge.ogg %%DATADIR%%/sounds/de/egypt_camel.ogg %%DATADIR%%/sounds/de/egypt_cart.ogg %%DATADIR%%/sounds/de/egypt_column.ogg %%DATADIR%%/sounds/de/egypt_donkey.ogg %%DATADIR%%/sounds/de/egypt_girl.ogg %%DATADIR%%/sounds/de/egypt_grass.ogg %%DATADIR%%/sounds/de/egypt_man.ogg %%DATADIR%%/sounds/de/egypt_oasis.ogg %%DATADIR%%/sounds/de/egypt_palmtree.ogg %%DATADIR%%/sounds/de/egypt_pyramid.ogg %%DATADIR%%/sounds/de/egypt_road.ogg %%DATADIR%%/sounds/de/egypt_sphynx.ogg %%DATADIR%%/sounds/de/egypt_well.ogg %%DATADIR%%/sounds/de/egypt_woman.ogg %%DATADIR%%/sounds/de/eye.ogg %%DATADIR%%/sounds/de/eyebrow.ogg %%DATADIR%%/sounds/de/flower.ogg %%DATADIR%%/sounds/de/hair.ogg %%DATADIR%%/sounds/de/hat.ogg %%DATADIR%%/sounds/de/moon_alien.ogg %%DATADIR%%/sounds/de/moon_astronaut.ogg %%DATADIR%%/sounds/de/moon_earth.ogg %%DATADIR%%/sounds/de/moon_fallingstar.ogg %%DATADIR%%/sounds/de/moon_hotel.ogg %%DATADIR%%/sounds/de/moon_monster.ogg %%DATADIR%%/sounds/de/moon_moonwalker.ogg %%DATADIR%%/sounds/de/moon_planet.ogg %%DATADIR%%/sounds/de/moon_radar.ogg %%DATADIR%%/sounds/de/moon_rocket.ogg %%DATADIR%%/sounds/de/moon_satellite.ogg %%DATADIR%%/sounds/de/moon_sign.ogg %%DATADIR%%/sounds/de/moon_star.ogg %%DATADIR%%/sounds/de/moon_ufo.ogg %%DATADIR%%/sounds/de/moustache.ogg %%DATADIR%%/sounds/de/mouth.ogg %%DATADIR%%/sounds/de/nose.ogg %%DATADIR%%/sounds/de/pizzeria_anchovy.ogg %%DATADIR%%/sounds/de/pizzeria_bacon.ogg %%DATADIR%%/sounds/de/pizzeria_broccolli.ogg %%DATADIR%%/sounds/de/pizzeria_cheese.ogg %%DATADIR%%/sounds/de/pizzeria_cucumber.ogg %%DATADIR%%/sounds/de/pizzeria_mushroom.ogg %%DATADIR%%/sounds/de/pizzeria_olive.ogg %%DATADIR%%/sounds/de/pizzeria_onion.ogg %%DATADIR%%/sounds/de/pizzeria_oregano.ogg %%DATADIR%%/sounds/de/pizzeria_pepper.ogg %%DATADIR%%/sounds/de/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/de/pizzeria_pineapple.ogg %%DATADIR%%/sounds/de/pizzeria_salami.ogg %%DATADIR%%/sounds/de/pizzeria_tomato.ogg %%DATADIR%%/sounds/de/shoes.ogg %%DATADIR%%/sounds/de/shorts.ogg %%DATADIR%%/sounds/de/skirt.ogg %%DATADIR%%/sounds/de/spectacles.ogg %%DATADIR%%/sounds/de/stick.ogg %%DATADIR%%/sounds/de/sunglasses.ogg %%DATADIR%%/sounds/de/tie.ogg %%DATADIR%%/sounds/de/tv_bicycle.ogg %%DATADIR%%/sounds/de/tv_car.ogg %%DATADIR%%/sounds/de/tv_cyclist.ogg %%DATADIR%%/sounds/de/tv_train.ogg %%DATADIR%%/sounds/de/tv_tree.ogg %%DATADIR%%/sounds/de/umbrella.ogg %%DATADIR%%/sounds/el.soundtheme %%DATADIR%%/sounds/el/arrow.ogg %%DATADIR%%/sounds/el/ball.ogg %%DATADIR%%/sounds/el/cheese.ogg %%DATADIR%%/sounds/el/coat.ogg %%DATADIR%%/sounds/el/ear.ogg %%DATADIR%%/sounds/el/earring.ogg %%DATADIR%%/sounds/el/egypt_arch.ogg %%DATADIR%%/sounds/el/egypt_birds.ogg %%DATADIR%%/sounds/el/egypt_boy.ogg %%DATADIR%%/sounds/el/egypt_bridge.ogg %%DATADIR%%/sounds/el/egypt_camel.ogg %%DATADIR%%/sounds/el/egypt_cart.ogg %%DATADIR%%/sounds/el/egypt_column.ogg %%DATADIR%%/sounds/el/egypt_donkey.ogg %%DATADIR%%/sounds/el/egypt_girl.ogg %%DATADIR%%/sounds/el/egypt_grass.ogg %%DATADIR%%/sounds/el/egypt_man.ogg %%DATADIR%%/sounds/el/egypt_oasis.ogg %%DATADIR%%/sounds/el/egypt_palmtree.ogg %%DATADIR%%/sounds/el/egypt_pyramid.ogg %%DATADIR%%/sounds/el/egypt_road.ogg %%DATADIR%%/sounds/el/egypt_sphynx.ogg %%DATADIR%%/sounds/el/egypt_well.ogg %%DATADIR%%/sounds/el/egypt_woman.ogg %%DATADIR%%/sounds/el/eye.ogg %%DATADIR%%/sounds/el/eyebrow.ogg %%DATADIR%%/sounds/el/flower.ogg %%DATADIR%%/sounds/el/hair.ogg %%DATADIR%%/sounds/el/hat.ogg %%DATADIR%%/sounds/el/moon_alien.ogg %%DATADIR%%/sounds/el/moon_astronaut.ogg %%DATADIR%%/sounds/el/moon_earth.ogg %%DATADIR%%/sounds/el/moon_fallingstar.ogg %%DATADIR%%/sounds/el/moon_hotel.ogg %%DATADIR%%/sounds/el/moon_monster.ogg %%DATADIR%%/sounds/el/moon_moonwalker.ogg %%DATADIR%%/sounds/el/moon_planet.ogg %%DATADIR%%/sounds/el/moon_radar.ogg %%DATADIR%%/sounds/el/moon_rocket.ogg %%DATADIR%%/sounds/el/moon_satellite.ogg %%DATADIR%%/sounds/el/moon_sign.ogg %%DATADIR%%/sounds/el/moon_star.ogg %%DATADIR%%/sounds/el/moon_ufo.ogg %%DATADIR%%/sounds/el/moustache.ogg %%DATADIR%%/sounds/el/mouth.ogg %%DATADIR%%/sounds/el/nose.ogg %%DATADIR%%/sounds/el/pizzeria_anchovy.ogg %%DATADIR%%/sounds/el/pizzeria_bacon.ogg %%DATADIR%%/sounds/el/pizzeria_broccolli.ogg %%DATADIR%%/sounds/el/pizzeria_cheese.ogg %%DATADIR%%/sounds/el/pizzeria_cucumber.ogg %%DATADIR%%/sounds/el/pizzeria_mushroom.ogg %%DATADIR%%/sounds/el/pizzeria_olive.ogg %%DATADIR%%/sounds/el/pizzeria_onion.ogg %%DATADIR%%/sounds/el/pizzeria_oregano.ogg %%DATADIR%%/sounds/el/pizzeria_pepper.ogg %%DATADIR%%/sounds/el/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/el/pizzeria_pineapple.ogg %%DATADIR%%/sounds/el/pizzeria_salami.ogg %%DATADIR%%/sounds/el/pizzeria_tomato.ogg %%DATADIR%%/sounds/el/shoe.ogg %%DATADIR%%/sounds/el/shorts.ogg %%DATADIR%%/sounds/el/skirt.ogg %%DATADIR%%/sounds/el/spectacles.ogg %%DATADIR%%/sounds/el/stick.ogg %%DATADIR%%/sounds/el/stick2.ogg %%DATADIR%%/sounds/el/sunglasses.ogg %%DATADIR%%/sounds/el/tie.ogg %%DATADIR%%/sounds/el/tv_bicycle.ogg %%DATADIR%%/sounds/el/tv_car.ogg %%DATADIR%%/sounds/el/tv_cyclist.ogg %%DATADIR%%/sounds/el/tv_train.ogg %%DATADIR%%/sounds/el/tv_tree.ogg %%DATADIR%%/sounds/el/umbrella.ogg %%DATADIR%%/sounds/en.soundtheme %%DATADIR%%/sounds/en/ball.ogg %%DATADIR%%/sounds/en/bow.ogg %%DATADIR%%/sounds/en/coat.ogg %%DATADIR%%/sounds/en/ear.ogg %%DATADIR%%/sounds/en/earring.ogg %%DATADIR%%/sounds/en/egypt_arch.ogg %%DATADIR%%/sounds/en/egypt_birds.ogg %%DATADIR%%/sounds/en/egypt_boy.ogg %%DATADIR%%/sounds/en/egypt_bridge.ogg %%DATADIR%%/sounds/en/egypt_camel.ogg %%DATADIR%%/sounds/en/egypt_cart.ogg %%DATADIR%%/sounds/en/egypt_column.ogg %%DATADIR%%/sounds/en/egypt_donkey.ogg %%DATADIR%%/sounds/en/egypt_girl.ogg %%DATADIR%%/sounds/en/egypt_grass.ogg %%DATADIR%%/sounds/en/egypt_man.ogg %%DATADIR%%/sounds/en/egypt_oasis.ogg %%DATADIR%%/sounds/en/egypt_palmtree.ogg %%DATADIR%%/sounds/en/egypt_pyramid.ogg %%DATADIR%%/sounds/en/egypt_road.ogg %%DATADIR%%/sounds/en/egypt_sphynx.ogg %%DATADIR%%/sounds/en/egypt_well.ogg %%DATADIR%%/sounds/en/egypt_woman.ogg %%DATADIR%%/sounds/en/eye.ogg %%DATADIR%%/sounds/en/eyebrow.ogg %%DATADIR%%/sounds/en/flower.ogg %%DATADIR%%/sounds/en/hair.ogg %%DATADIR%%/sounds/en/hat.ogg %%DATADIR%%/sounds/en/moon_alien.ogg %%DATADIR%%/sounds/en/moon_astronaut.ogg %%DATADIR%%/sounds/en/moon_earth.ogg %%DATADIR%%/sounds/en/moon_fallingstar.ogg %%DATADIR%%/sounds/en/moon_hotel.ogg %%DATADIR%%/sounds/en/moon_monster.ogg %%DATADIR%%/sounds/en/moon_moonwalker.ogg %%DATADIR%%/sounds/en/moon_planet.ogg %%DATADIR%%/sounds/en/moon_radar.ogg %%DATADIR%%/sounds/en/moon_rocket.ogg %%DATADIR%%/sounds/en/moon_satellite.ogg %%DATADIR%%/sounds/en/moon_sign.ogg %%DATADIR%%/sounds/en/moon_star.ogg %%DATADIR%%/sounds/en/moon_ufo.ogg %%DATADIR%%/sounds/en/moustache.ogg %%DATADIR%%/sounds/en/mouth.ogg %%DATADIR%%/sounds/en/nose.ogg %%DATADIR%%/sounds/en/pizzeria_anchovy.ogg %%DATADIR%%/sounds/en/pizzeria_bacon.ogg %%DATADIR%%/sounds/en/pizzeria_broccolli.ogg %%DATADIR%%/sounds/en/pizzeria_cheese.ogg %%DATADIR%%/sounds/en/pizzeria_cucumber.ogg %%DATADIR%%/sounds/en/pizzeria_mushroom.ogg %%DATADIR%%/sounds/en/pizzeria_olive.ogg %%DATADIR%%/sounds/en/pizzeria_onion.ogg %%DATADIR%%/sounds/en/pizzeria_oregano.ogg %%DATADIR%%/sounds/en/pizzeria_pepper.ogg %%DATADIR%%/sounds/en/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/en/pizzeria_pineapple.ogg %%DATADIR%%/sounds/en/pizzeria_salami.ogg %%DATADIR%%/sounds/en/pizzeria_tomato.ogg %%DATADIR%%/sounds/en/shoe.ogg %%DATADIR%%/sounds/en/shorts.ogg %%DATADIR%%/sounds/en/skirt.ogg %%DATADIR%%/sounds/en/spectacles.ogg %%DATADIR%%/sounds/en/stick.ogg %%DATADIR%%/sounds/en/sunglasses.ogg %%DATADIR%%/sounds/en/tie.ogg %%DATADIR%%/sounds/en/tv_bicycle.ogg %%DATADIR%%/sounds/en/tv_car.ogg %%DATADIR%%/sounds/en/tv_cyclist.ogg %%DATADIR%%/sounds/en/tv_train.ogg %%DATADIR%%/sounds/en/tv_tree.ogg %%DATADIR%%/sounds/en/umbrella.ogg %%DATADIR%%/sounds/es.soundtheme %%DATADIR%%/sounds/es/anteojos.wav %%DATADIR%%/sounds/es/bigote.wav %%DATADIR%%/sounds/es/boca.wav %%DATADIR%%/sounds/es/ceja.wav %%DATADIR%%/sounds/es/gafasdesol.wav %%DATADIR%%/sounds/es/lazo.wav %%DATADIR%%/sounds/es/nariz.wav %%DATADIR%%/sounds/es/ojo.wav %%DATADIR%%/sounds/es/oreja.wav %%DATADIR%%/sounds/es/pelo.wav %%DATADIR%%/sounds/es/pendiente.wav %%DATADIR%%/sounds/es/sombrero.wav %%DATADIR%%/sounds/fi.soundtheme %%DATADIR%%/sounds/fi/aurinkolasit.wav %%DATADIR%%/sounds/fi/hattu.wav %%DATADIR%%/sounds/fi/korva.wav %%DATADIR%%/sounds/fi/korvakoru.wav %%DATADIR%%/sounds/fi/kulmakarva.wav %%DATADIR%%/sounds/fi/nena.wav %%DATADIR%%/sounds/fi/rusetti.wav %%DATADIR%%/sounds/fi/silma.wav %%DATADIR%%/sounds/fi/silmalasit.wav %%DATADIR%%/sounds/fi/suu.wav %%DATADIR%%/sounds/fi/viikset.wav %%DATADIR%%/sounds/fr.soundtheme %%DATADIR%%/sounds/fr/bouche.wav %%DATADIR%%/sounds/fr/boucle-d-oreille.wav %%DATADIR%%/sounds/fr/chapeau.wav %%DATADIR%%/sounds/fr/cheveux.wav %%DATADIR%%/sounds/fr/cravate.wav %%DATADIR%%/sounds/fr/egypte_ane.wav %%DATADIR%%/sounds/fr/egypte_arche.wav %%DATADIR%%/sounds/fr/egypte_chameau.wav %%DATADIR%%/sounds/fr/egypte_charette.wav %%DATADIR%%/sounds/fr/egypte_colonne.wav %%DATADIR%%/sounds/fr/egypte_femme.wav %%DATADIR%%/sounds/fr/egypte_fille.wav %%DATADIR%%/sounds/fr/egypte_garcon.wav %%DATADIR%%/sounds/fr/egypte_herbe.wav %%DATADIR%%/sounds/fr/egypte_homme.wav %%DATADIR%%/sounds/fr/egypte_oasis.wav %%DATADIR%%/sounds/fr/egypte_oiseaux.wav %%DATADIR%%/sounds/fr/egypte_palmier.wav %%DATADIR%%/sounds/fr/egypte_pont.wav %%DATADIR%%/sounds/fr/egypte_puits.wav %%DATADIR%%/sounds/fr/egypte_pyramide.wav %%DATADIR%%/sounds/fr/egypte_route.wav %%DATADIR%%/sounds/fr/egypte_sphinx.wav %%DATADIR%%/sounds/fr/lune_astronaute.wav %%DATADIR%%/sounds/fr/lune_etoile-filante.wav %%DATADIR%%/sounds/fr/lune_etoile.wav %%DATADIR%%/sounds/fr/lune_extraterrestre.wav %%DATADIR%%/sounds/fr/lune_fusee.wav %%DATADIR%%/sounds/fr/lune_hotel.wav %%DATADIR%%/sounds/fr/lune_monstre.wav %%DATADIR%%/sounds/fr/lune_ovni.wav %%DATADIR%%/sounds/fr/lune_planete.wav %%DATADIR%%/sounds/fr/lune_radar.wav %%DATADIR%%/sounds/fr/lune_rover.wav %%DATADIR%%/sounds/fr/lune_satellite.wav %%DATADIR%%/sounds/fr/lune_signe.wav %%DATADIR%%/sounds/fr/lune_terre.wav %%DATADIR%%/sounds/fr/lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/lunettes.wav %%DATADIR%%/sounds/fr/moustache.wav %%DATADIR%%/sounds/fr/nez.wav %%DATADIR%%/sounds/fr/noel_Tux-le-pingouin.wav %%DATADIR%%/sounds/fr/noel_ange.wav %%DATADIR%%/sounds/fr/noel_arbre.wav %%DATADIR%%/sounds/fr/noel_bonhomme-de-neige.wav %%DATADIR%%/sounds/fr/noel_botte.wav %%DATADIR%%/sounds/fr/noel_bougie.wav %%DATADIR%%/sounds/fr/noel_boule-de-noel.wav %%DATADIR%%/sounds/fr/noel_boule.wav %%DATADIR%%/sounds/fr/noel_branche-de-gui.wav %%DATADIR%%/sounds/fr/noel_branche-de-houx.wav %%DATADIR%%/sounds/fr/noel_chaussure.wav %%DATADIR%%/sounds/fr/noel_chouette.wav %%DATADIR%%/sounds/fr/noel_comete.wav %%DATADIR%%/sounds/fr/noel_etoile.wav %%DATADIR%%/sounds/fr/noel_flocon.wav %%DATADIR%%/sounds/fr/noel_guirlande-lumineuse.wav %%DATADIR%%/sounds/fr/noel_guirlande.wav %%DATADIR%%/sounds/fr/noel_lapin.wav %%DATADIR%%/sounds/fr/noel_lune.wav %%DATADIR%%/sounds/fr/noel_paquet-cadeau.wav %%DATADIR%%/sounds/fr/noel_renne.wav %%DATADIR%%/sounds/fr/noel_tortue.wav %%DATADIR%%/sounds/fr/noeud-papillon.wav %%DATADIR%%/sounds/fr/oeil.wav %%DATADIR%%/sounds/fr/oreille.wav %%DATADIR%%/sounds/fr/papillons_aile.wav %%DATADIR%%/sounds/fr/papillons_ailes.wav %%DATADIR%%/sounds/fr/papillons_cercle.wav %%DATADIR%%/sounds/fr/papillons_cercles.wav %%DATADIR%%/sounds/fr/papillons_coeur.wav %%DATADIR%%/sounds/fr/papillons_corps.wav %%DATADIR%%/sounds/fr/papillons_forme-violette.wav %%DATADIR%%/sounds/fr/papillons_oeil.wav %%DATADIR%%/sounds/fr/papillons_spirale.wav %%DATADIR%%/sounds/fr/patate_ballon.wav %%DATADIR%%/sounds/fr/patate_baton.wav %%DATADIR%%/sounds/fr/patate_bouche.wav %%DATADIR%%/sounds/fr/patate_boucle-d-oreille.wav %%DATADIR%%/sounds/fr/patate_chapeau.wav %%DATADIR%%/sounds/fr/patate_chaussure.wav %%DATADIR%%/sounds/fr/patate_cheveu.wav %%DATADIR%%/sounds/fr/patate_cheveux.wav %%DATADIR%%/sounds/fr/patate_cravate.wav %%DATADIR%%/sounds/fr/patate_fleur.wav %%DATADIR%%/sounds/fr/patate_jupe.wav %%DATADIR%%/sounds/fr/patate_lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/patate_lunettes.wav %%DATADIR%%/sounds/fr/patate_manteau.wav %%DATADIR%%/sounds/fr/patate_moustache.wav %%DATADIR%%/sounds/fr/patate_nez.wav %%DATADIR%%/sounds/fr/patate_noeud-papillon.wav %%DATADIR%%/sounds/fr/patate_oeil.wav %%DATADIR%%/sounds/fr/patate_oreille.wav %%DATADIR%%/sounds/fr/patate_parapluie.wav %%DATADIR%%/sounds/fr/patate_short.wav %%DATADIR%%/sounds/fr/patate_sourcil.wav %%DATADIR%%/sounds/fr/pizzeria_ananas.wav %%DATADIR%%/sounds/fr/pizzeria_anchois.wav %%DATADIR%%/sounds/fr/pizzeria_brocoli.wav %%DATADIR%%/sounds/fr/pizzeria_champignon.wav %%DATADIR%%/sounds/fr/pizzeria_concombre.wav %%DATADIR%%/sounds/fr/pizzeria_fromage.wav %%DATADIR%%/sounds/fr/pizzeria_lardon.wav %%DATADIR%%/sounds/fr/pizzeria_oignon.wav %%DATADIR%%/sounds/fr/pizzeria_olive.wav %%DATADIR%%/sounds/fr/pizzeria_origan.wav %%DATADIR%%/sounds/fr/pizzeria_pepperoni.wav %%DATADIR%%/sounds/fr/pizzeria_piment.wav %%DATADIR%%/sounds/fr/pizzeria_poivre.wav %%DATADIR%%/sounds/fr/pizzeria_poivron.wav %%DATADIR%%/sounds/fr/pizzeria_salami.wav %%DATADIR%%/sounds/fr/pizzeria_tomate.wav %%DATADIR%%/sounds/fr/robin_Tux-Robin.wav %%DATADIR%%/sounds/fr/robin_Tux-l-enfant.wav %%DATADIR%%/sounds/fr/robin_Tux-la-jeune-fille.wav %%DATADIR%%/sounds/fr/robin_Tux-la-sorciere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-frere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-garde.wav %%DATADIR%%/sounds/fr/robin_Tux-le-petit.wav %%DATADIR%%/sounds/fr/robin_Tux-le-prince.wav %%DATADIR%%/sounds/fr/robin_Tux-le-sheriff.wav %%DATADIR%%/sounds/fr/robin_arc.wav %%DATADIR%%/sounds/fr/robin_assiette.wav %%DATADIR%%/sounds/fr/robin_avis-recherche.wav %%DATADIR%%/sounds/fr/robin_chandelles-allumees.wav %%DATADIR%%/sounds/fr/robin_chandelles.wav %%DATADIR%%/sounds/fr/robin_cible.wav %%DATADIR%%/sounds/fr/robin_cle.wav %%DATADIR%%/sounds/fr/robin_coupe.wav %%DATADIR%%/sounds/fr/robin_flacon.wav %%DATADIR%%/sounds/fr/robin_fleche.wav %%DATADIR%%/sounds/fr/robin_fleches.wav %%DATADIR%%/sounds/fr/robin_guitare.wav %%DATADIR%%/sounds/fr/robin_heu.wav %%DATADIR%%/sounds/fr/robin_j-ai-une-idee.wav %%DATADIR%%/sounds/fr/robin_j-aime.wav %%DATADIR%%/sounds/fr/robin_j-examine.wav %%DATADIR%%/sounds/fr/robin_je-dors.wav %%DATADIR%%/sounds/fr/robin_je-me-fache.wav %%DATADIR%%/sounds/fr/robin_je-ris.wav %%DATADIR%%/sounds/fr/robin_je-suis-malade.wav %%DATADIR%%/sounds/fr/robin_lettre.wav %%DATADIR%%/sounds/fr/robin_note.wav %%DATADIR%%/sounds/fr/robin_notes.wav %%DATADIR%%/sounds/fr/robin_pigeon-volant.wav %%DATADIR%%/sounds/fr/robin_pigeon.wav %%DATADIR%%/sounds/fr/robin_poison.wav %%DATADIR%%/sounds/fr/robin_poisson.wav %%DATADIR%%/sounds/fr/robin_pomme.wav %%DATADIR%%/sounds/fr/robin_quoi.wav %%DATADIR%%/sounds/fr/robin_tasse.wav %%DATADIR%%/sounds/fr/robin_tir.wav %%DATADIR%%/sounds/fr/robin_vase.wav %%DATADIR%%/sounds/fr/robin_wouah.wav %%DATADIR%%/sounds/fr/robot_antenne.wav %%DATADIR%%/sounds/fr/robot_ballon.wav %%DATADIR%%/sounds/fr/robot_base.wav %%DATADIR%%/sounds/fr/robot_bloc.wav %%DATADIR%%/sounds/fr/robot_bras.wav %%DATADIR%%/sounds/fr/robot_corps.wav %%DATADIR%%/sounds/fr/robot_fusee.wav %%DATADIR%%/sounds/fr/robot_main.wav %%DATADIR%%/sounds/fr/robot_oeil.wav %%DATADIR%%/sounds/fr/robot_panneau.wav %%DATADIR%%/sounds/fr/robot_pieds.wav %%DATADIR%%/sounds/fr/robot_pince.wav %%DATADIR%%/sounds/fr/robot_roue.wav %%DATADIR%%/sounds/fr/robot_tete.wav %%DATADIR%%/sounds/fr/robot_tige.wav %%DATADIR%%/sounds/fr/sourcil.wav %%DATADIR%%/sounds/fr/tv_accident.wav %%DATADIR%%/sounds/fr/tv_arbre.wav %%DATADIR%%/sounds/fr/tv_ballon.wav %%DATADIR%%/sounds/fr/tv_barriere.wav %%DATADIR%%/sounds/fr/tv_benne-basculante.wav %%DATADIR%%/sounds/fr/tv_bicyclette.wav %%DATADIR%%/sounds/fr/tv_camion-de-depannage.wav %%DATADIR%%/sounds/fr/tv_camion-de-pompier.wav %%DATADIR%%/sounds/fr/tv_camion.wav %%DATADIR%%/sounds/fr/tv_caravane.wav %%DATADIR%%/sounds/fr/tv_chemin.wav %%DATADIR%%/sounds/fr/tv_cloture.wav %%DATADIR%%/sounds/fr/tv_cycliste.wav %%DATADIR%%/sounds/fr/tv_echelle.wav %%DATADIR%%/sounds/fr/tv_ecole.wav %%DATADIR%%/sounds/fr/tv_elephant.wav %%DATADIR%%/sounds/fr/tv_femme.wav %%DATADIR%%/sounds/fr/tv_feu.wav %%DATADIR%%/sounds/fr/tv_filet-de-volley.wav %%DATADIR%%/sounds/fr/tv_fumee.wav %%DATADIR%%/sounds/fr/tv_girafe.wav %%DATADIR%%/sounds/fr/tv_guitare.wav %%DATADIR%%/sounds/fr/tv_guitariste.wav %%DATADIR%%/sounds/fr/tv_homme.wav %%DATADIR%%/sounds/fr/tv_lion.wav %%DATADIR%%/sounds/fr/tv_magasin.wav %%DATADIR%%/sounds/fr/tv_maison.wav %%DATADIR%%/sounds/fr/tv_mecanicien.wav %%DATADIR%%/sounds/fr/tv_pecheur.wav %%DATADIR%%/sounds/fr/tv_pompier.wav %%DATADIR%%/sounds/fr/tv_remorque.wav %%DATADIR%%/sounds/fr/tv_rocher.wav %%DATADIR%%/sounds/fr/tv_singe.wav %%DATADIR%%/sounds/fr/tv_tracteur-routier.wav %%DATADIR%%/sounds/fr/tv_tractopelle.wav %%DATADIR%%/sounds/fr/tv_train.wav %%DATADIR%%/sounds/fr/tv_tunnel.wav %%DATADIR%%/sounds/fr/tv_voiture.wav %%DATADIR%%/sounds/fr/tv_wagon.wav %%DATADIR%%/sounds/ga.soundtheme %%DATADIR%%/sounds/ga/beal.wav %%DATADIR%%/sounds/ga/carbhat.wav %%DATADIR%%/sounds/ga/cluas.wav %%DATADIR%%/sounds/ga/croimeal.wav %%DATADIR%%/sounds/ga/cuachog.wav %%DATADIR%%/sounds/ga/fainne-cluaise.wav %%DATADIR%%/sounds/ga/gruaig.wav %%DATADIR%%/sounds/ga/hata.wav %%DATADIR%%/sounds/ga/mala.wav %%DATADIR%%/sounds/ga/speaclai-greine.wav %%DATADIR%%/sounds/ga/speaclai.wav %%DATADIR%%/sounds/ga/sron.wav %%DATADIR%%/sounds/ga/suil.wav %%DATADIR%%/sounds/gl.soundtheme %%DATADIR%%/sounds/gl/ball.ogg %%DATADIR%%/sounds/gl/bow.ogg %%DATADIR%%/sounds/gl/coat.ogg %%DATADIR%%/sounds/gl/ear.ogg %%DATADIR%%/sounds/gl/earring.ogg %%DATADIR%%/sounds/gl/egypt_arch.ogg %%DATADIR%%/sounds/gl/egypt_birds.ogg %%DATADIR%%/sounds/gl/egypt_boy.ogg %%DATADIR%%/sounds/gl/egypt_bridge.ogg %%DATADIR%%/sounds/gl/egypt_camel.ogg %%DATADIR%%/sounds/gl/egypt_cart.ogg %%DATADIR%%/sounds/gl/egypt_column.ogg %%DATADIR%%/sounds/gl/egypt_donkey.ogg %%DATADIR%%/sounds/gl/egypt_girl.ogg %%DATADIR%%/sounds/gl/egypt_grass.ogg %%DATADIR%%/sounds/gl/egypt_man.ogg %%DATADIR%%/sounds/gl/egypt_oasis.ogg %%DATADIR%%/sounds/gl/egypt_palmtree.ogg %%DATADIR%%/sounds/gl/egypt_pyramid.ogg %%DATADIR%%/sounds/gl/egypt_road.ogg %%DATADIR%%/sounds/gl/egypt_sphynx.ogg %%DATADIR%%/sounds/gl/egypt_well.ogg %%DATADIR%%/sounds/gl/egypt_woman.ogg %%DATADIR%%/sounds/gl/eye.ogg %%DATADIR%%/sounds/gl/eyebrow.ogg %%DATADIR%%/sounds/gl/flower.ogg %%DATADIR%%/sounds/gl/hair.ogg %%DATADIR%%/sounds/gl/hat.ogg %%DATADIR%%/sounds/gl/moon_alien.ogg %%DATADIR%%/sounds/gl/moon_astronaut.ogg %%DATADIR%%/sounds/gl/moon_earth.ogg %%DATADIR%%/sounds/gl/moon_fallingstar.ogg %%DATADIR%%/sounds/gl/moon_hotel.ogg %%DATADIR%%/sounds/gl/moon_monster.ogg %%DATADIR%%/sounds/gl/moon_moonwalker.ogg %%DATADIR%%/sounds/gl/moon_planet.ogg %%DATADIR%%/sounds/gl/moon_radar.ogg %%DATADIR%%/sounds/gl/moon_rocket.ogg %%DATADIR%%/sounds/gl/moon_satellite.ogg %%DATADIR%%/sounds/gl/moon_sign.ogg %%DATADIR%%/sounds/gl/moon_star.ogg %%DATADIR%%/sounds/gl/moon_ufo.ogg %%DATADIR%%/sounds/gl/moustache.ogg %%DATADIR%%/sounds/gl/mouth.ogg %%DATADIR%%/sounds/gl/nose.ogg %%DATADIR%%/sounds/gl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/gl/pizzeria_bacon.ogg %%DATADIR%%/sounds/gl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/gl/pizzeria_cheese.ogg %%DATADIR%%/sounds/gl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/gl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/gl/pizzeria_olive.ogg %%DATADIR%%/sounds/gl/pizzeria_onion.ogg %%DATADIR%%/sounds/gl/pizzeria_oregano.ogg %%DATADIR%%/sounds/gl/pizzeria_pepper.ogg %%DATADIR%%/sounds/gl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/gl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/gl/pizzeria_salami.ogg %%DATADIR%%/sounds/gl/pizzeria_tomato.ogg %%DATADIR%%/sounds/gl/shoe.ogg %%DATADIR%%/sounds/gl/shorts.ogg %%DATADIR%%/sounds/gl/skirt.ogg %%DATADIR%%/sounds/gl/spectacles.ogg %%DATADIR%%/sounds/gl/stick.ogg %%DATADIR%%/sounds/gl/sunglasses.ogg %%DATADIR%%/sounds/gl/tie.ogg %%DATADIR%%/sounds/gl/tv_bicycle.ogg %%DATADIR%%/sounds/gl/tv_car.ogg %%DATADIR%%/sounds/gl/tv_cyclist.ogg %%DATADIR%%/sounds/gl/tv_train.ogg %%DATADIR%%/sounds/gl/umbrella.ogg %%DATADIR%%/sounds/id.soundtheme %%DATADIR%%/sounds/it.soundtheme %%DATADIR%%/sounds/it/baffi.wav %%DATADIR%%/sounds/it/bocca.wav %%DATADIR%%/sounds/it/capelli.wav %%DATADIR%%/sounds/it/cappello.wav %%DATADIR%%/sounds/it/cravatta.wav %%DATADIR%%/sounds/it/cravattino.wav %%DATADIR%%/sounds/it/naso.wav %%DATADIR%%/sounds/it/occhiali.wav %%DATADIR%%/sounds/it/occhialidasole.wav %%DATADIR%%/sounds/it/occhio.wav %%DATADIR%%/sounds/it/orecchino.wav %%DATADIR%%/sounds/it/orecchio.wav %%DATADIR%%/sounds/it/sopracciglio.wav %%DATADIR%%/sounds/lt.soundtheme %%DATADIR%%/sounds/lt/ball.ogg %%DATADIR%%/sounds/lt/bow.ogg %%DATADIR%%/sounds/lt/coat.ogg %%DATADIR%%/sounds/lt/ear.ogg %%DATADIR%%/sounds/lt/earring.ogg %%DATADIR%%/sounds/lt/egypt_arch.ogg %%DATADIR%%/sounds/lt/egypt_birds.ogg %%DATADIR%%/sounds/lt/egypt_boy.ogg %%DATADIR%%/sounds/lt/egypt_bridge.ogg %%DATADIR%%/sounds/lt/egypt_camel.ogg %%DATADIR%%/sounds/lt/egypt_cart.ogg %%DATADIR%%/sounds/lt/egypt_column.ogg %%DATADIR%%/sounds/lt/egypt_donkey.ogg %%DATADIR%%/sounds/lt/egypt_girl.ogg %%DATADIR%%/sounds/lt/egypt_grass.ogg %%DATADIR%%/sounds/lt/egypt_man.ogg %%DATADIR%%/sounds/lt/egypt_oasis.ogg %%DATADIR%%/sounds/lt/egypt_palmtree.ogg %%DATADIR%%/sounds/lt/egypt_pyramid.ogg %%DATADIR%%/sounds/lt/egypt_road.ogg %%DATADIR%%/sounds/lt/egypt_sphynx.ogg %%DATADIR%%/sounds/lt/egypt_well.ogg %%DATADIR%%/sounds/lt/egypt_woman.ogg %%DATADIR%%/sounds/lt/eye.ogg %%DATADIR%%/sounds/lt/eyebrow.ogg %%DATADIR%%/sounds/lt/flower.ogg %%DATADIR%%/sounds/lt/frier-tux.ogg %%DATADIR%%/sounds/lt/guard-tux.ogg %%DATADIR%%/sounds/lt/hair.ogg %%DATADIR%%/sounds/lt/hat.ogg %%DATADIR%%/sounds/lt/kid-tux.ogg %%DATADIR%%/sounds/lt/little-tux.ogg %%DATADIR%%/sounds/lt/maiden-tux.ogg %%DATADIR%%/sounds/lt/moon_alien.ogg %%DATADIR%%/sounds/lt/moon_astronaut.ogg %%DATADIR%%/sounds/lt/moon_earth.ogg %%DATADIR%%/sounds/lt/moon_fallingstar.ogg %%DATADIR%%/sounds/lt/moon_hotel.ogg %%DATADIR%%/sounds/lt/moon_monster.ogg %%DATADIR%%/sounds/lt/moon_moonwalker.ogg %%DATADIR%%/sounds/lt/moon_planet.ogg %%DATADIR%%/sounds/lt/moon_radar.ogg %%DATADIR%%/sounds/lt/moon_rocket.ogg %%DATADIR%%/sounds/lt/moon_satellite.ogg %%DATADIR%%/sounds/lt/moon_sign.ogg %%DATADIR%%/sounds/lt/moon_star.ogg %%DATADIR%%/sounds/lt/moon_ufo.ogg %%DATADIR%%/sounds/lt/moustache.ogg %%DATADIR%%/sounds/lt/mouth.ogg %%DATADIR%%/sounds/lt/nose.ogg %%DATADIR%%/sounds/lt/pizzeria_anchovy.ogg %%DATADIR%%/sounds/lt/pizzeria_bacon.ogg %%DATADIR%%/sounds/lt/pizzeria_broccolli.ogg %%DATADIR%%/sounds/lt/pizzeria_cheese.ogg %%DATADIR%%/sounds/lt/pizzeria_cucumber.ogg %%DATADIR%%/sounds/lt/pizzeria_mushroom.ogg %%DATADIR%%/sounds/lt/pizzeria_olive.ogg %%DATADIR%%/sounds/lt/pizzeria_onion.ogg %%DATADIR%%/sounds/lt/pizzeria_oregano.ogg %%DATADIR%%/sounds/lt/pizzeria_pepper.ogg %%DATADIR%%/sounds/lt/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/lt/pizzeria_pineapple.ogg %%DATADIR%%/sounds/lt/pizzeria_salami.ogg %%DATADIR%%/sounds/lt/pizzeria_tomato.ogg %%DATADIR%%/sounds/lt/prince-tux.ogg %%DATADIR%%/sounds/lt/robin-tux.ogg %%DATADIR%%/sounds/lt/sherif-tux.ogg %%DATADIR%%/sounds/lt/shoe.ogg %%DATADIR%%/sounds/lt/shorts.ogg %%DATADIR%%/sounds/lt/skirt.ogg %%DATADIR%%/sounds/lt/spectacles.ogg %%DATADIR%%/sounds/lt/stick.ogg %%DATADIR%%/sounds/lt/sunglasses.ogg %%DATADIR%%/sounds/lt/tie.ogg %%DATADIR%%/sounds/lt/tux-angry.ogg %%DATADIR%%/sounds/lt/tux-apple.ogg %%DATADIR%%/sounds/lt/tux-arrow.ogg %%DATADIR%%/sounds/lt/tux-arrows.ogg %%DATADIR%%/sounds/lt/tux-bow.ogg %%DATADIR%%/sounds/lt/tux-bullseye.ogg %%DATADIR%%/sounds/lt/tux-candles.ogg %%DATADIR%%/sounds/lt/tux-dowe.ogg %%DATADIR%%/sounds/lt/tux-fish.ogg %%DATADIR%%/sounds/lt/tux-flask.ogg %%DATADIR%%/sounds/lt/tux-fly.ogg %%DATADIR%%/sounds/lt/tux-goblet.ogg %%DATADIR%%/sounds/lt/tux-guitar.ogg %%DATADIR%%/sounds/lt/tux-huh.ogg %%DATADIR%%/sounds/lt/tux-idea.ogg %%DATADIR%%/sounds/lt/tux-key.ogg %%DATADIR%%/sounds/lt/tux-laugh.ogg %%DATADIR%%/sounds/lt/tux-letter.ogg %%DATADIR%%/sounds/lt/tux-love.ogg %%DATADIR%%/sounds/lt/tux-note.ogg %%DATADIR%%/sounds/lt/tux-notes.ogg %%DATADIR%%/sounds/lt/tux-plate.ogg %%DATADIR%%/sounds/lt/tux-poison.ogg %%DATADIR%%/sounds/lt/tux-shoot.ogg %%DATADIR%%/sounds/lt/tux-sick.ogg %%DATADIR%%/sounds/lt/tux-stare.ogg %%DATADIR%%/sounds/lt/tux-teacup.ogg %%DATADIR%%/sounds/lt/tux-vase.ogg %%DATADIR%%/sounds/lt/tux-wanted.ogg %%DATADIR%%/sounds/lt/tux-what.ogg %%DATADIR%%/sounds/lt/tux-wow.ogg %%DATADIR%%/sounds/lt/tux-zzz.ogg %%DATADIR%%/sounds/lt/tv_accident.ogg %%DATADIR%%/sounds/lt/tv_ball.ogg %%DATADIR%%/sounds/lt/tv_barrier.ogg %%DATADIR%%/sounds/lt/tv_bicycle.ogg %%DATADIR%%/sounds/lt/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/lt/tv_car.ogg %%DATADIR%%/sounds/lt/tv_caravan.ogg %%DATADIR%%/sounds/lt/tv_cyclist.ogg %%DATADIR%%/sounds/lt/tv_elephant.ogg %%DATADIR%%/sounds/lt/tv_excavator.ogg %%DATADIR%%/sounds/lt/tv_fence.ogg %%DATADIR%%/sounds/lt/tv_fire.ogg %%DATADIR%%/sounds/lt/tv_fireengine.ogg %%DATADIR%%/sounds/lt/tv_fireman.ogg %%DATADIR%%/sounds/lt/tv_fisherman.ogg %%DATADIR%%/sounds/lt/tv_giraffe.ogg %%DATADIR%%/sounds/lt/tv_guitar.ogg %%DATADIR%%/sounds/lt/tv_guitarist.ogg %%DATADIR%%/sounds/lt/tv_house.ogg %%DATADIR%%/sounds/lt/tv_ladder.ogg %%DATADIR%%/sounds/lt/tv_lion.ogg %%DATADIR%%/sounds/lt/tv_lorry.ogg %%DATADIR%%/sounds/lt/tv_lorry_tractor.ogg %%DATADIR%%/sounds/lt/tv_man.ogg %%DATADIR%%/sounds/lt/tv_mechanic.ogg %%DATADIR%%/sounds/lt/tv_monkey.ogg %%DATADIR%%/sounds/lt/tv_path.ogg %%DATADIR%%/sounds/lt/tv_rock.ogg %%DATADIR%%/sounds/lt/tv_school.ogg %%DATADIR%%/sounds/lt/tv_shop.ogg %%DATADIR%%/sounds/lt/tv_smoke.ogg %%DATADIR%%/sounds/lt/tv_tipper.ogg %%DATADIR%%/sounds/lt/tv_trailer.ogg %%DATADIR%%/sounds/lt/tv_train.ogg %%DATADIR%%/sounds/lt/tv_tree.ogg %%DATADIR%%/sounds/lt/tv_tunnel.ogg %%DATADIR%%/sounds/lt/tv_volley_net.ogg %%DATADIR%%/sounds/lt/tv_wagon.ogg %%DATADIR%%/sounds/lt/tv_woman.ogg %%DATADIR%%/sounds/lt/umbrella.ogg %%DATADIR%%/sounds/lt/whitch-tux.ogg %%DATADIR%%/sounds/lt/xmas_angel.ogg %%DATADIR%%/sounds/lt/xmas_ball.ogg %%DATADIR%%/sounds/lt/xmas_boot.ogg %%DATADIR%%/sounds/lt/xmas_candle.ogg %%DATADIR%%/sounds/lt/xmas_comet.ogg %%DATADIR%%/sounds/lt/xmas_garland.ogg %%DATADIR%%/sounds/lt/xmas_lights.ogg %%DATADIR%%/sounds/lt/xmas_mistletoe.ogg %%DATADIR%%/sounds/lt/xmas_moon.ogg %%DATADIR%%/sounds/lt/xmas_owl.ogg %%DATADIR%%/sounds/lt/xmas_present.ogg %%DATADIR%%/sounds/lt/xmas_rabbit.ogg %%DATADIR%%/sounds/lt/xmas_reindeer.ogg %%DATADIR%%/sounds/lt/xmas_shoe.ogg %%DATADIR%%/sounds/lt/xmas_snowflake.ogg %%DATADIR%%/sounds/lt/xmas_snowman.ogg %%DATADIR%%/sounds/lt/xmas_star.ogg %%DATADIR%%/sounds/lt/xmas_tree.ogg %%DATADIR%%/sounds/lt/xmas_turtle.ogg %%DATADIR%%/sounds/lt/xmas_tux.ogg %%DATADIR%%/sounds/nds.soundtheme %%DATADIR%%/sounds/nds/brill.wav %%DATADIR%%/sounds/nds/farken.wav %%DATADIR%%/sounds/nds/fleeg.wav %%DATADIR%%/sounds/nds/hoor.wav %%DATADIR%%/sounds/nds/hoot.wav %%DATADIR%%/sounds/nds/mund.wav %%DATADIR%%/sounds/nds/nees.wav %%DATADIR%%/sounds/nds/neesboort.wav %%DATADIR%%/sounds/nds/ohr.wav %%DATADIR%%/sounds/nds/ohrring.wav %%DATADIR%%/sounds/nds/oog.wav %%DATADIR%%/sounds/nds/oogbro.wav %%DATADIR%%/sounds/nds/slips.wav %%DATADIR%%/sounds/nds/suennbrill.wav %%DATADIR%%/sounds/nl.soundtheme %%DATADIR%%/sounds/nl/bril.wav %%DATADIR%%/sounds/nl/haar.wav %%DATADIR%%/sounds/nl/hoed.wav %%DATADIR%%/sounds/nl/mond.wav %%DATADIR%%/sounds/nl/neus.wav %%DATADIR%%/sounds/nl/oog.wav %%DATADIR%%/sounds/nl/oor.wav %%DATADIR%%/sounds/nl/oorbel.wav %%DATADIR%%/sounds/nl/snor.wav %%DATADIR%%/sounds/nl/strik.wav %%DATADIR%%/sounds/nl/stropdas.wav %%DATADIR%%/sounds/nl/wenkbrauw.wav %%DATADIR%%/sounds/nl/zonnebril.wav %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg -%%DATADIR%%/sounds/sr.soundtheme %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg share/kxmlgui5/ktuberling/ktuberlingui.rc share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/bg/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo share/locale/ml/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml share/qlogging-categories5/ktuberling.categories diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 83823c9f4ba8..9a336218fbdd 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706255 -SHA256 (KDE/release-service/20.12.3/kubrick-20.12.3.tar.xz) = 323f2ec8687cf1ffa6ca81657ff96a0a41873b9b29f981894163262ad50ba828 -SIZE (KDE/release-service/20.12.3/kubrick-20.12.3.tar.xz) = 339644 +TIMESTAMP = 1618579152 +SHA256 (KDE/release-service/21.04.0/kubrick-21.04.0.tar.xz) = 13820feacdaaf35fc4694ccecc70a61fd84047fbd7b304fa835a46dc3dd01755 +SIZE (KDE/release-service/21.04.0/kubrick-21.04.0.tar.xz) = 341240 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 75d20ccf976d..d086cf0f749a 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706250 -SHA256 (KDE/release-service/20.12.3/libkdegames-20.12.3.tar.xz) = 401b919640eea95ec8feab1ce0914db2750fafc19893c424eed8ea37e5e216d1 -SIZE (KDE/release-service/20.12.3/libkdegames-20.12.3.tar.xz) = 6389576 +TIMESTAMP = 1618579153 +SHA256 (KDE/release-service/21.04.0/libkdegames-21.04.0.tar.xz) = 4766ce2c73a17b05a7a79c326edaa2c29718719218f48d7ea7543f31f02415e0 +SIZE (KDE/release-service/21.04.0/libkdegames-21.04.0.tar.xz) = 6390828 diff --git a/games/libkdegames/pkg-plist b/games/libkdegames/pkg-plist index d576b55853e7..93d48f8a8198 100644 --- a/games/libkdegames/pkg-plist +++ b/games/libkdegames/pkg-plist @@ -1,182 +1,182 @@ -include/KF5/KF5KDEGames/KDE/KGameClock -include/KF5/KF5KDEGames/KDE/KGamePopupItem -include/KF5/KF5KDEGames/KDE/KGameRenderedItem -include/KF5/KF5KDEGames/KDE/KGameRenderedObjectItem -include/KF5/KF5KDEGames/KDE/KGameRenderer -include/KF5/KF5KDEGames/KDE/KGameRendererClient -include/KF5/KF5KDEGames/KDE/KHighscore -include/KF5/KF5KDEGames/KDE/KScoreDialog -include/KF5/KF5KDEGames/KDE/KStandardGameAction -include/KF5/KF5KDEGames/KDE/KgAudioScene -include/KF5/KF5KDEGames/KDE/KgDeclarativeView -include/KF5/KF5KDEGames/KDE/KgDifficulty -include/KF5/KF5KDEGames/KDE/KgSound -include/KF5/KF5KDEGames/KDE/KgTheme -include/KF5/KF5KDEGames/KDE/KgThemeProvider -include/KF5/KF5KDEGames/KDE/KgThemeSelector +include/KF5/KF5KDEGames/KGameClock +include/KF5/KF5KDEGames/KGamePopupItem +include/KF5/KF5KDEGames/KGameRenderedItem include/KF5/KF5KDEGames/highscore/khighscore.h +include/KF5/KF5KDEGames/KGameRenderedObjectItem +include/KF5/KF5KDEGames/KGameRenderer +include/KF5/KF5KDEGames/KGameRendererClient +include/KF5/KF5KDEGames/KHighscore +include/KF5/KF5KDEGames/KScoreDialog +include/KF5/KF5KDEGames/KStandardGameAction +include/KF5/KF5KDEGames/KgAudioScene +include/KF5/KF5KDEGames/KgDeclarativeView +include/KF5/KF5KDEGames/KgDifficulty +include/KF5/KF5KDEGames/KgSound +include/KF5/KF5KDEGames/KgTheme +include/KF5/KF5KDEGames/KgThemeProvider +include/KF5/KF5KDEGames/KgThemeSelector include/KF5/KF5KDEGames/highscore/kscoredialog.h include/KF5/KF5KDEGames/kdegames_version.h include/KF5/KF5KDEGames/kgameclock.h include/KF5/KF5KDEGames/kgamepopupitem.h include/KF5/KF5KDEGames/kgamerendereditem.h include/KF5/KF5KDEGames/kgamerenderedobjectitem.h include/KF5/KF5KDEGames/kgamerenderer.h include/KF5/KF5KDEGames/kgamerendererclient.h include/KF5/KF5KDEGames/kgaudioscene.h include/KF5/KF5KDEGames/kgdeclarativeview.h include/KF5/KF5KDEGames/kgdifficulty.h include/KF5/KF5KDEGames/kgsound.h include/KF5/KF5KDEGames/kgtheme.h include/KF5/KF5KDEGames/kgthemeprovider.h include/KF5/KF5KDEGames/kgthemeselector.h include/KF5/KF5KDEGames/kstandardgameaction.h include/KF5/KF5KDEGames/libkdegames_capabilities.h include/KF5/KF5KDEGames/libkdegames_export.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbase.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbaseitemdelegate.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbasemodel.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgame.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamechat.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameerror.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameio.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamemessage.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamenetwork.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameproperty.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamepropertyhandler.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamesequence.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameversion.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageclient.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageio.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageserver.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kplayer.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamecanvas.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamedifficulty.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamesvgdocument.h include/KF5/KF5KDEGames/libkdegamesprivate/kgametheme.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamethemeselector.h include/KF5/KF5KDEGames/libkdegamesprivate/libkdegamesprivate_export.h lib/cmake/KF5KDEGames/KF5KDEGamesConfig.cmake lib/cmake/KF5KDEGames/KF5KDEGamesConfigVersion.cmake -lib/cmake/KF5KDEGames/KF5KDEGamesLibraryDepends-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5KDEGames/KF5KDEGamesLibraryDepends.cmake +lib/cmake/KF5KDEGames/KF5KDEGamesTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5KDEGames/KF5KDEGamesTargets.cmake lib/libKF5KDEGames.so lib/libKF5KDEGames.so.%%SHLIB_SHVER%% -lib/libKF5KDEGames.so.%%SHLIB_SHVER%%.2.0 +lib/libKF5KDEGames.so.%%SHLIB_SHVER%%.3.0 lib/libKF5KDEGamesPrivate.so -lib/libKF5KDEGamesPrivate.so.1 -lib/libKF5KDEGamesPrivate.so.1.0.0 +lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%% +lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%%.3.0 %%QT_QMLDIR%%/org/kde/games/core/KgItem.qml %%QT_QMLDIR%%/org/kde/games/core/libcorebindingsplugin.so %%QT_QMLDIR%%/org/kde/games/core/qmldir share/carddecks/svg-ancient-egyptians/11.png share/carddecks/svg-ancient-egyptians/Ancient_Egyptians.svgz share/carddecks/svg-ancient-egyptians/index.desktop share/carddecks/svg-dondorf/11.png share/carddecks/svg-dondorf/dondorf.svgz share/carddecks/svg-dondorf/index.desktop share/carddecks/svg-future/11.png share/carddecks/svg-future/future.svgz share/carddecks/svg-future/index.desktop share/carddecks/svg-gm-paris/11.png share/carddecks/svg-gm-paris/index.desktop share/carddecks/svg-gm-paris/paris.svgz share/carddecks/svg-jolly-royal/11.png share/carddecks/svg-jolly-royal/index.desktop share/carddecks/svg-jolly-royal/jolly-royal.svgz share/carddecks/svg-konqi-modern/11.png share/carddecks/svg-konqi-modern/index.desktop share/carddecks/svg-konqi-modern/konqi.svgz share/carddecks/svg-nicu-ornamental/11.png share/carddecks/svg-nicu-ornamental/AUTHORS share/carddecks/svg-nicu-ornamental/COPYING share/carddecks/svg-nicu-ornamental/index.desktop share/carddecks/svg-nicu-ornamental/ornamental.svgz share/carddecks/svg-nicu-white/11.png share/carddecks/svg-nicu-white/AUTHORS share/carddecks/svg-nicu-white/COPYING share/carddecks/svg-nicu-white/index.desktop share/carddecks/svg-nicu-white/white.svgz share/carddecks/svg-oxygen-air/11.png share/carddecks/svg-oxygen-air/index.desktop share/carddecks/svg-oxygen-air/oxygen-air.svgz share/carddecks/svg-oxygen-white/11.png share/carddecks/svg-oxygen-white/index.desktop share/carddecks/svg-oxygen-white/oxygen-white.svgz share/carddecks/svg-oxygen/11.png share/carddecks/svg-oxygen/index.desktop share/carddecks/svg-oxygen/oxygen.svgz share/carddecks/svg-penguins/11.png share/carddecks/svg-penguins/COPYRIGHT share/carddecks/svg-penguins/index.desktop share/carddecks/svg-penguins/penguins.svgz share/carddecks/svg-standard/11.png share/carddecks/svg-standard/index.desktop share/carddecks/svg-standard/standard.svgz share/carddecks/svg-tigullio-international/index.desktop share/carddecks/svg-tigullio-international/queen-of-hearts.png share/carddecks/svg-tigullio-international/tigullio-international.svgz share/carddecks/svg-xskat-french/11.png share/carddecks/svg-xskat-french/COPYRIGHT share/carddecks/svg-xskat-french/french.svgz share/carddecks/svg-xskat-french/index.desktop share/carddecks/svg-xskat-german/11.png share/carddecks/svg-xskat-german/COPYRIGHT share/carddecks/svg-xskat-german/german.svgz share/carddecks/svg-xskat-german/index.desktop share/kconf_update/kgthemeprovider-migration.upd share/locale/ar/LC_MESSAGES/libkdegames5.mo share/locale/bg/LC_MESSAGES/libkdegames5.mo share/locale/bs/LC_MESSAGES/libkdegames5.mo share/locale/ca/LC_MESSAGES/libkdegames5.mo share/locale/ca@valencia/LC_MESSAGES/libkdegames5.mo share/locale/cs/LC_MESSAGES/libkdegames5.mo share/locale/da/LC_MESSAGES/libkdegames5.mo share/locale/de/LC_MESSAGES/libkdegames5.mo share/locale/el/LC_MESSAGES/libkdegames5.mo share/locale/en_GB/LC_MESSAGES/libkdegames5.mo share/locale/eo/LC_MESSAGES/libkdegames5.mo share/locale/es/LC_MESSAGES/libkdegames5.mo share/locale/et/LC_MESSAGES/libkdegames5.mo share/locale/eu/LC_MESSAGES/libkdegames5.mo share/locale/fa/LC_MESSAGES/libkdegames5.mo share/locale/fi/LC_MESSAGES/libkdegames5.mo share/locale/fr/LC_MESSAGES/libkdegames5.mo share/locale/ga/LC_MESSAGES/libkdegames5.mo share/locale/gl/LC_MESSAGES/libkdegames5.mo share/locale/he/LC_MESSAGES/libkdegames5.mo share/locale/hi/LC_MESSAGES/libkdegames5.mo share/locale/hr/LC_MESSAGES/libkdegames5.mo share/locale/hu/LC_MESSAGES/libkdegames5.mo share/locale/id/LC_MESSAGES/libkdegames5.mo share/locale/is/LC_MESSAGES/libkdegames5.mo share/locale/it/LC_MESSAGES/libkdegames5.mo share/locale/ja/LC_MESSAGES/libkdegames5.mo share/locale/kk/LC_MESSAGES/libkdegames5.mo share/locale/km/LC_MESSAGES/libkdegames5.mo share/locale/ko/LC_MESSAGES/libkdegames5.mo share/locale/lt/LC_MESSAGES/libkdegames5.mo share/locale/lv/LC_MESSAGES/libkdegames5.mo share/locale/ml/LC_MESSAGES/libkdegames5.mo share/locale/mr/LC_MESSAGES/libkdegames5.mo share/locale/nb/LC_MESSAGES/libkdegames5.mo share/locale/nds/LC_MESSAGES/libkdegames5.mo share/locale/nl/LC_MESSAGES/libkdegames5.mo share/locale/nn/LC_MESSAGES/libkdegames5.mo share/locale/pa/LC_MESSAGES/libkdegames5.mo share/locale/pl/LC_MESSAGES/libkdegames5.mo share/locale/pt/LC_MESSAGES/libkdegames5.mo share/locale/pt_BR/LC_MESSAGES/libkdegames5.mo share/locale/ro/LC_MESSAGES/libkdegames5.mo share/locale/ru/LC_MESSAGES/libkdegames5.mo share/locale/sk/LC_MESSAGES/libkdegames5.mo share/locale/sl/LC_MESSAGES/libkdegames5.mo share/locale/sr/LC_MESSAGES/libkdegames5.mo share/locale/sv/LC_MESSAGES/libkdegames5.mo share/locale/tr/LC_MESSAGES/libkdegames5.mo share/locale/ug/LC_MESSAGES/libkdegames5.mo share/locale/uk/LC_MESSAGES/libkdegames5.mo share/locale/wa/LC_MESSAGES/libkdegames5.mo share/locale/zh_CN/LC_MESSAGES/libkdegames5.mo share/locale/zh_TW/LC_MESSAGES/libkdegames5.mo share/qlogging-categories5/libkdegames.categories diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index e2aa8928a675..66f40c9aac1c 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706253 -SHA256 (KDE/release-service/20.12.3/libkmahjongg-20.12.3.tar.xz) = 9b3c960b09935c234cad92abaf959750421a4f6d24ff34d37f99c4f508398b9b -SIZE (KDE/release-service/20.12.3/libkmahjongg-20.12.3.tar.xz) = 1691308 +TIMESTAMP = 1618579154 +SHA256 (KDE/release-service/21.04.0/libkmahjongg-21.04.0.tar.xz) = 8b5da3f5fe62ea6ab0f07588b0c5202321a7a2b5c0e1ad319389edbb1bd752d8 +SIZE (KDE/release-service/21.04.0/libkmahjongg-21.04.0.tar.xz) = 1679416 diff --git a/games/libkmahjongg/pkg-plist b/games/libkmahjongg/pkg-plist index 7285c4c201c7..8dee7249de7e 100644 --- a/games/libkmahjongg/pkg-plist +++ b/games/libkmahjongg/pkg-plist @@ -1,97 +1,100 @@ -share/qlogging-categories5/libkmahjongg.categories +include/KF5/KF5KMahjongg/KMahjonggBackground +include/KF5/KF5KMahjongg/KMahjonggConfigDialog +include/KF5/KF5KMahjongg/KMahjonggTileset include/KF5/KF5KMahjongg/kmahjonggbackground.h include/KF5/KF5KMahjongg/kmahjonggconfigdialog.h include/KF5/KF5KMahjongg/kmahjongglib_version.h include/KF5/KF5KMahjongg/kmahjonggtileset.h include/KF5/KF5KMahjongg/libkmahjongg_export.h -lib/cmake/KF5KMahjongglib/KF5KMahjonggLibraryDepends-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5KMahjongglib/KF5KMahjonggLibraryDepends.cmake +lib/cmake/KF5KMahjongglib/KF5KMahjonggTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5KMahjongglib/KF5KMahjonggTargets.cmake lib/cmake/KF5KMahjongglib/KF5KMahjongglibConfig.cmake lib/cmake/KF5KMahjongglib/KF5KMahjongglibConfigVersion.cmake lib/libKF5KMahjongglib.so lib/libKF5KMahjongglib.so.5 -lib/libKF5KMahjongglib.so.5.0.0 +lib/libKF5KMahjongglib.so.5.1.0 share/kmahjongglib/backgrounds/chinese_landscape.copyright share/kmahjongglib/backgrounds/chinese_landscape.desktop share/kmahjongglib/backgrounds/chinese_landscape.svgz share/kmahjongglib/backgrounds/color_plain.desktop share/kmahjongglib/backgrounds/default.copyright share/kmahjongglib/backgrounds/default.desktop share/kmahjongglib/backgrounds/default.svg share/kmahjongglib/backgrounds/egyptian.copyright share/kmahjongglib/backgrounds/egyptian.desktop share/kmahjongglib/backgrounds/egyptian.svgz share/kmahjongglib/backgrounds/summerfield.copyright share/kmahjongglib/backgrounds/summerfield.desktop share/kmahjongglib/backgrounds/summerfield.svg share/kmahjongglib/backgrounds/wood_light.copyright share/kmahjongglib/backgrounds/wood_light.desktop share/kmahjongglib/backgrounds/wood_light.svg share/kmahjongglib/tilesets/alphabet.copyright share/kmahjongglib/tilesets/alphabet.desktop share/kmahjongglib/tilesets/alphabet.svgz share/kmahjongglib/tilesets/classic.copyright share/kmahjongglib/tilesets/classic.desktop share/kmahjongglib/tilesets/classic.svg share/kmahjongglib/tilesets/default.copyright share/kmahjongglib/tilesets/default.desktop share/kmahjongglib/tilesets/default.svgz share/kmahjongglib/tilesets/egypt.copyright share/kmahjongglib/tilesets/egypt.desktop share/kmahjongglib/tilesets/egypt.svgz share/kmahjongglib/tilesets/jade.copyright share/kmahjongglib/tilesets/jade.desktop share/kmahjongglib/tilesets/jade.svgz share/kmahjongglib/tilesets/traditional.copyright share/kmahjongglib/tilesets/traditional.desktop share/kmahjongglib/tilesets/traditional.svgz share/locale/ar/LC_MESSAGES/libkmahjongg5.mo share/locale/bs/LC_MESSAGES/libkmahjongg5.mo share/locale/ca/LC_MESSAGES/libkmahjongg5.mo share/locale/ca@valencia/LC_MESSAGES/libkmahjongg5.mo share/locale/cs/LC_MESSAGES/libkmahjongg5.mo share/locale/da/LC_MESSAGES/libkmahjongg5.mo share/locale/de/LC_MESSAGES/libkmahjongg5.mo share/locale/el/LC_MESSAGES/libkmahjongg5.mo share/locale/en_GB/LC_MESSAGES/libkmahjongg5.mo share/locale/eo/LC_MESSAGES/libkmahjongg5.mo share/locale/es/LC_MESSAGES/libkmahjongg5.mo share/locale/et/LC_MESSAGES/libkmahjongg5.mo share/locale/eu/LC_MESSAGES/libkmahjongg5.mo share/locale/fi/LC_MESSAGES/libkmahjongg5.mo share/locale/fr/LC_MESSAGES/libkmahjongg5.mo share/locale/ga/LC_MESSAGES/libkmahjongg5.mo share/locale/gl/LC_MESSAGES/libkmahjongg5.mo share/locale/hi/LC_MESSAGES/libkmahjongg5.mo share/locale/hr/LC_MESSAGES/libkmahjongg5.mo share/locale/hu/LC_MESSAGES/libkmahjongg5.mo share/locale/id/LC_MESSAGES/libkmahjongg5.mo share/locale/is/LC_MESSAGES/libkmahjongg5.mo share/locale/it/LC_MESSAGES/libkmahjongg5.mo share/locale/ja/LC_MESSAGES/libkmahjongg5.mo share/locale/kk/LC_MESSAGES/libkmahjongg5.mo share/locale/km/LC_MESSAGES/libkmahjongg5.mo share/locale/ko/LC_MESSAGES/libkmahjongg5.mo share/locale/lt/LC_MESSAGES/libkmahjongg5.mo share/locale/lv/LC_MESSAGES/libkmahjongg5.mo share/locale/ml/LC_MESSAGES/libkmahjongg5.mo share/locale/mr/LC_MESSAGES/libkmahjongg5.mo share/locale/nb/LC_MESSAGES/libkmahjongg5.mo share/locale/nds/LC_MESSAGES/libkmahjongg5.mo share/locale/nl/LC_MESSAGES/libkmahjongg5.mo share/locale/nn/LC_MESSAGES/libkmahjongg5.mo share/locale/pl/LC_MESSAGES/libkmahjongg5.mo share/locale/pt/LC_MESSAGES/libkmahjongg5.mo share/locale/pt_BR/LC_MESSAGES/libkmahjongg5.mo share/locale/ro/LC_MESSAGES/libkmahjongg5.mo share/locale/ru/LC_MESSAGES/libkmahjongg5.mo share/locale/sk/LC_MESSAGES/libkmahjongg5.mo share/locale/sl/LC_MESSAGES/libkmahjongg5.mo share/locale/sr/LC_MESSAGES/libkmahjongg5.mo share/locale/sv/LC_MESSAGES/libkmahjongg5.mo share/locale/tr/LC_MESSAGES/libkmahjongg5.mo share/locale/ug/LC_MESSAGES/libkmahjongg5.mo share/locale/uk/LC_MESSAGES/libkmahjongg5.mo share/locale/wa/LC_MESSAGES/libkmahjongg5.mo share/locale/zh_CN/LC_MESSAGES/libkmahjongg5.mo share/locale/zh_TW/LC_MESSAGES/libkmahjongg5.mo +share/qlogging-categories5/libkmahjongg.categories diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 7324ce8e8599..c12addec566d 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706249 -SHA256 (KDE/release-service/20.12.3/lskat-20.12.3.tar.xz) = 9b5167e20e8fde94abe4a4025bcb46f56923617c0246f894740f8158f2d4beba -SIZE (KDE/release-service/20.12.3/lskat-20.12.3.tar.xz) = 1225308 +TIMESTAMP = 1618579155 +SHA256 (KDE/release-service/21.04.0/lskat-21.04.0.tar.xz) = 0d03b8de36f9905dc72d1a9065b790cf5ad3912fe1971b096a634ad6a85e9da9 +SIZE (KDE/release-service/21.04.0/lskat-21.04.0.tar.xz) = 1222484 diff --git a/games/lskat/pkg-plist b/games/lskat/pkg-plist index 7f685064b893..92b32a81cb8f 100644 --- a/games/lskat/pkg-plist +++ b/games/lskat/pkg-plist @@ -1,73 +1,72 @@ bin/lskat share/qlogging-categories5/lskat.categories share/applications/org.kde.lskat.desktop share/icons/hicolor/128x128/apps/lskat.png share/icons/hicolor/16x16/apps/lskat.png share/icons/hicolor/22x22/apps/lskat.png share/icons/hicolor/32x32/apps/lskat.png share/icons/hicolor/48x48/apps/lskat.png share/icons/hicolor/64x64/apps/lskat.png -share/kxmlgui5/lskat/lskatui.rc share/locale/ar/LC_MESSAGES/lskat.mo share/locale/bg/LC_MESSAGES/lskat.mo share/locale/bs/LC_MESSAGES/lskat.mo share/locale/ca/LC_MESSAGES/lskat.mo share/locale/ca@valencia/LC_MESSAGES/lskat.mo share/locale/cs/LC_MESSAGES/lskat.mo share/locale/da/LC_MESSAGES/lskat.mo share/locale/de/LC_MESSAGES/lskat.mo share/locale/el/LC_MESSAGES/lskat.mo share/locale/en_GB/LC_MESSAGES/lskat.mo share/locale/eo/LC_MESSAGES/lskat.mo share/locale/es/LC_MESSAGES/lskat.mo share/locale/et/LC_MESSAGES/lskat.mo share/locale/eu/LC_MESSAGES/lskat.mo share/locale/fa/LC_MESSAGES/lskat.mo share/locale/fi/LC_MESSAGES/lskat.mo share/locale/fr/LC_MESSAGES/lskat.mo share/locale/ga/LC_MESSAGES/lskat.mo share/locale/gl/LC_MESSAGES/lskat.mo share/locale/he/LC_MESSAGES/lskat.mo share/locale/hi/LC_MESSAGES/lskat.mo share/locale/hr/LC_MESSAGES/lskat.mo share/locale/hu/LC_MESSAGES/lskat.mo share/locale/id/LC_MESSAGES/lskat.mo share/locale/is/LC_MESSAGES/lskat.mo share/locale/it/LC_MESSAGES/lskat.mo share/locale/ja/LC_MESSAGES/lskat.mo share/locale/kk/LC_MESSAGES/lskat.mo share/locale/km/LC_MESSAGES/lskat.mo share/locale/ko/LC_MESSAGES/lskat.mo share/locale/lt/LC_MESSAGES/lskat.mo share/locale/lv/LC_MESSAGES/lskat.mo share/locale/ml/LC_MESSAGES/lskat.mo share/locale/mr/LC_MESSAGES/lskat.mo share/locale/nb/LC_MESSAGES/lskat.mo share/locale/nds/LC_MESSAGES/lskat.mo share/locale/nl/LC_MESSAGES/lskat.mo share/locale/nn/LC_MESSAGES/lskat.mo share/locale/pa/LC_MESSAGES/lskat.mo share/locale/pl/LC_MESSAGES/lskat.mo share/locale/pt/LC_MESSAGES/lskat.mo share/locale/pt_BR/LC_MESSAGES/lskat.mo share/locale/ro/LC_MESSAGES/lskat.mo share/locale/ru/LC_MESSAGES/lskat.mo share/locale/sk/LC_MESSAGES/lskat.mo share/locale/sl/LC_MESSAGES/lskat.mo share/locale/sr/LC_MESSAGES/lskat.mo share/locale/sv/LC_MESSAGES/lskat.mo share/locale/tr/LC_MESSAGES/lskat.mo share/locale/ug/LC_MESSAGES/lskat.mo share/locale/uk/LC_MESSAGES/lskat.mo share/locale/zh_CN/LC_MESSAGES/lskat.mo share/locale/zh_TW/LC_MESSAGES/lskat.mo %%DATADIR%%/grafix/blue.desktop %%DATADIR%%/grafix/blue.rc %%DATADIR%%/grafix/blue.svg %%DATADIR%%/grafix/egyptian.desktop %%DATADIR%%/grafix/egyptian.rc %%DATADIR%%/grafix/egyptian.svg %%DATADIR%%/grafix/oxygen.desktop %%DATADIR%%/grafix/oxygen.rc %%DATADIR%%/grafix/oxygen.svg share/metainfo/org.kde.lskat.appdata.xml diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index e44389d9a897..ed558ec7ce2f 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706245 -SHA256 (KDE/release-service/20.12.3/palapeli-20.12.3.tar.xz) = aa9b99b5953882e8802b8537c9367dfdca3345e4e8cc709dd2f859149e8b1892 -SIZE (KDE/release-service/20.12.3/palapeli-20.12.3.tar.xz) = 2078720 +TIMESTAMP = 1618579155 +SHA256 (KDE/release-service/21.04.0/palapeli-21.04.0.tar.xz) = 9cce8c40e2287242255e37da934bf76fa72aedebc7e9f49fb84e516548a6fe38 +SIZE (KDE/release-service/21.04.0/palapeli-21.04.0.tar.xz) = 2076340 diff --git a/games/palapeli/pkg-plist b/games/palapeli/pkg-plist index b8617ba2f619..86ae89aa1b13 100644 --- a/games/palapeli/pkg-plist +++ b/games/palapeli/pkg-plist @@ -1,110 +1,106 @@ bin/palapeli -share/qlogging-categories5/palapeli.categories -etc/xdg/palapeli-collectionrc -include/Pala/Slicer -include/Pala/SlicerJob -include/Pala/SlicerMode -include/Pala/SlicerProperty -include/Pala/SlicerPropertySet -include/libpala/libpala_export.h -include/libpala/slicer.h -include/libpala/slicerjob.h -include/libpala/slicermode.h -include/libpala/slicerproperty.h -include/libpala/slicerpropertyset.h lib/libpala.so lib/libpala.so.0 lib/libpala.so.0.2.0 -lib/libpala/libpala-config.cmake -lib/libpala/pala-targets-%%CMAKE_BUILD_TYPE%%.cmake -lib/libpala/pala-targets.cmake -%%QT_PLUGINDIR%%/palapeli_goldbergslicer.so -%%QT_PLUGINDIR%%/palapeli_jigsawslicer.so -%%QT_PLUGINDIR%%/palapeli_rectslicer.so +etc/xdg/palapeli-collectionrc +include/Pala/Pala/Slicer +include/Pala/Pala/SlicerJob +include/Pala/Pala/SlicerMode +include/Pala/Pala/SlicerProperty +include/Pala/Pala/SlicerPropertySet +include/Pala/pala/libpala_export.h +include/Pala/pala/slicer.h +include/Pala/pala/slicerjob.h +include/Pala/pala/slicermode.h +include/Pala/pala/slicerproperty.h +include/Pala/pala/slicerpropertyset.h +lib/cmake/Pala/PalaConfig.cmake +lib/cmake/Pala/PalaConfigVersion.cmake +lib/cmake/Pala/PalaTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Pala/PalaTargets.cmake +%%QT_PLUGINDIR%%/palapelislicers/palapeli_goldbergslicer.so +%%QT_PLUGINDIR%%/palapelislicers/palapeli_jigsawslicer.so +%%QT_PLUGINDIR%%/palapelislicers/palapeli_rectslicer.so %%QT_PLUGINDIR%%/palathumbcreator.so share/applications/org.kde.palapeli.desktop share/icons/hicolor/128x128/apps/palapeli.png share/icons/hicolor/128x128/mimetypes/application-x-palapeli.png share/icons/hicolor/16x16/apps/palapeli.png share/icons/hicolor/16x16/mimetypes/application-x-palapeli.png share/icons/hicolor/24x24/apps/palapeli.png share/icons/hicolor/24x24/mimetypes/application-x-palapeli.png share/icons/hicolor/32x32/apps/palapeli.png share/icons/hicolor/32x32/mimetypes/application-x-palapeli.png share/icons/hicolor/48x48/apps/palapeli.png share/icons/hicolor/48x48/mimetypes/application-x-palapeli.png share/icons/hicolor/64x64/apps/palapeli.png share/icons/hicolor/64x64/mimetypes/application-x-palapeli.png share/knotifications5/palapeli.notifyrc share/kservices5/ServiceMenus/palapeli_servicemenu.desktop -share/kservices5/palapeli_goldbergslicer.desktop -share/kservices5/palapeli_jigsawslicer.desktop -share/kservices5/palapeli_rectslicer.desktop share/kservices5/palathumbcreator.desktop -share/kservicetypes5/libpala-slicerplugin.desktop -share/kxmlgui5/palapeli/palapeliui.rc share/locale/bs/LC_MESSAGES/palapeli.mo share/locale/ca/LC_MESSAGES/palapeli.mo share/locale/ca@valencia/LC_MESSAGES/palapeli.mo share/locale/cs/LC_MESSAGES/palapeli.mo share/locale/da/LC_MESSAGES/palapeli.mo share/locale/de/LC_MESSAGES/palapeli.mo share/locale/el/LC_MESSAGES/palapeli.mo share/locale/en_GB/LC_MESSAGES/palapeli.mo share/locale/eo/LC_MESSAGES/palapeli.mo share/locale/es/LC_MESSAGES/palapeli.mo share/locale/et/LC_MESSAGES/palapeli.mo share/locale/eu/LC_MESSAGES/palapeli.mo share/locale/fi/LC_MESSAGES/palapeli.mo share/locale/fr/LC_MESSAGES/palapeli.mo share/locale/ga/LC_MESSAGES/palapeli.mo share/locale/gl/LC_MESSAGES/palapeli.mo share/locale/hr/LC_MESSAGES/palapeli.mo share/locale/hu/LC_MESSAGES/palapeli.mo share/locale/is/LC_MESSAGES/palapeli.mo share/locale/it/LC_MESSAGES/palapeli.mo share/locale/ja/LC_MESSAGES/palapeli.mo share/locale/kk/LC_MESSAGES/palapeli.mo share/locale/km/LC_MESSAGES/palapeli.mo share/locale/ko/LC_MESSAGES/palapeli.mo share/locale/lt/LC_MESSAGES/palapeli.mo share/locale/lv/LC_MESSAGES/palapeli.mo share/locale/ml/LC_MESSAGES/palapeli.mo share/locale/mr/LC_MESSAGES/palapeli.mo share/locale/nb/LC_MESSAGES/palapeli.mo share/locale/nds/LC_MESSAGES/palapeli.mo share/locale/nl/LC_MESSAGES/palapeli.mo share/locale/nn/LC_MESSAGES/palapeli.mo share/locale/pl/LC_MESSAGES/palapeli.mo share/locale/pt/LC_MESSAGES/palapeli.mo share/locale/pt_BR/LC_MESSAGES/palapeli.mo share/locale/ro/LC_MESSAGES/palapeli.mo share/locale/ru/LC_MESSAGES/palapeli.mo share/locale/sk/LC_MESSAGES/palapeli.mo share/locale/sl/LC_MESSAGES/palapeli.mo share/locale/sr/LC_MESSAGES/palapeli.mo share/locale/sv/LC_MESSAGES/palapeli.mo share/locale/tr/LC_MESSAGES/palapeli.mo share/locale/ug/LC_MESSAGES/palapeli.mo share/locale/uk/LC_MESSAGES/palapeli.mo share/locale/zh_CN/LC_MESSAGES/palapeli.mo share/locale/zh_TW/LC_MESSAGES/palapeli.mo share/metainfo/org.kde.palapeli.appdata.xml share/mime/packages/palapeli-mimetypes.xml %%DATADIR%%/backgrounds/Eliminator-Funk-2.jpg %%DATADIR%%/backgrounds/Rear-Admiral-Diplomat-1.jpg %%DATADIR%%/backgrounds/Time-For-Lunch-2.jpg %%DATADIR%%/backgrounds/background.svg %%DATADIR%%/backgrounds/gon-defends-the-critters-1.jpg %%DATADIR%%/backgrounds/mahogany-handjob-1.jpg %%DATADIR%%/collection/castle-maintenon.desktop %%DATADIR%%/collection/castle-maintenon.jpg %%DATADIR%%/collection/cincinnati-bridge.desktop %%DATADIR%%/collection/cincinnati-bridge.jpg %%DATADIR%%/collection/citrus-fruits.desktop %%DATADIR%%/collection/citrus-fruits.jpg %%DATADIR%%/collection/european-honey-bee.desktop %%DATADIR%%/collection/european-honey-bee.jpg %%DATADIR%%/collection/panther-chameleon-female.desktop %%DATADIR%%/collection/panther-chameleon-female.jpg %%DATADIR%%/palapeli.kcfg +share/qlogging-categories5/palapeli.categories diff --git a/games/picmi/distinfo b/games/picmi/distinfo index ad714d674c11..7ec86f59cd9d 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706264 -SHA256 (KDE/release-service/20.12.3/picmi-20.12.3.tar.xz) = a2b5f9cc2bfc0ed0bb3f8b215881a19c366de43eed049db7f910566e746e93f7 -SIZE (KDE/release-service/20.12.3/picmi-20.12.3.tar.xz) = 1367556 +TIMESTAMP = 1618579156 +SHA256 (KDE/release-service/21.04.0/picmi-21.04.0.tar.xz) = 239bbdbecdd8441f4179d5e85a9b0f3e555a13cf4f44b213719b2e01d8e79adf +SIZE (KDE/release-service/21.04.0/picmi-21.04.0.tar.xz) = 1369132 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index c66e0c720f79..ad8847e5b55e 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706267 -SHA256 (KDE/release-service/20.12.3/gwenview-20.12.3.tar.xz) = 68234a515f0870c295020a4a7495f42e785e4ad1cce536c77f108a41561b41a2 -SIZE (KDE/release-service/20.12.3/gwenview-20.12.3.tar.xz) = 6753636 +TIMESTAMP = 1618579157 +SHA256 (KDE/release-service/21.04.0/gwenview-21.04.0.tar.xz) = a5f9839db9e756c4e442982314a053b4765f5907398350d7776cf544dc71de1b +SIZE (KDE/release-service/21.04.0/gwenview-21.04.0.tar.xz) = 6757484 diff --git a/graphics/gwenview/pkg-plist b/graphics/gwenview/pkg-plist index 4bee156279e6..229ec8c26e1d 100644 --- a/graphics/gwenview/pkg-plist +++ b/graphics/gwenview/pkg-plist @@ -1,84 +1,83 @@ bin/gwenview bin/gwenview_importer lib/libgwenviewlib.so.4.97.0 lib/libgwenviewlib.so.5 +%%QT_PLUGINDIR%%/kf5/kfileitemaction/slideshowfileitemaction.so %%QT_PLUGINDIR%%/kf5/parts/gvpart.so share/applications/org.kde.gwenview.desktop %%DATADIR%%/color-schemes/fullscreen.colors %%DATADIR%%/cursors/zoom.png %%DATADIR%%/images/background.png share/icons/hicolor/128x128/actions/document-share.png share/icons/hicolor/128x128/apps/gwenview.png share/icons/hicolor/16x16/actions/document-share.png share/icons/hicolor/16x16/apps/gwenview.png share/icons/hicolor/22x22/actions/document-share.png share/icons/hicolor/22x22/apps/gwenview.png share/icons/hicolor/32x32/actions/document-share.png share/icons/hicolor/32x32/apps/gwenview.png share/icons/hicolor/48x48/actions/document-share.png share/icons/hicolor/48x48/apps/gwenview.png share/icons/hicolor/64x64/actions/document-share.png share/icons/hicolor/64x64/apps/gwenview.png share/kconf_update/gwenview-imageview-alphabackgroundmode-update.pl share/kconf_update/gwenview.upd -share/kservices5/ServiceMenus/slideshow.desktop share/kservices5/gvpart.desktop -share/kxmlgui5/gvpart/gvpart.rc share/locale/ar/LC_MESSAGES/gwenview.mo share/locale/bg/LC_MESSAGES/gwenview.mo share/locale/bs/LC_MESSAGES/gwenview.mo share/locale/ca/LC_MESSAGES/gwenview.mo share/locale/ca@valencia/LC_MESSAGES/gwenview.mo share/locale/cs/LC_MESSAGES/gwenview.mo share/locale/da/LC_MESSAGES/gwenview.mo share/locale/de/LC_MESSAGES/gwenview.mo share/locale/el/LC_MESSAGES/gwenview.mo share/locale/en_GB/LC_MESSAGES/gwenview.mo share/locale/eo/LC_MESSAGES/gwenview.mo share/locale/es/LC_MESSAGES/gwenview.mo share/locale/et/LC_MESSAGES/gwenview.mo share/locale/eu/LC_MESSAGES/gwenview.mo share/locale/fi/LC_MESSAGES/gwenview.mo share/locale/fr/LC_MESSAGES/gwenview.mo share/locale/ga/LC_MESSAGES/gwenview.mo share/locale/gl/LC_MESSAGES/gwenview.mo share/locale/he/LC_MESSAGES/gwenview.mo share/locale/hi/LC_MESSAGES/gwenview.mo share/locale/hr/LC_MESSAGES/gwenview.mo share/locale/hu/LC_MESSAGES/gwenview.mo share/locale/ia/LC_MESSAGES/gwenview.mo share/locale/id/LC_MESSAGES/gwenview.mo share/locale/is/LC_MESSAGES/gwenview.mo share/locale/it/LC_MESSAGES/gwenview.mo share/locale/ja/LC_MESSAGES/gwenview.mo share/locale/kk/LC_MESSAGES/gwenview.mo share/locale/km/LC_MESSAGES/gwenview.mo share/locale/ko/LC_MESSAGES/gwenview.mo share/locale/lt/LC_MESSAGES/gwenview.mo share/locale/lv/LC_MESSAGES/gwenview.mo share/locale/ml/LC_MESSAGES/gwenview.mo share/locale/mr/LC_MESSAGES/gwenview.mo share/locale/nb/LC_MESSAGES/gwenview.mo share/locale/nds/LC_MESSAGES/gwenview.mo share/locale/nl/LC_MESSAGES/gwenview.mo share/locale/nn/LC_MESSAGES/gwenview.mo share/locale/pa/LC_MESSAGES/gwenview.mo share/locale/pl/LC_MESSAGES/gwenview.mo share/locale/pt/LC_MESSAGES/gwenview.mo share/locale/pt_BR/LC_MESSAGES/gwenview.mo share/locale/ro/LC_MESSAGES/gwenview.mo share/locale/ru/LC_MESSAGES/gwenview.mo share/locale/sk/LC_MESSAGES/gwenview.mo share/locale/sl/LC_MESSAGES/gwenview.mo share/locale/sr/LC_MESSAGES/gwenview.mo share/locale/sv/LC_MESSAGES/gwenview.mo share/locale/tr/LC_MESSAGES/gwenview.mo share/locale/ug/LC_MESSAGES/gwenview.mo share/locale/uk/LC_MESSAGES/gwenview.mo share/locale/wa/LC_MESSAGES/gwenview.mo share/locale/zh_CN/LC_MESSAGES/gwenview.mo share/locale/zh_TW/LC_MESSAGES/gwenview.mo share/metainfo/org.kde.gwenview.appdata.xml share/solid/actions/gwenview_importer.desktop share/solid/actions/gwenview_importer_camera.desktop share/qlogging-categories5/gwenview.categories diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index a494d459cfaa..1e70970d612b 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706274 -SHA256 (KDE/release-service/20.12.3/kamera-20.12.3.tar.xz) = 46da3e0d9686cc6805dee5846b623173c7462b1f1fc6bb25eb3ad9729222d13c -SIZE (KDE/release-service/20.12.3/kamera-20.12.3.tar.xz) = 108696 +TIMESTAMP = 1618579158 +SHA256 (KDE/release-service/21.04.0/kamera-21.04.0.tar.xz) = 82e71863e610332e453fb54da1d255adb409875f079f83e081a497e06c601119 +SIZE (KDE/release-service/21.04.0/kamera-21.04.0.tar.xz) = 109824 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index c36e36d410af..fc0a35253d16 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,90 +1,91 @@ %%QT_PLUGINDIR%%/kcm_kamera.so %%QT_PLUGINDIR%%/kio_kamera.so share/kservices5/camera.protocol share/kservices5/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo +share/locale/ast/LC_MESSAGES/kio5_kamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kio5_kamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/el/LC_MESSAGES/kio5_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/et/LC_MESSAGES/kio5_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kio5_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio5_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio5_kamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ro/LC_MESSAGES/kio5_kamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sl/LC_MESSAGES/kio5_kamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/metainfo/org.kde.kamera.metainfo.xml share/solid/actions/solid_camera.desktop diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 95d3c4fe5e4f..54b09522ed6a 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706272 -SHA256 (KDE/release-service/20.12.3/kcolorchooser-20.12.3.tar.xz) = 4d3d3f446447e07a054d44c5bf23f2bbeb0f6e7ea91299945cac927168555529 -SIZE (KDE/release-service/20.12.3/kcolorchooser-20.12.3.tar.xz) = 27660 +TIMESTAMP = 1618579159 +SHA256 (KDE/release-service/21.04.0/kcolorchooser-21.04.0.tar.xz) = 3bad5a7d8b4744eea7678922649733a457e8d0d5238cca3c4af458561d65ff31 +SIZE (KDE/release-service/21.04.0/kcolorchooser-21.04.0.tar.xz) = 27736 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index c5b5dc0a7dd3..7d24c3ca2623 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706274 -SHA256 (KDE/release-service/20.12.3/kdegraphics-mobipocket-20.12.3.tar.xz) = 9448b979b9722bc73bd0429733016399933f9c41f19b5cc1ecb8458226fd71fd -SIZE (KDE/release-service/20.12.3/kdegraphics-mobipocket-20.12.3.tar.xz) = 17056 +TIMESTAMP = 1618579159 +SHA256 (KDE/release-service/21.04.0/kdegraphics-mobipocket-21.04.0.tar.xz) = 57e436f2babdbf28bcce0ae7802638a80e18ee1ccbe0f7bfae6775c19c73fd02 +SIZE (KDE/release-service/21.04.0/kdegraphics-mobipocket-21.04.0.tar.xz) = 17096 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index b8074cfa8739..40a5fb7aebb8 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706270 -SHA256 (KDE/release-service/20.12.3/svgpart-20.12.3.tar.xz) = f4b588f4b29178fd03a63c2b005837629bf9bbcf59f0a80fffa6a2354ff3b3d1 -SIZE (KDE/release-service/20.12.3/svgpart-20.12.3.tar.xz) = 23348 +TIMESTAMP = 1618579160 +SHA256 (KDE/release-service/21.04.0/svgpart-21.04.0.tar.xz) = b2c1f78265d865aa39019e74721e2534bd8cf0a9147e6a5cbce54e9268f70e32 +SIZE (KDE/release-service/21.04.0/svgpart-21.04.0.tar.xz) = 23832 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 4a38fcc54eb4..8a01020c7b12 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706269 -SHA256 (KDE/release-service/20.12.3/kdegraphics-thumbnailers-20.12.3.tar.xz) = dd598626c007145d20c4d32b648ee00bf9948d811dcd3d848df76c1195347f3c -SIZE (KDE/release-service/20.12.3/kdegraphics-thumbnailers-20.12.3.tar.xz) = 47048 +TIMESTAMP = 1618579161 +SHA256 (KDE/release-service/21.04.0/kdegraphics-thumbnailers-21.04.0.tar.xz) = a02c9a94ff6d5dfd0d5c3b8074aee70e10cef4e08541283057effe33d425ea79 +SIZE (KDE/release-service/21.04.0/kdegraphics-thumbnailers-21.04.0.tar.xz) = 46964 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 4c2aebc33964..16055c4aaec1 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706271 -SHA256 (KDE/release-service/20.12.3/kimagemapeditor-20.12.3.tar.xz) = 39df7b9f11ba0b4c84dbe5c9c0611a23a8f83f30dd1c2782c08b4ce89eafe297 -SIZE (KDE/release-service/20.12.3/kimagemapeditor-20.12.3.tar.xz) = 1079008 +TIMESTAMP = 1618579162 +SHA256 (KDE/release-service/21.04.0/kimagemapeditor-21.04.0.tar.xz) = fa18980ba3c43d8f98e077a3f178528508ecaa299c3b2ce2d381943217087eb8 +SIZE (KDE/release-service/21.04.0/kimagemapeditor-21.04.0.tar.xz) = 1079572 diff --git a/graphics/kimagemapeditor/pkg-plist b/graphics/kimagemapeditor/pkg-plist index 6c2891bddb24..665e166aac52 100644 --- a/graphics/kimagemapeditor/pkg-plist +++ b/graphics/kimagemapeditor/pkg-plist @@ -1,75 +1,75 @@ bin/kimagemapeditor share/qlogging-categories5/kimagemapeditor.categories -%%QT_PLUGINDIR%%/kimagemapeditor.so +%%QT_PLUGINDIR%%/kf5/parts/kimagemapeditorpart.so share/applications/org.kde.kimagemapeditor.desktop share/icons/hicolor/128x128/apps/kimagemapeditor.png share/icons/hicolor/16x16/apps/kimagemapeditor.png share/icons/hicolor/22x22/actions/addpoint.png share/icons/hicolor/22x22/actions/arrow.png share/icons/hicolor/22x22/actions/circle.png share/icons/hicolor/22x22/actions/circle2.png share/icons/hicolor/22x22/actions/freehand.png share/icons/hicolor/22x22/actions/lower.png share/icons/hicolor/22x22/actions/polygon.png share/icons/hicolor/22x22/actions/raise.png share/icons/hicolor/22x22/actions/rectangle.png share/icons/hicolor/22x22/actions/removepoint.png share/icons/hicolor/22x22/apps/kimagemapeditor.png share/icons/hicolor/32x32/apps/kimagemapeditor.png share/icons/hicolor/48x48/apps/kimagemapeditor.png share/icons/hicolor/64x64/apps/kimagemapeditor.png share/icons/hicolor/scalable/apps/kimagemapeditor.svgz %%DATADIR%%/addpointcursor.png %%DATADIR%%/freehandcursor.png %%DATADIR%%/polygoncursor.png %%DATADIR%%/removepointcursor.png share/kservices5/kimagemapeditorpart.desktop share/locale/ar/LC_MESSAGES/kimagemapeditor.mo share/locale/bg/LC_MESSAGES/kimagemapeditor.mo share/locale/bs/LC_MESSAGES/kimagemapeditor.mo share/locale/ca/LC_MESSAGES/kimagemapeditor.mo share/locale/ca@valencia/LC_MESSAGES/kimagemapeditor.mo share/locale/cs/LC_MESSAGES/kimagemapeditor.mo share/locale/da/LC_MESSAGES/kimagemapeditor.mo share/locale/de/LC_MESSAGES/kimagemapeditor.mo share/locale/el/LC_MESSAGES/kimagemapeditor.mo share/locale/en_GB/LC_MESSAGES/kimagemapeditor.mo share/locale/eo/LC_MESSAGES/kimagemapeditor.mo share/locale/es/LC_MESSAGES/kimagemapeditor.mo share/locale/et/LC_MESSAGES/kimagemapeditor.mo share/locale/eu/LC_MESSAGES/kimagemapeditor.mo share/locale/fa/LC_MESSAGES/kimagemapeditor.mo share/locale/fi/LC_MESSAGES/kimagemapeditor.mo share/locale/fr/LC_MESSAGES/kimagemapeditor.mo share/locale/ga/LC_MESSAGES/kimagemapeditor.mo share/locale/gl/LC_MESSAGES/kimagemapeditor.mo share/locale/hi/LC_MESSAGES/kimagemapeditor.mo share/locale/hr/LC_MESSAGES/kimagemapeditor.mo share/locale/hu/LC_MESSAGES/kimagemapeditor.mo share/locale/it/LC_MESSAGES/kimagemapeditor.mo share/locale/ja/LC_MESSAGES/kimagemapeditor.mo share/locale/kk/LC_MESSAGES/kimagemapeditor.mo share/locale/km/LC_MESSAGES/kimagemapeditor.mo share/locale/ko/LC_MESSAGES/kimagemapeditor.mo share/locale/lt/LC_MESSAGES/kimagemapeditor.mo share/locale/lv/LC_MESSAGES/kimagemapeditor.mo share/locale/mr/LC_MESSAGES/kimagemapeditor.mo share/locale/nb/LC_MESSAGES/kimagemapeditor.mo share/locale/nds/LC_MESSAGES/kimagemapeditor.mo share/locale/nl/LC_MESSAGES/kimagemapeditor.mo share/locale/nn/LC_MESSAGES/kimagemapeditor.mo share/locale/pa/LC_MESSAGES/kimagemapeditor.mo share/locale/pl/LC_MESSAGES/kimagemapeditor.mo share/locale/pt/LC_MESSAGES/kimagemapeditor.mo share/locale/pt_BR/LC_MESSAGES/kimagemapeditor.mo share/locale/ro/LC_MESSAGES/kimagemapeditor.mo share/locale/ru/LC_MESSAGES/kimagemapeditor.mo share/locale/sk/LC_MESSAGES/kimagemapeditor.mo share/locale/sl/LC_MESSAGES/kimagemapeditor.mo share/locale/sv/LC_MESSAGES/kimagemapeditor.mo share/locale/tr/LC_MESSAGES/kimagemapeditor.mo share/locale/ug/LC_MESSAGES/kimagemapeditor.mo share/locale/uk/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_CN/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_TW/LC_MESSAGES/kimagemapeditor.mo share/metainfo/org.kde.kimagemapeditor.appdata.xml diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index 2dea6c6ab5e7..f2eaafb29466 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706269 -SHA256 (KDE/release-service/20.12.3/kipi-plugins-20.12.3.tar.xz) = 16be32705e6056de9350d3713ab6b20659a236db1356eb32cd6cdd19ac71c071 -SIZE (KDE/release-service/20.12.3/kipi-plugins-20.12.3.tar.xz) = 1644852 +TIMESTAMP = 1618579163 +SHA256 (KDE/release-service/21.04.0/kipi-plugins-21.04.0.tar.xz) = 8e3fdb00dc5a6d9b0fe3cfc75a942017d4131a6d3304213ca5fe1ee202f746f4 +SIZE (KDE/release-service/21.04.0/kipi-plugins-21.04.0.tar.xz) = 1650804 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 78efa7878d37..46d38c042bf3 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706275 -SHA256 (KDE/release-service/20.12.3/kolourpaint-20.12.3.tar.xz) = 2f947803698f8169891191cb6ff841d3e991f9ae7157469cf01f4af594bde93e -SIZE (KDE/release-service/20.12.3/kolourpaint-20.12.3.tar.xz) = 5686472 +TIMESTAMP = 1618579164 +SHA256 (KDE/release-service/21.04.0/kolourpaint-21.04.0.tar.xz) = 7c0fe6886e3432e29b986d9b7dd31da45dea35c566bc52b14a474c68b49ae176 +SIZE (KDE/release-service/21.04.0/kolourpaint-21.04.0.tar.xz) = 5691016 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 9b5072af7b38..2a9977d6d656 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706267 -SHA256 (KDE/release-service/20.12.3/kontrast-20.12.3.tar.xz) = 0de9244d82516c6f6fe60bc23582278243cedd4de64c6ffc9e2a09e94c0b028b -SIZE (KDE/release-service/20.12.3/kontrast-20.12.3.tar.xz) = 122468 +TIMESTAMP = 1618579165 +SHA256 (KDE/release-service/21.04.0/kontrast-21.04.0.tar.xz) = d5d55772a0750edc3b607af2954043ca2410276d0f7ddac2fe31df4415ac53ae +SIZE (KDE/release-service/21.04.0/kontrast-21.04.0.tar.xz) = 122760 diff --git a/graphics/kontrast/pkg-plist b/graphics/kontrast/pkg-plist index c855ed84afaf..071819c6d02e 100644 --- a/graphics/kontrast/pkg-plist +++ b/graphics/kontrast/pkg-plist @@ -1,28 +1,29 @@ bin/kontrast share/applications/org.kde.kontrast.desktop share/icons/hicolor/scalable/apps/org.kde.kontrast.svg share/locale/ca/LC_MESSAGES/kontrast.mo share/locale/ca@valencia/LC_MESSAGES/kontrast.mo share/locale/cs/LC_MESSAGES/kontrast.mo share/locale/da/LC_MESSAGES/kontrast.mo +share/locale/de/LC_MESSAGES/kontrast.mo share/locale/el/LC_MESSAGES/kontrast.mo share/locale/en_GB/LC_MESSAGES/kontrast.mo share/locale/es/LC_MESSAGES/kontrast.mo share/locale/eu/LC_MESSAGES/kontrast.mo share/locale/fi/LC_MESSAGES/kontrast.mo share/locale/fr/LC_MESSAGES/kontrast.mo share/locale/it/LC_MESSAGES/kontrast.mo share/locale/ko/LC_MESSAGES/kontrast.mo share/locale/lt/LC_MESSAGES/kontrast.mo share/locale/nl/LC_MESSAGES/kontrast.mo share/locale/nn/LC_MESSAGES/kontrast.mo share/locale/pl/LC_MESSAGES/kontrast.mo share/locale/pt/LC_MESSAGES/kontrast.mo share/locale/pt_BR/LC_MESSAGES/kontrast.mo share/locale/ru/LC_MESSAGES/kontrast.mo share/locale/sk/LC_MESSAGES/kontrast.mo share/locale/sl/LC_MESSAGES/kontrast.mo share/locale/sv/LC_MESSAGES/kontrast.mo share/locale/uk/LC_MESSAGES/kontrast.mo share/locale/zh_CN/LC_MESSAGES/kontrast.mo share/metainfo/org.kde.kontrast.appdata.xml diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 7c56cdd9d7b4..03cc188e0cae 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706266 -SHA256 (KDE/release-service/20.12.3/kqtquickcharts-20.12.3.tar.xz) = b274baf4532a89cae9490d65069f57c105b17ddd39e1186171c89ecb14128cc5 -SIZE (KDE/release-service/20.12.3/kqtquickcharts-20.12.3.tar.xz) = 30080 +TIMESTAMP = 1618579165 +SHA256 (KDE/release-service/21.04.0/kqtquickcharts-21.04.0.tar.xz) = 9a1f95fa26c43c1daaf22a2219a115dd59e9bbea20f20a8d1efc8dd475189c26 +SIZE (KDE/release-service/21.04.0/kqtquickcharts-21.04.0.tar.xz) = 29936 diff --git a/graphics/libkdcraw/Makefile b/graphics/libkdcraw/Makefile index dfd999b025d6..84fd3f7eb555 100644 --- a/graphics/libkdcraw/Makefile +++ b/graphics/libkdcraw/Makefile @@ -1,24 +1,23 @@ PORTNAME= libkdcraw DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= LibRaw interface for KDE LICENSE= GPLv2+ -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libjasper.so:graphics/jasper \ liblcms.so:graphics/lcms \ libxml2.so:textproc/libxml2 \ libraw.so:graphics/libraw USES= cmake compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ buildtools_build qmake_build USE_LDCONFIG= yes CMAKE_ARGS= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True .include diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index d4220f52dca9..ddadd3bb60e5 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706268 -SHA256 (KDE/release-service/20.12.3/libkdcraw-20.12.3.tar.xz) = 4f12042ea57547cf03d5c82c5adb31b8df3c6b7c6b0fd4eb195885f109c88def -SIZE (KDE/release-service/20.12.3/libkdcraw-20.12.3.tar.xz) = 41956 +TIMESTAMP = 1618579166 +SHA256 (KDE/release-service/21.04.0/libkdcraw-21.04.0.tar.xz) = 4bbd654879c629b08ba6d30d4bf5046b4a999afcb67799068bc0a1e583a926c7 +SIZE (KDE/release-service/21.04.0/libkdcraw-21.04.0.tar.xz) = 37204 diff --git a/graphics/libkdcraw/pkg-plist b/graphics/libkdcraw/pkg-plist index f798c8074dce..e7639437a71f 100644 --- a/graphics/libkdcraw/pkg-plist +++ b/graphics/libkdcraw/pkg-plist @@ -1,17 +1,18 @@ include/KF5/KDCRAW/KDCRAW/DcrawInfoContainer include/KF5/KDCRAW/KDCRAW/KDcraw include/KF5/KDCRAW/KDCRAW/RawDecodingSettings include/KF5/KDCRAW/KDCRAW/RawFiles include/KF5/KDCRAW/kdcraw/dcrawinfocontainer.h include/KF5/KDCRAW/kdcraw/kdcraw.h include/KF5/KDCRAW/kdcraw/libkdcraw_export.h include/KF5/KDCRAW/kdcraw/rawdecodingsettings.h include/KF5/KDCRAW/kdcraw/rawfiles.h include/KF5/libkdcraw_version.h lib/cmake/KF5KDcraw/KF5KDcrawConfig.cmake lib/cmake/KF5KDcraw/KF5KDcrawConfigVersion.cmake lib/cmake/KF5KDcraw/KF5KDcrawTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KDcraw/KF5KDcrawTargets.cmake lib/libKF5KDcraw.so lib/libKF5KDcraw.so.5 lib/libKF5KDcraw.so.5.0.0 +share/qlogging-categories5/libkdcraw.categories diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index ccd00f03c0c9..af7ea3383049 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706276 -SHA256 (KDE/release-service/20.12.3/libkexiv2-20.12.3.tar.xz) = b762730416f8c9db6075695222027c0c37cec8c8defe0c5723af570fa49021e4 -SIZE (KDE/release-service/20.12.3/libkexiv2-20.12.3.tar.xz) = 64724 +TIMESTAMP = 1618579167 +SHA256 (KDE/release-service/21.04.0/libkexiv2-21.04.0.tar.xz) = 39dfb5d67ed22175972fb179c7b3ee5b18be34b821c3266b52cb1f82ef8a303f +SIZE (KDE/release-service/21.04.0/libkexiv2-21.04.0.tar.xz) = 60276 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 0e5733b0f199..4b852ebd7115 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706276 -SHA256 (KDE/release-service/20.12.3/libkipi-20.12.3.tar.xz) = bb6fff214e3a74e17cb7b49f5e9a92252127ec6cb65e6832da3ac789c7bd14a8 -SIZE (KDE/release-service/20.12.3/libkipi-20.12.3.tar.xz) = 103628 +TIMESTAMP = 1618579168 +SHA256 (KDE/release-service/21.04.0/libkipi-21.04.0.tar.xz) = 0b471aa97a396f4e8f596b14be549618d8fe96925d5469ab402efd80a15b683e +SIZE (KDE/release-service/21.04.0/libkipi-21.04.0.tar.xz) = 103432 diff --git a/graphics/libksane/Makefile b/graphics/libksane/Makefile index 1d797ac8df30..e6973da65a1a 100644 --- a/graphics/libksane/Makefile +++ b/graphics/libksane/Makefile @@ -1,18 +1,21 @@ PORTNAME= libksane DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= SANE library interface for KDE LIB_DEPENDS= libsane.so:graphics/sane-backends USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= config ecm i18n sonnet textwidgets wallet widgetsaddons USE_QT= core gui testlib widgets \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS +# Override shared library version +KDE_APPLICATIONS_SHLIB_VER= "${KDE_APPLICATIONS_VERSION}" + .include diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 3c9e93b77ef9..7ca841bcf634 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706272 -SHA256 (KDE/release-service/20.12.3/libksane-20.12.3.tar.xz) = 46c558989930c0aca16bc8ec1b6f0a963076fa9923b6e30a4d0129c1dd8f4b0b -SIZE (KDE/release-service/20.12.3/libksane-20.12.3.tar.xz) = 145464 +TIMESTAMP = 1618579169 +SHA256 (KDE/release-service/21.04.0/libksane-21.04.0.tar.xz) = c30c637e048ee71cb1331cd402197628ca44822db09f1735da1ba7048388459d +SIZE (KDE/release-service/21.04.0/libksane-21.04.0.tar.xz) = 143776 diff --git a/graphics/libksane/pkg-plist b/graphics/libksane/pkg-plist index 7db3c1cfee0f..d88ab75e0c1a 100644 --- a/graphics/libksane/pkg-plist +++ b/graphics/libksane/pkg-plist @@ -1,66 +1,66 @@ include/KF5/KSane/KSaneWidget include/KF5/KSane/ksane_export.h include/KF5/KSane/ksanewidget.h include/KF5/ksane_version.h lib/cmake/KF5Sane/KF5SaneConfig.cmake lib/cmake/KF5Sane/KF5SaneConfigVersion.cmake lib/cmake/KF5Sane/KF5SaneTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Sane/KF5SaneTargets.cmake lib/libKF5Sane.so lib/libKF5Sane.so.5 -lib/libKF5Sane.so.5.55.0 +lib/libKF5Sane.so.%%KDE_APPLICATIONS_VERSION%% share/icons/hicolor/16x16/actions/black-white.png share/icons/hicolor/16x16/actions/color.png share/icons/hicolor/16x16/actions/gray-scale.png share/locale/ar/LC_MESSAGES/libksane.mo share/locale/bg/LC_MESSAGES/libksane.mo share/locale/bs/LC_MESSAGES/libksane.mo share/locale/ca/LC_MESSAGES/libksane.mo share/locale/ca@valencia/LC_MESSAGES/libksane.mo share/locale/cs/LC_MESSAGES/libksane.mo share/locale/da/LC_MESSAGES/libksane.mo share/locale/de/LC_MESSAGES/libksane.mo share/locale/el/LC_MESSAGES/libksane.mo share/locale/en_GB/LC_MESSAGES/libksane.mo share/locale/eo/LC_MESSAGES/libksane.mo share/locale/es/LC_MESSAGES/libksane.mo share/locale/et/LC_MESSAGES/libksane.mo share/locale/eu/LC_MESSAGES/libksane.mo share/locale/fi/LC_MESSAGES/libksane.mo share/locale/fr/LC_MESSAGES/libksane.mo share/locale/ga/LC_MESSAGES/libksane.mo share/locale/gl/LC_MESSAGES/libksane.mo share/locale/hi/LC_MESSAGES/libksane.mo share/locale/hr/LC_MESSAGES/libksane.mo share/locale/hu/LC_MESSAGES/libksane.mo share/locale/ia/LC_MESSAGES/libksane.mo share/locale/id/LC_MESSAGES/libksane.mo share/locale/is/LC_MESSAGES/libksane.mo share/locale/it/LC_MESSAGES/libksane.mo share/locale/ja/LC_MESSAGES/libksane.mo share/locale/kk/LC_MESSAGES/libksane.mo share/locale/km/LC_MESSAGES/libksane.mo share/locale/ko/LC_MESSAGES/libksane.mo share/locale/lt/LC_MESSAGES/libksane.mo share/locale/lv/LC_MESSAGES/libksane.mo share/locale/ml/LC_MESSAGES/libksane.mo share/locale/mr/LC_MESSAGES/libksane.mo share/locale/nb/LC_MESSAGES/libksane.mo share/locale/nds/LC_MESSAGES/libksane.mo share/locale/nl/LC_MESSAGES/libksane.mo share/locale/nn/LC_MESSAGES/libksane.mo share/locale/pa/LC_MESSAGES/libksane.mo share/locale/pl/LC_MESSAGES/libksane.mo share/locale/pt/LC_MESSAGES/libksane.mo share/locale/pt_BR/LC_MESSAGES/libksane.mo share/locale/ro/LC_MESSAGES/libksane.mo share/locale/ru/LC_MESSAGES/libksane.mo share/locale/sk/LC_MESSAGES/libksane.mo share/locale/sl/LC_MESSAGES/libksane.mo share/locale/sv/LC_MESSAGES/libksane.mo share/locale/tr/LC_MESSAGES/libksane.mo share/locale/ug/LC_MESSAGES/libksane.mo share/locale/uk/LC_MESSAGES/libksane.mo share/locale/wa/LC_MESSAGES/libksane.mo share/locale/zh_CN/LC_MESSAGES/libksane.mo share/locale/zh_TW/LC_MESSAGES/libksane.mo diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index f47069174ad4..581a840d2bd0 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706265 -SHA256 (KDE/release-service/20.12.3/okular-20.12.3.tar.xz) = ae570fcd2b35cc9c061c1c55b6f8de256358f0f5dd8d0a8283f13eae006b73dc -SIZE (KDE/release-service/20.12.3/okular-20.12.3.tar.xz) = 7884780 +TIMESTAMP = 1618579170 +SHA256 (KDE/release-service/21.04.0/okular-21.04.0.tar.xz) = 1ee7c4c19a88ccac8351b150a7b4fd601db83634a7d361b10e6324dfe9cb1b50 +SIZE (KDE/release-service/21.04.0/okular-21.04.0.tar.xz) = 7936552 diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index a2b25a98e394..63f909d3bc65 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706273 -SHA256 (KDE/release-service/20.12.3/spectacle-20.12.3.tar.xz) = 4ce20ea1a81be1ec81c3917fc12e3c904cd95e58d559d56bd3d3bd2a15e149c0 -SIZE (KDE/release-service/20.12.3/spectacle-20.12.3.tar.xz) = 1170540 +TIMESTAMP = 1618579170 +SHA256 (KDE/release-service/21.04.0/spectacle-21.04.0.tar.xz) = e08a9820f9b53efbefaceaf00a477b95370bfba9c620e371a19e1756cf4d0e33 +SIZE (KDE/release-service/21.04.0/spectacle-21.04.0.tar.xz) = 1168056 diff --git a/graphics/spectacle/pkg-plist b/graphics/spectacle/pkg-plist index e7b53413d62f..91ac81617a66 100644 --- a/graphics/spectacle/pkg-plist +++ b/graphics/spectacle/pkg-plist @@ -1,56 +1,64 @@ bin/spectacle lib/kconf_update_bin/spectacle-migrate-shortcuts lib/systemd/user/app-org.kde.spectacle.service +man/ca/man1/spectacle.1.gz +man/de/man1/spectacle.1.gz +man/es/man1/spectacle.1.gz +man/it/man1/spectacle.1.gz +man/man1/spectacle.1.gz +man/nl/man1/spectacle.1.gz +man/sv/man1/spectacle.1.gz +man/uk/man1/spectacle.1.gz share/qlogging-categories5/spectacle.categories share/applications/org.kde.spectacle.desktop share/dbus-1/interfaces/org.kde.Spectacle.xml share/dbus-1/services/org.kde.Spectacle.service share/icons/hicolor/16x16/apps/spectacle.png share/icons/hicolor/22x22/apps/spectacle.png share/icons/hicolor/32x32/apps/spectacle.png share/icons/hicolor/48x48/apps/spectacle.png share/icons/hicolor/scalable/apps/spectacle.svgz share/kconf_update/spectacle_newConfig.upd share/kconf_update/spectacle_shortcuts.upd share/kglobalaccel/org.kde.spectacle.desktop share/knotifications5/spectacle.notifyrc share/locale/ar/LC_MESSAGES/spectacle.mo share/locale/bg/LC_MESSAGES/spectacle.mo share/locale/ca/LC_MESSAGES/spectacle.mo share/locale/ca@valencia/LC_MESSAGES/spectacle.mo share/locale/cs/LC_MESSAGES/spectacle.mo share/locale/da/LC_MESSAGES/spectacle.mo share/locale/de/LC_MESSAGES/spectacle.mo share/locale/el/LC_MESSAGES/spectacle.mo share/locale/en_GB/LC_MESSAGES/spectacle.mo share/locale/es/LC_MESSAGES/spectacle.mo share/locale/et/LC_MESSAGES/spectacle.mo share/locale/eu/LC_MESSAGES/spectacle.mo share/locale/fi/LC_MESSAGES/spectacle.mo share/locale/fr/LC_MESSAGES/spectacle.mo share/locale/gl/LC_MESSAGES/spectacle.mo share/locale/he/LC_MESSAGES/spectacle.mo share/locale/hu/LC_MESSAGES/spectacle.mo share/locale/ia/LC_MESSAGES/spectacle.mo share/locale/id/LC_MESSAGES/spectacle.mo share/locale/it/LC_MESSAGES/spectacle.mo share/locale/ja/LC_MESSAGES/spectacle.mo share/locale/ko/LC_MESSAGES/spectacle.mo share/locale/lt/LC_MESSAGES/spectacle.mo share/locale/ml/LC_MESSAGES/spectacle.mo share/locale/nl/LC_MESSAGES/spectacle.mo share/locale/nn/LC_MESSAGES/spectacle.mo share/locale/pl/LC_MESSAGES/spectacle.mo share/locale/pt/LC_MESSAGES/spectacle.mo share/locale/pt_BR/LC_MESSAGES/spectacle.mo share/locale/ro/LC_MESSAGES/spectacle.mo share/locale/ru/LC_MESSAGES/spectacle.mo share/locale/sk/LC_MESSAGES/spectacle.mo share/locale/sl/LC_MESSAGES/spectacle.mo share/locale/sr/LC_MESSAGES/spectacle.mo share/locale/sv/LC_MESSAGES/spectacle.mo share/locale/tr/LC_MESSAGES/spectacle.mo share/locale/uk/LC_MESSAGES/spectacle.mo share/locale/zh_CN/LC_MESSAGES/spectacle.mo share/locale/zh_TW/LC_MESSAGES/spectacle.mo share/metainfo/org.kde.spectacle.appdata.xml diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 95b35fbcc090..0a45fef988b5 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706277 -SHA256 (KDE/release-service/20.12.3/konversation-20.12.3.tar.xz) = f80c369df893408b713ff39d94821f2f298303478692bf58bf25b7d860a49633 -SIZE (KDE/release-service/20.12.3/konversation-20.12.3.tar.xz) = 4242136 +TIMESTAMP = 1618579171 +SHA256 (KDE/release-service/21.04.0/konversation-21.04.0.tar.xz) = c79ea1c0032b439f9fe2b1016877005a230319cbf8ee1d8f33b28bc715e004bb +SIZE (KDE/release-service/21.04.0/konversation-21.04.0.tar.xz) = 4230300 diff --git a/irc/konversation/pkg-plist b/irc/konversation/pkg-plist index 159d3dcb4656..0407b33537dd 100644 --- a/irc/konversation/pkg-plist +++ b/irc/konversation/pkg-plist @@ -1,164 +1,164 @@ bin/konversation share/applications/org.kde.konversation.desktop share/icons/hicolor/128x128/actions/konv_message.png share/icons/hicolor/128x128/apps/konversation.png share/icons/hicolor/16x16/actions/konv_message.png share/icons/hicolor/16x16/apps/konversation.png share/icons/hicolor/22x22/actions/konv_message.png share/icons/hicolor/22x22/apps/konversation.png share/icons/hicolor/32x32/actions/konv_message.png share/icons/hicolor/32x32/apps/konversation.png share/icons/hicolor/48x48/actions/konv_message.png share/icons/hicolor/48x48/apps/konversation.png share/icons/hicolor/64x64/actions/konv_message.png share/icons/hicolor/64x64/apps/konversation.png share/kconf_update/konversation-0.19-appearance.pl share/kconf_update/konversation-0.19-colorcodes.pl share/kconf_update/konversation-0.19-colors.pl share/kconf_update/konversation-0.19-custombrowser.pl share/kconf_update/konversation-0.19-notifylists.pl share/kconf_update/konversation-0.19-sortorder.pl share/kconf_update/konversation-0.19-tabplacement.pl -share/kconf_update/konversation-0.%%KDE_APPLICATIONS_VERSION_SHORT%%-customfonts.pl -share/kconf_update/konversation-0.%%KDE_APPLICATIONS_VERSION_SHORT%%-quickbuttons.pl +share/kconf_update/konversation-0.20-customfonts.pl +share/kconf_update/konversation-0.20-quickbuttons.pl share/kconf_update/konversation.upd share/knotifications5/konversation.notifyrc share/knsrcfiles/konversation_nicklist_theme.knsrc %%DATADIR%%/scripting_support/python/konversation/__init__.py %%DATADIR%%/scripting_support/python/konversation/dbus.py %%DATADIR%%/scripting_support/python/konversation/i18n.py %%DATADIR%%/scripts/bug %%DATADIR%%/scripts/cmd %%DATADIR%%/scripts/fortune %%DATADIR%%/scripts/fortunes.dat %%DATADIR%%/scripts/gauge %%DATADIR%%/scripts/media %%DATADIR%%/scripts/sayclip %%DATADIR%%/scripts/sysinfo %%DATADIR%%/scripts/tinyurl %%DATADIR%%/scripts/uptime %%DATADIR%%/themes/alternative/index.desktop %%DATADIR%%/themes/alternative/irc_admin.png %%DATADIR%%/themes/alternative/irc_away.png %%DATADIR%%/themes/alternative/irc_halfop.png %%DATADIR%%/themes/alternative/irc_normal.png %%DATADIR%%/themes/alternative/irc_op.png %%DATADIR%%/themes/alternative/irc_owner.png %%DATADIR%%/themes/alternative/irc_voice.png %%DATADIR%%/themes/christmas/index.desktop %%DATADIR%%/themes/christmas/irc_admin.png %%DATADIR%%/themes/christmas/irc_away.png %%DATADIR%%/themes/christmas/irc_halfop.png %%DATADIR%%/themes/christmas/irc_normal.png %%DATADIR%%/themes/christmas/irc_op.png %%DATADIR%%/themes/christmas/irc_owner.png %%DATADIR%%/themes/christmas/irc_voice.png %%DATADIR%%/themes/classic/index.desktop %%DATADIR%%/themes/classic/irc_admin.png %%DATADIR%%/themes/classic/irc_away.png %%DATADIR%%/themes/classic/irc_halfop.png %%DATADIR%%/themes/classic/irc_normal.png %%DATADIR%%/themes/classic/irc_op.png %%DATADIR%%/themes/classic/irc_owner.png %%DATADIR%%/themes/classic/irc_voice.png %%DATADIR%%/themes/default-dark/index.desktop %%DATADIR%%/themes/default-dark/irc_admin.svg %%DATADIR%%/themes/default-dark/irc_away.svg %%DATADIR%%/themes/default-dark/irc_away_stacked.svg %%DATADIR%%/themes/default-dark/irc_halfop.svg %%DATADIR%%/themes/default-dark/irc_normal.svg %%DATADIR%%/themes/default-dark/irc_op.svg %%DATADIR%%/themes/default-dark/irc_owner.svg %%DATADIR%%/themes/default-dark/irc_voice.svg %%DATADIR%%/themes/default/index.desktop %%DATADIR%%/themes/default/irc_admin.svg %%DATADIR%%/themes/default/irc_away.svg %%DATADIR%%/themes/default/irc_away_stacked.svg %%DATADIR%%/themes/default/irc_halfop.svg %%DATADIR%%/themes/default/irc_normal.svg %%DATADIR%%/themes/default/irc_op.svg %%DATADIR%%/themes/default/irc_owner.svg %%DATADIR%%/themes/default/irc_voice.svg %%DATADIR%%/themes/oxygen/index.desktop %%DATADIR%%/themes/oxygen/irc_admin.png %%DATADIR%%/themes/oxygen/irc_away.png %%DATADIR%%/themes/oxygen/irc_halfop.png %%DATADIR%%/themes/oxygen/irc_normal.png %%DATADIR%%/themes/oxygen/irc_op.png %%DATADIR%%/themes/oxygen/irc_owner.png %%DATADIR%%/themes/oxygen/irc_voice.png %%DATADIR%%/themes/simplistic/index.desktop %%DATADIR%%/themes/simplistic/irc_admin.png %%DATADIR%%/themes/simplistic/irc_away.png %%DATADIR%%/themes/simplistic/irc_halfop.png %%DATADIR%%/themes/simplistic/irc_normal.png %%DATADIR%%/themes/simplistic/irc_op.png %%DATADIR%%/themes/simplistic/irc_owner.png %%DATADIR%%/themes/simplistic/irc_voice.png %%DATADIR%%/themes/smiling/index.desktop %%DATADIR%%/themes/smiling/irc_admin.png %%DATADIR%%/themes/smiling/irc_away.png %%DATADIR%%/themes/smiling/irc_halfop.png %%DATADIR%%/themes/smiling/irc_normal.png %%DATADIR%%/themes/smiling/irc_op.png %%DATADIR%%/themes/smiling/irc_owner.png %%DATADIR%%/themes/smiling/irc_voice.png %%DATADIR%%/themes/square/index.desktop %%DATADIR%%/themes/square/irc_admin.png %%DATADIR%%/themes/square/irc_away.png %%DATADIR%%/themes/square/irc_halfop.png %%DATADIR%%/themes/square/irc_normal.png %%DATADIR%%/themes/square/irc_op.png %%DATADIR%%/themes/square/irc_owner.png %%DATADIR%%/themes/square/irc_voice.png share/locale/ar/LC_MESSAGES/konversation.mo share/locale/bg/LC_MESSAGES/konversation.mo share/locale/bs/LC_MESSAGES/konversation.mo share/locale/ca/LC_MESSAGES/konversation.mo share/locale/ca@valencia/LC_MESSAGES/konversation.mo share/locale/cs/LC_MESSAGES/konversation.mo share/locale/da/LC_MESSAGES/konversation.mo share/locale/de/LC_MESSAGES/konversation.mo share/locale/el/LC_MESSAGES/konversation.mo share/locale/en_GB/LC_MESSAGES/konversation.mo share/locale/eo/LC_MESSAGES/konversation.mo share/locale/es/LC_MESSAGES/konversation.mo share/locale/et/LC_MESSAGES/konversation.mo share/locale/fi/LC_MESSAGES/konversation.mo share/locale/fr/LC_MESSAGES/konversation.mo share/locale/ga/LC_MESSAGES/konversation.mo share/locale/gl/LC_MESSAGES/konversation.mo share/locale/he/LC_MESSAGES/konversation.mo share/locale/hi/LC_MESSAGES/konversation.mo share/locale/hr/LC_MESSAGES/konversation.mo share/locale/hu/LC_MESSAGES/konversation.mo share/locale/ia/LC_MESSAGES/konversation.mo share/locale/is/LC_MESSAGES/konversation.mo share/locale/it/LC_MESSAGES/konversation.mo share/locale/ja/LC_MESSAGES/konversation.mo share/locale/kk/LC_MESSAGES/konversation.mo share/locale/km/LC_MESSAGES/konversation.mo share/locale/ko/LC_MESSAGES/konversation.mo share/locale/lt/LC_MESSAGES/konversation.mo share/locale/mr/LC_MESSAGES/konversation.mo share/locale/nb/LC_MESSAGES/konversation.mo share/locale/nds/LC_MESSAGES/konversation.mo share/locale/nl/LC_MESSAGES/konversation.mo share/locale/nn/LC_MESSAGES/konversation.mo share/locale/pa/LC_MESSAGES/konversation.mo share/locale/pl/LC_MESSAGES/konversation.mo share/locale/pt/LC_MESSAGES/konversation.mo share/locale/pt_BR/LC_MESSAGES/konversation.mo share/locale/ro/LC_MESSAGES/konversation.mo share/locale/ru/LC_MESSAGES/konversation.mo share/locale/sk/LC_MESSAGES/konversation.mo share/locale/sl/LC_MESSAGES/konversation.mo share/locale/sr/LC_MESSAGES/konversation.mo share/locale/sv/LC_MESSAGES/konversation.mo share/locale/tr/LC_MESSAGES/konversation.mo share/locale/ug/LC_MESSAGES/konversation.mo share/locale/uk/LC_MESSAGES/konversation.mo share/locale/zh_CN/LC_MESSAGES/konversation.mo share/locale/zh_TW/LC_MESSAGES/konversation.mo share/metainfo/org.kde.konversation.appdata.xml share/qlogging-categories5/konversation.categories diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 9fbc429e0cd7..aea477b04a41 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706278 -SHA256 (KDE/release-service/20.12.3/kiten-20.12.3.tar.xz) = d842809be188da86bb8877c7555af249b20e4747301602737132ce52f36a4e7a -SIZE (KDE/release-service/20.12.3/kiten-20.12.3.tar.xz) = 11298492 +TIMESTAMP = 1618579172 +SHA256 (KDE/release-service/21.04.0/kiten-21.04.0.tar.xz) = 440dbf4b75de2cc682377a55b0dee37063789dfa256bcbff874212797039786f +SIZE (KDE/release-service/21.04.0/kiten-21.04.0.tar.xz) = 11300440 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index e15e70b170ee..96fb3e88069e 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706279 -SHA256 (KDE/release-service/20.12.3/kross-interpreters-20.12.3.tar.xz) = 931dfb7826b0176a2c02a243f5f823eb9754c917a3cc0f1ac4a3375b017d03e7 -SIZE (KDE/release-service/20.12.3/kross-interpreters-20.12.3.tar.xz) = 151292 +TIMESTAMP = 1618579173 +SHA256 (KDE/release-service/21.04.0/kross-interpreters-21.04.0.tar.xz) = 5c765c074843bac36dedb8a16067c748c9af1e0e50f951c53c63b36b6a7d0388 +SIZE (KDE/release-service/21.04.0/kross-interpreters-21.04.0.tar.xz) = 151572 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index add54ee99c7d..1047c733e56a 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706279 -SHA256 (KDE/release-service/20.12.3/kturtle-20.12.3.tar.xz) = e6bedbae45faf41158b2dab80229c69f8490698cb35afcb3507b9db2668ab89e -SIZE (KDE/release-service/20.12.3/kturtle-20.12.3.tar.xz) = 1837380 +TIMESTAMP = 1618579174 +SHA256 (KDE/release-service/21.04.0/kturtle-21.04.0.tar.xz) = 8d11d1999d0d7617189c0e47d6077ddd508922f5da0fa1f21f2da8e328cd0dd1 +SIZE (KDE/release-service/21.04.0/kturtle-21.04.0.tar.xz) = 1838548 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index cb8d313f4b0d..12d7710a2d47 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706280 -SHA256 (KDE/release-service/20.12.3/analitza-20.12.3.tar.xz) = 00a0be2810f6e6637b1b64be6abe7c552bc5603f7ef7ee4f33b662cadab7f5a0 -SIZE (KDE/release-service/20.12.3/analitza-20.12.3.tar.xz) = 341640 +TIMESTAMP = 1618579175 +SHA256 (KDE/release-service/21.04.0/analitza-21.04.0.tar.xz) = 11c839454b1393ca48cc7af8872f4bbf9cae8e7c971816985bba8f701b739abc +SIZE (KDE/release-service/21.04.0/analitza-21.04.0.tar.xz) = 342048 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 08233bd69159..ec7d1d98ac2e 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706281 -SHA256 (KDE/release-service/20.12.3/cantor-20.12.3.tar.xz) = 4b4689d301963959fa112abfd3447ecdc1228db2aafb8403938b14fb2b69ca38 -SIZE (KDE/release-service/20.12.3/cantor-20.12.3.tar.xz) = 9128948 +TIMESTAMP = 1618579176 +SHA256 (KDE/release-service/21.04.0/cantor-21.04.0.tar.xz) = f7cac81d37eb1c66c9cbc497fb9f7429aaf2359c1bfdca12a4b8627755175f69 +SIZE (KDE/release-service/21.04.0/cantor-21.04.0.tar.xz) = 9133736 diff --git a/math/cantor/pkg-plist b/math/cantor/pkg-plist index 71aedf77fbee..cdfd701ff2eb 100644 --- a/math/cantor/pkg-plist +++ b/math/cantor/pkg-plist @@ -1,176 +1,177 @@ bin/cantor bin/cantor_pythonserver %%R%%bin/cantor_rserver bin/cantor_scripteditor include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/cantorlibs_version.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/graphicpackage.h include/cantor/helpresult.h include/cantor/htmlresult.h include/cantor/imageresult.h include/cantor/jupyterutils.h include/cantor/latexresult.h include/cantor/mimeresult.h include/cantor/panelplugin.h include/cantor/panelpluginhandler.h include/cantor/renderer.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/cantor_pythonbackend.so lib/cmake/Cantor/CantorConfig.cmake lib/cmake/Cantor/CantorConfigVersion.cmake lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantorlibs.so lib/libcantorlibs.so.28 lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_pythonbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_filebrowserpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_tocpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/libcantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/latex/preview.sty %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octave/graphic_packages.xml %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/python/graphic_packages.xml %%DATADIR%%/sagebackend/cantor-execsage %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/kalgebrabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg share/config.kcfg/pythonbackend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/knsrcfiles/cantor.knsrc share/knsrcfiles/cantor_kalgebra.knsrc %%LUAJIT%%share/knsrcfiles/cantor_lua.knsrc share/knsrcfiles/cantor_maxima.knsrc share/knsrcfiles/cantor_octave.knsrc share/knsrcfiles/cantor_python.knsrc share/knsrcfiles/cantor_qalculate.knsrc %%R%%share/knsrcfiles/cantor_r.knsrc share/knsrcfiles/cantor_sage.knsrc share/knsrcfiles/cantor_scilab.knsrc share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc share/kxmlgui5/cantor/cantor_eigenvalues_assistant.rc share/kxmlgui5/cantor/cantor_eigenvectors_assistant.rc share/kxmlgui5/cantor/cantor_import_package_assistant.rc share/kxmlgui5/cantor/cantor_integrate_assistant.rc share/kxmlgui5/cantor/cantor_invert_matrix_assistant.rc share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_plot2d_assistant.rc share/kxmlgui5/cantor/cantor_plot3d_assistant.rc share/kxmlgui5/cantor/cantor_qalculateplotassistant.rc share/kxmlgui5/cantor/cantor_runscript_assistant.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/kxmlgui5/cantor/cantor_solve_assistant.rc share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/ia/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/ml/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml +share/mime/packages/cantor.xml diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index dfa86d70f0f8..411c070b3760 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706285 -SHA256 (KDE/release-service/20.12.3/kalgebra-20.12.3.tar.xz) = e99ab7cc2845d82c1fd3981880374238971cacd14af639d4ecd2df8791d8a72f -SIZE (KDE/release-service/20.12.3/kalgebra-20.12.3.tar.xz) = 1024612 +TIMESTAMP = 1618579177 +SHA256 (KDE/release-service/21.04.0/kalgebra-21.04.0.tar.xz) = b65f4ea8fcedd8ea8870d46966818dca3740a6c0fbef6b1d32bc4f30c2f03bf1 +SIZE (KDE/release-service/21.04.0/kalgebra-21.04.0.tar.xz) = 1021892 diff --git a/math/kalgebra/pkg-plist b/math/kalgebra/pkg-plist index 3ef784a5d970..599285d24c38 100644 --- a/math/kalgebra/pkg-plist +++ b/math/kalgebra/pkg-plist @@ -1,152 +1,133 @@ bin/calgebra %%WEBENGINE%%bin/kalgebra bin/kalgebramobile %%WEBENGINE%%share/applications/org.kde.kalgebra.desktop share/applications/org.kde.kalgebramobile.desktop share/icons/hicolor/64x64/apps/kalgebra.png share/icons/hicolor/scalable/apps/kalgebra.svgz -share/kalgebramobile/plugins/About.qml -share/kalgebramobile/plugins/Console.qml -share/kalgebramobile/plugins/Dictionary.qml -share/kalgebramobile/plugins/Plot2D.qml -share/kalgebramobile/plugins/Plot3D.qml -share/kalgebramobile/plugins/Tables.qml -share/kalgebramobile/plugins/VariablesView.qml -share/kalgebramobile/plugins/kalgebraabout.json -share/kalgebramobile/plugins/kalgebraconsole.json -share/kalgebramobile/plugins/kalgebradictionary.json -share/kalgebramobile/plugins/kalgebraplot2d.json -share/kalgebramobile/plugins/kalgebraplot3d.json -share/kalgebramobile/plugins/kalgebratables.json -share/kalgebramobile/plugins/kalgebravariables.json -share/kalgebramobile/plugins/widgets/AddButton.qml -share/kalgebramobile/plugins/widgets/ExpressionInput.qml -share/kalgebramobile/plugins/widgets/KAlgebraMobile.qml -share/kalgebramobile/plugins/widgets/KAlgebraPage.qml -share/kalgebramobile/plugins/widgets/RealInput.qml -share/kalgebramobile/plugins/widgets/qmldir %%WEBENGINE%%share/katepart5/syntax/kalgebra.xml %%WEBENGINE%%share/kservices5/graphsplasmoid.desktop share/locale/ar/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/bs/LC_MESSAGES/kalgebra.mo share/locale/bs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca/LC_MESSAGES/kalgebra.mo share/locale/ca/LC_MESSAGES/kalgebramobile.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kalgebra.mo share/locale/ca@valencia/LC_MESSAGES/kalgebramobile.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/cs/LC_MESSAGES/kalgebra.mo share/locale/cs/LC_MESSAGES/kalgebramobile.mo share/locale/cs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/da/LC_MESSAGES/kalgebra.mo share/locale/da/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/de/LC_MESSAGES/kalgebra.mo share/locale/de/LC_MESSAGES/kalgebramobile.mo share/locale/de/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/el/LC_MESSAGES/kalgebra.mo share/locale/el/LC_MESSAGES/kalgebramobile.mo share/locale/el/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/en_GB/LC_MESSAGES/kalgebra.mo share/locale/en_GB/LC_MESSAGES/kalgebramobile.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eo/LC_MESSAGES/kalgebra.mo share/locale/eo/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/es/LC_MESSAGES/kalgebra.mo share/locale/es/LC_MESSAGES/kalgebramobile.mo share/locale/es/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/et/LC_MESSAGES/kalgebra.mo share/locale/et/LC_MESSAGES/kalgebramobile.mo share/locale/et/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eu/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebramobile.mo share/locale/fi/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/fr/LC_MESSAGES/kalgebra.mo share/locale/fr/LC_MESSAGES/kalgebramobile.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ga/LC_MESSAGES/kalgebra.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/gl/LC_MESSAGES/kalgebra.mo share/locale/gl/LC_MESSAGES/kalgebramobile.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/hi/LC_MESSAGES/kalgebra.mo share/locale/hr/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/it/LC_MESSAGES/kalgebra.mo share/locale/it/LC_MESSAGES/kalgebramobile.mo share/locale/it/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ja/LC_MESSAGES/kalgebra.mo share/locale/ja/LC_MESSAGES/kalgebramobile.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/kk/LC_MESSAGES/kalgebra.mo share/locale/kk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/km/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/kalgebramobile.mo share/locale/ko/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lt/LC_MESSAGES/kalgebra.mo share/locale/lt/LC_MESSAGES/kalgebramobile.mo share/locale/lt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lv/LC_MESSAGES/kalgebra.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ml/LC_MESSAGES/kalgebra.mo share/locale/ml/LC_MESSAGES/kalgebramobile.mo share/locale/ml/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/mr/LC_MESSAGES/kalgebra.mo share/locale/mr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nb/LC_MESSAGES/kalgebra.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nds/LC_MESSAGES/kalgebra.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nl/LC_MESSAGES/kalgebra.mo share/locale/nl/LC_MESSAGES/kalgebramobile.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nn/LC_MESSAGES/kalgebra.mo share/locale/nn/LC_MESSAGES/kalgebramobile.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pa/LC_MESSAGES/kalgebra.mo +share/locale/pa/LC_MESSAGES/kalgebramobile.mo share/locale/pa/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pl/LC_MESSAGES/kalgebra.mo share/locale/pl/LC_MESSAGES/kalgebramobile.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt/LC_MESSAGES/kalgebra.mo share/locale/pt/LC_MESSAGES/kalgebramobile.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kalgebra.mo share/locale/pt_BR/LC_MESSAGES/kalgebramobile.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ro/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebramobile.mo share/locale/ru/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sk/LC_MESSAGES/kalgebra.mo share/locale/sk/LC_MESSAGES/kalgebramobile.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sl/LC_MESSAGES/kalgebra.mo share/locale/sl/LC_MESSAGES/kalgebramobile.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sv/LC_MESSAGES/kalgebra.mo share/locale/sv/LC_MESSAGES/kalgebramobile.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/tr/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ug/LC_MESSAGES/kalgebra.mo share/locale/ug/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/uk/LC_MESSAGES/kalgebra.mo share/locale/uk/LC_MESSAGES/kalgebramobile.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kalgebra.mo share/locale/zh_CN/LC_MESSAGES/kalgebramobile.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kalgebra.mo share/locale/zh_TW/LC_MESSAGES/kalgebramobile.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo %%WEBENGINE%%share/metainfo/org.kde.kalgebra.appdata.xml share/metainfo/org.kde.kalgebramobile.appdata.xml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/config.ui %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/main.qml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/metadata.desktop diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index abd0f111f864..7466b17d78bd 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706284 -SHA256 (KDE/release-service/20.12.3/kbruch-20.12.3.tar.xz) = 02f55cd9f13c75857679f3464081def1dd1a5ecc4951b72243493ad3fb8351bc -SIZE (KDE/release-service/20.12.3/kbruch-20.12.3.tar.xz) = 5614940 +TIMESTAMP = 1618579177 +SHA256 (KDE/release-service/21.04.0/kbruch-21.04.0.tar.xz) = 4f004fe05f655bf0d20367d5654a7810550ecedf6ffe4ff664380dd03f69cf63 +SIZE (KDE/release-service/21.04.0/kbruch-21.04.0.tar.xz) = 5615876 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 99b0196fc5ee..6c86123d2de2 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706282 -SHA256 (KDE/release-service/20.12.3/kcalc-20.12.3.tar.xz) = 54068a1767f8d96fd507e8969c7b4b71cc61b5e605c7d6b0869c0bac5c0798de -SIZE (KDE/release-service/20.12.3/kcalc-20.12.3.tar.xz) = 380676 +TIMESTAMP = 1618579178 +SHA256 (KDE/release-service/21.04.0/kcalc-21.04.0.tar.xz) = 505fce9ddb6f079284e417263a940fe8280bef41742f0a0494d5b8a87c0a0b74 +SIZE (KDE/release-service/21.04.0/kcalc-21.04.0.tar.xz) = 360392 diff --git a/math/kig/distinfo b/math/kig/distinfo index 2565412a52ab..55159b655c71 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706285 -SHA256 (KDE/release-service/20.12.3/kig-20.12.3.tar.xz) = ce3261eb10e052fa10fcb3742d6a1820006bfa100f5aaae09f367acac3019ed9 -SIZE (KDE/release-service/20.12.3/kig-20.12.3.tar.xz) = 3122112 +TIMESTAMP = 1618579179 +SHA256 (KDE/release-service/21.04.0/kig-21.04.0.tar.xz) = 178ecb364e248f4f7ed39dcb93dcd6ce4cee0c5628f5e49d6e05383afc3d9734 +SIZE (KDE/release-service/21.04.0/kig-21.04.0.tar.xz) = 3127632 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index ad10a2a3dc60..1bae8f8eb238 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706283 -SHA256 (KDE/release-service/20.12.3/kmplot-20.12.3.tar.xz) = 834aa87b5f58b8a5a9a96b4693e98b00fb11996e629cb42ed5b60d74a59be0ac -SIZE (KDE/release-service/20.12.3/kmplot-20.12.3.tar.xz) = 3055808 +TIMESTAMP = 1618579180 +SHA256 (KDE/release-service/21.04.0/kmplot-21.04.0.tar.xz) = 5ec7087e0e7ed4b90ba2e0a776166dca926fa004cbe50a1f10a97a03d62cfff2 +SIZE (KDE/release-service/21.04.0/kmplot-21.04.0.tar.xz) = 3010660 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 07be32f86be5..7a784ba88c84 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706282 -SHA256 (KDE/release-service/20.12.3/rocs-20.12.3.tar.xz) = 9b8b134175ed4655a977755fe5c5cf4164eb567d914f8c276c5943dba3c7091c -SIZE (KDE/release-service/20.12.3/rocs-20.12.3.tar.xz) = 1492376 +TIMESTAMP = 1618579181 +SHA256 (KDE/release-service/21.04.0/rocs-21.04.0.tar.xz) = b4409aafdd1de993d793cbee41386d6febf7d333098cec2e11fb97b06a7edf87 +SIZE (KDE/release-service/21.04.0/rocs-21.04.0.tar.xz) = 1542124 diff --git a/math/rocs/pkg-plist b/math/rocs/pkg-plist index 7cd9216679aa..3b57109a9635 100644 --- a/math/rocs/pkg-plist +++ b/math/rocs/pkg-plist @@ -1,133 +1,134 @@ bin/rocs include/rocs/edge.h include/rocs/graphdocument.h include/rocs/node.h lib/librocsgraphtheory.so lib/librocsgraphtheory.so.0 %%QT_PLUGINDIR%%/rocs/editorplugins/assignvaluesplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/generategraphplugin.so +%%QT_PLUGINDIR%%/rocs/editorplugins/graphlayoutplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/transformedgesplugin.so %%QT_PLUGINDIR%%/rocs/fileformats/dotfileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/gmlfileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/rocs1fileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/rocs2fileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/tgffileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/tikzfileformat.so share/applications/org.kde.rocs.desktop share/config.kcfg/rocs.kcfg share/icons/hicolor/128x128/apps/rocs.png share/icons/hicolor/16x16/apps/rocs.png share/icons/hicolor/22x22/apps/rocs.png share/icons/hicolor/32x32/apps/rocs.png share/icons/hicolor/48x48/apps/rocs.png share/icons/hicolor/64x64/apps/rocs.png share/icons/hicolor/scalable/actions/rocsadvancedsetup.svgz share/icons/hicolor/scalable/actions/rocsalignbottom.svgz share/icons/hicolor/scalable/actions/rocsaligncircle.svgz share/icons/hicolor/scalable/actions/rocsalignleft.svgz share/icons/hicolor/scalable/actions/rocsalignmiddle.svgz share/icons/hicolor/scalable/actions/rocsalignright.svgz share/icons/hicolor/scalable/actions/rocsaligntop.svgz share/icons/hicolor/scalable/actions/rocsaligntree.svgz share/icons/hicolor/scalable/actions/rocsalignvmiddle.svgz share/icons/hicolor/scalable/actions/rocsbidirectional.svgz share/icons/hicolor/scalable/actions/rocsdelete.svgz share/icons/hicolor/scalable/actions/rocsedge.svgz share/icons/hicolor/scalable/actions/rocsnode.svgz share/icons/hicolor/scalable/actions/rocsselect.svgz share/icons/hicolor/scalable/actions/rocsunidirectional.svgz share/icons/hicolor/scalable/actions/rocsvisible.svgz share/icons/hicolor/scalable/apps/rocs.svgz share/kxmlgui5/rocs/rocsui.rc share/locale/bs/LC_MESSAGES/libgraphtheory.mo share/locale/bs/LC_MESSAGES/rocs.mo share/locale/ca/LC_MESSAGES/libgraphtheory.mo share/locale/ca/LC_MESSAGES/rocs.mo share/locale/ca@valencia/LC_MESSAGES/libgraphtheory.mo share/locale/ca@valencia/LC_MESSAGES/rocs.mo share/locale/cs/LC_MESSAGES/libgraphtheory.mo share/locale/cs/LC_MESSAGES/rocs.mo share/locale/da/LC_MESSAGES/libgraphtheory.mo share/locale/da/LC_MESSAGES/rocs.mo share/locale/de/LC_MESSAGES/libgraphtheory.mo share/locale/de/LC_MESSAGES/rocs.mo share/locale/el/LC_MESSAGES/libgraphtheory.mo share/locale/el/LC_MESSAGES/rocs.mo share/locale/en_GB/LC_MESSAGES/libgraphtheory.mo share/locale/en_GB/LC_MESSAGES/rocs.mo share/locale/eo/LC_MESSAGES/libgraphtheory.mo share/locale/eo/LC_MESSAGES/rocs.mo share/locale/es/LC_MESSAGES/libgraphtheory.mo share/locale/es/LC_MESSAGES/rocs.mo share/locale/et/LC_MESSAGES/libgraphtheory.mo share/locale/et/LC_MESSAGES/rocs.mo share/locale/fi/LC_MESSAGES/libgraphtheory.mo share/locale/fi/LC_MESSAGES/rocs.mo share/locale/fr/LC_MESSAGES/libgraphtheory.mo share/locale/fr/LC_MESSAGES/rocs.mo share/locale/ga/LC_MESSAGES/libgraphtheory.mo share/locale/ga/LC_MESSAGES/rocs.mo share/locale/gl/LC_MESSAGES/libgraphtheory.mo share/locale/gl/LC_MESSAGES/rocs.mo share/locale/hr/LC_MESSAGES/libgraphtheory.mo share/locale/hr/LC_MESSAGES/rocs.mo share/locale/hu/LC_MESSAGES/libgraphtheory.mo share/locale/hu/LC_MESSAGES/rocs.mo share/locale/it/LC_MESSAGES/libgraphtheory.mo share/locale/it/LC_MESSAGES/rocs.mo share/locale/ja/LC_MESSAGES/libgraphtheory.mo share/locale/ja/LC_MESSAGES/rocs.mo share/locale/kk/LC_MESSAGES/libgraphtheory.mo share/locale/kk/LC_MESSAGES/rocs.mo share/locale/lt/LC_MESSAGES/libgraphtheory.mo share/locale/lt/LC_MESSAGES/rocs.mo share/locale/lv/LC_MESSAGES/libgraphtheory.mo share/locale/lv/LC_MESSAGES/rocs.mo share/locale/ml/LC_MESSAGES/libgraphtheory.mo share/locale/ml/LC_MESSAGES/rocs.mo share/locale/mr/LC_MESSAGES/libgraphtheory.mo share/locale/mr/LC_MESSAGES/rocs.mo share/locale/nb/LC_MESSAGES/libgraphtheory.mo share/locale/nb/LC_MESSAGES/rocs.mo share/locale/nds/LC_MESSAGES/libgraphtheory.mo share/locale/nds/LC_MESSAGES/rocs.mo share/locale/nl/LC_MESSAGES/libgraphtheory.mo share/locale/nl/LC_MESSAGES/rocs.mo share/locale/nn/LC_MESSAGES/libgraphtheory.mo share/locale/nn/LC_MESSAGES/rocs.mo share/locale/pa/LC_MESSAGES/libgraphtheory.mo share/locale/pa/LC_MESSAGES/rocs.mo share/locale/pl/LC_MESSAGES/libgraphtheory.mo share/locale/pl/LC_MESSAGES/rocs.mo share/locale/pt/LC_MESSAGES/libgraphtheory.mo share/locale/pt/LC_MESSAGES/rocs.mo share/locale/pt_BR/LC_MESSAGES/libgraphtheory.mo share/locale/pt_BR/LC_MESSAGES/rocs.mo share/locale/ro/LC_MESSAGES/libgraphtheory.mo share/locale/ro/LC_MESSAGES/rocs.mo share/locale/ru/LC_MESSAGES/libgraphtheory.mo share/locale/ru/LC_MESSAGES/rocs.mo share/locale/sk/LC_MESSAGES/libgraphtheory.mo share/locale/sk/LC_MESSAGES/rocs.mo share/locale/sl/LC_MESSAGES/libgraphtheory.mo share/locale/sl/LC_MESSAGES/rocs.mo share/locale/sv/LC_MESSAGES/libgraphtheory.mo share/locale/sv/LC_MESSAGES/rocs.mo share/locale/tr/LC_MESSAGES/libgraphtheory.mo share/locale/tr/LC_MESSAGES/rocs.mo share/locale/ug/LC_MESSAGES/libgraphtheory.mo share/locale/ug/LC_MESSAGES/rocs.mo share/locale/uk/LC_MESSAGES/libgraphtheory.mo share/locale/uk/LC_MESSAGES/rocs.mo share/locale/zh_CN/LC_MESSAGES/libgraphtheory.mo share/locale/zh_CN/LC_MESSAGES/rocs.mo share/locale/zh_TW/LC_MESSAGES/libgraphtheory.mo share/locale/zh_TW/LC_MESSAGES/rocs.mo share/metainfo/org.kde.rocs.appdata.xml %%DATADIR%%/kernelapi/console.xml %%DATADIR%%/kernelapi/document.xml %%DATADIR%%/kernelapi/edge.xml %%DATADIR%%/kernelapi/node.xml %%DATADIR%%/plugin/apidoc/objectApi.html %%DATADIR%%/plugin/apidoc/overview.html %%DATADIR%%/schemes/kernelapi.xsd diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index c8fd4eb8ce9b..5455396cac91 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706289 -SHA256 (KDE/release-service/20.12.3/artikulate-20.12.3.tar.xz) = 35bf5044b904acebaac6ccf9064738d7d5b0a2433610ef742dd0295e8172d6be -SIZE (KDE/release-service/20.12.3/artikulate-20.12.3.tar.xz) = 1085400 +TIMESTAMP = 1618579182 +SHA256 (KDE/release-service/21.04.0/artikulate-21.04.0.tar.xz) = fc9f7701903fdc9ecdac401dd5260e0e88892c300e8f34d6cbdfc11b285c7a5d +SIZE (KDE/release-service/21.04.0/artikulate-21.04.0.tar.xz) = 1086736 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 6badbfc088c7..aeb058c21cbb 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706290 -SHA256 (KDE/release-service/20.12.3/kdeedu-data-20.12.3.tar.xz) = 794e4fb45237493421b0d5d5684337ea937500b885725731d4efa7b1b717e631 -SIZE (KDE/release-service/20.12.3/kdeedu-data-20.12.3.tar.xz) = 335416 +TIMESTAMP = 1618579182 +SHA256 (KDE/release-service/21.04.0/kdeedu-data-21.04.0.tar.xz) = 77bcf1e19e7f531913a934318a9bfbb1b542c9cd283a17e309c1f2a991059d68 +SIZE (KDE/release-service/21.04.0/kdeedu-data-21.04.0.tar.xz) = 333792 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 83c1fc01ed78..e0c31959d403 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706288 -SHA256 (KDE/release-service/20.12.3/kgeography-20.12.3.tar.xz) = 9588611cf0c355abf3367bb2835f8920d5307ecdd7a1a80b956cae3c80783a45 -SIZE (KDE/release-service/20.12.3/kgeography-20.12.3.tar.xz) = 10764016 +TIMESTAMP = 1618579183 +SHA256 (KDE/release-service/21.04.0/kgeography-21.04.0.tar.xz) = 71ef156ac0dab03d94b24e2aeb62d8c1be94ad8eaf187025ea38fd2fc9b892c1 +SIZE (KDE/release-service/21.04.0/kgeography-21.04.0.tar.xz) = 10761548 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index b295b500d8ad..df146fdc70cd 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706286 -SHA256 (KDE/release-service/20.12.3/klettres-20.12.3.tar.xz) = bc1522aaabd920e0799e760cdb8c9bc28284efd9f6e00a1609ff89382363cbfd -SIZE (KDE/release-service/20.12.3/klettres-20.12.3.tar.xz) = 47059092 +TIMESTAMP = 1618579184 +SHA256 (KDE/release-service/21.04.0/klettres-21.04.0.tar.xz) = 2fd37adcf301606466d1f48ab38933e95e6baba3869ff871a9c4bd5bb78ebecf +SIZE (KDE/release-service/21.04.0/klettres-21.04.0.tar.xz) = 47138804 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index eba3e300b006..689c3b27343d 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706287 -SHA256 (KDE/release-service/20.12.3/ktouch-20.12.3.tar.xz) = dcf146196fa6bef59a191c4916ac08ea5b2f7dd0aef940d8a77bafad5c0d68fb -SIZE (KDE/release-service/20.12.3/ktouch-20.12.3.tar.xz) = 4942444 +TIMESTAMP = 1618579185 +SHA256 (KDE/release-service/21.04.0/ktouch-21.04.0.tar.xz) = b58a6a8753de300798850091d8b0f577164884517f504d840b0fe3c7a46e8638 +SIZE (KDE/release-service/21.04.0/ktouch-21.04.0.tar.xz) = 4944184 diff --git a/misc/ktouch/pkg-plist b/misc/ktouch/pkg-plist index 1090d13ca074..e8fb3e8bb41e 100644 --- a/misc/ktouch/pkg-plist +++ b/misc/ktouch/pkg-plist @@ -1,170 +1,169 @@ bin/ktouch man/ca/man1/ktouch.1.gz man/de/man1/ktouch.1.gz man/es/man1/ktouch.1.gz man/et/man1/ktouch.1.gz man/fr/man1/ktouch.1.gz man/gl/man1/ktouch.1.gz man/it/man1/ktouch.1.gz man/man1/ktouch.1.gz man/nl/man1/ktouch.1.gz man/pl/man1/ktouch.1.gz man/pt/man1/ktouch.1.gz man/pt_BR/man1/ktouch.1.gz man/sv/man1/ktouch.1.gz man/uk/man1/ktouch.1.gz share/applications/org.kde.ktouch.desktop share/config.kcfg/ktouch.kcfg share/icons/hicolor/128x128/apps/ktouch.png share/icons/hicolor/16x16/apps/ktouch.png share/icons/hicolor/22x22/apps/ktouch.png share/icons/hicolor/32x32/apps/ktouch.png share/icons/hicolor/48x48/apps/ktouch.png share/icons/hicolor/scalable/apps/ktouch.svgz %%DATADIR%%/courses/ara.xml %%DATADIR%%/courses/bg1.xml %%DATADIR%%/courses/bg2.xml %%DATADIR%%/courses/br.xml %%DATADIR%%/courses/cat.xml %%DATADIR%%/courses/ch1.xml %%DATADIR%%/courses/ch2.xml %%DATADIR%%/courses/cz.xml %%DATADIR%%/courses/de.dvorak.xml %%DATADIR%%/courses/de.neo.xml %%DATADIR%%/courses/de1.xml %%DATADIR%%/courses/de2.xml %%DATADIR%%/courses/dk1.xml %%DATADIR%%/courses/es.dvorak.xml %%DATADIR%%/courses/es1.xml %%DATADIR%%/courses/es2.xml %%DATADIR%%/courses/es3.xml %%DATADIR%%/courses/es4.xml %%DATADIR%%/courses/fi.xml %%DATADIR%%/courses/fr.bepo.xml %%DATADIR%%/courses/fr.dvarok.xml %%DATADIR%%/courses/fr.xml %%DATADIR%%/courses/gb.xml %%DATADIR%%/courses/gr.xml %%DATADIR%%/courses/ir.xml %%DATADIR%%/courses/it.xml %%DATADIR%%/courses/it2.xml %%DATADIR%%/courses/lt.std.xml %%DATADIR%%/courses/nl1.xml %%DATADIR%%/courses/nl2.xml %%DATADIR%%/courses/no.xml %%DATADIR%%/courses/pl.xml %%DATADIR%%/courses/ru.legacy.xml %%DATADIR%%/courses/ru1.xml %%DATADIR%%/courses/ru2.xml %%DATADIR%%/courses/si.xml %%DATADIR%%/courses/sk.xml %%DATADIR%%/courses/tr.xml %%DATADIR%%/courses/ua.xml %%DATADIR%%/courses/us.colemak.xml %%DATADIR%%/courses/us.dvorak1.xml %%DATADIR%%/courses/us.dvorak2.xml %%DATADIR%%/courses/us.workman.xml %%DATADIR%%/courses/us.xml %%DATADIR%%/data.xml %%DATADIR%%/keyboardlayouts/ara.xml %%DATADIR%%/keyboardlayouts/be.xml %%DATADIR%%/keyboardlayouts/bg.xml %%DATADIR%%/keyboardlayouts/br.xml %%DATADIR%%/keyboardlayouts/ch.fr.xml %%DATADIR%%/keyboardlayouts/ch.xml %%DATADIR%%/keyboardlayouts/cz.qwerty.xml %%DATADIR%%/keyboardlayouts/cz.xml %%DATADIR%%/keyboardlayouts/de.dvorak.xml %%DATADIR%%/keyboardlayouts/de.neo2.xml %%DATADIR%%/keyboardlayouts/de.xml %%DATADIR%%/keyboardlayouts/dk.xml %%DATADIR%%/keyboardlayouts/ee.xml %%DATADIR%%/keyboardlayouts/es.dvorak.xml %%DATADIR%%/keyboardlayouts/es.xml %%DATADIR%%/keyboardlayouts/fi.xml %%DATADIR%%/keyboardlayouts/fr.bepo.xml %%DATADIR%%/keyboardlayouts/fr.dvorak.xml %%DATADIR%%/keyboardlayouts/fr.xml %%DATADIR%%/keyboardlayouts/gb.dvorak.xml %%DATADIR%%/keyboardlayouts/gb.xml %%DATADIR%%/keyboardlayouts/hu.xml %%DATADIR%%/keyboardlayouts/il.xml %%DATADIR%%/keyboardlayouts/in.kan.xml %%DATADIR%%/keyboardlayouts/in.tam_unicode.xml %%DATADIR%%/keyboardlayouts/ir.xml %%DATADIR%%/keyboardlayouts/it.xml %%DATADIR%%/keyboardlayouts/jp.xml %%DATADIR%%/keyboardlayouts/latam.xml %%DATADIR%%/keyboardlayouts/lt.std.xml %%DATADIR%%/keyboardlayouts/mn.xml %%DATADIR%%/keyboardlayouts/nl.xml %%DATADIR%%/keyboardlayouts/no.xml %%DATADIR%%/keyboardlayouts/pt.xml %%DATADIR%%/keyboardlayouts/ru.legacy.xml %%DATADIR%%/keyboardlayouts/ru.xml %%DATADIR%%/keyboardlayouts/se.xml %%DATADIR%%/keyboardlayouts/si.xml %%DATADIR%%/keyboardlayouts/sk.qwerty.xml %%DATADIR%%/keyboardlayouts/sk.xml %%DATADIR%%/keyboardlayouts/tr.f.xml %%DATADIR%%/keyboardlayouts/tr.xml %%DATADIR%%/keyboardlayouts/ua.xml %%DATADIR%%/keyboardlayouts/us.colemak.xml %%DATADIR%%/keyboardlayouts/us.dvorak.xml %%DATADIR%%/keyboardlayouts/us.workman.xml %%DATADIR%%/keyboardlayouts/us.xml %%DATADIR%%/schemata/course.xsd %%DATADIR%%/schemata/data.xsd %%DATADIR%%/schemata/keyboardlayout.xsd share/locale/ar/LC_MESSAGES/ktouch.mo share/locale/bg/LC_MESSAGES/ktouch.mo share/locale/bs/LC_MESSAGES/ktouch.mo share/locale/ca/LC_MESSAGES/ktouch.mo share/locale/ca@valencia/LC_MESSAGES/ktouch.mo share/locale/cs/LC_MESSAGES/ktouch.mo share/locale/da/LC_MESSAGES/ktouch.mo share/locale/de/LC_MESSAGES/ktouch.mo share/locale/el/LC_MESSAGES/ktouch.mo share/locale/en_GB/LC_MESSAGES/ktouch.mo share/locale/eo/LC_MESSAGES/ktouch.mo share/locale/es/LC_MESSAGES/ktouch.mo share/locale/et/LC_MESSAGES/ktouch.mo share/locale/eu/LC_MESSAGES/ktouch.mo share/locale/fa/LC_MESSAGES/ktouch.mo share/locale/fi/LC_MESSAGES/ktouch.mo share/locale/fr/LC_MESSAGES/ktouch.mo share/locale/ga/LC_MESSAGES/ktouch.mo share/locale/gl/LC_MESSAGES/ktouch.mo share/locale/he/LC_MESSAGES/ktouch.mo share/locale/hi/LC_MESSAGES/ktouch.mo share/locale/hr/LC_MESSAGES/ktouch.mo share/locale/hu/LC_MESSAGES/ktouch.mo -share/locale/ia/LC_MESSAGES/ktouch.mo share/locale/is/LC_MESSAGES/ktouch.mo share/locale/it/LC_MESSAGES/ktouch.mo share/locale/ja/LC_MESSAGES/ktouch.mo share/locale/kk/LC_MESSAGES/ktouch.mo share/locale/km/LC_MESSAGES/ktouch.mo share/locale/lt/LC_MESSAGES/ktouch.mo share/locale/lv/LC_MESSAGES/ktouch.mo share/locale/ml/LC_MESSAGES/ktouch.mo share/locale/mr/LC_MESSAGES/ktouch.mo share/locale/nb/LC_MESSAGES/ktouch.mo share/locale/nds/LC_MESSAGES/ktouch.mo share/locale/nl/LC_MESSAGES/ktouch.mo share/locale/nn/LC_MESSAGES/ktouch.mo share/locale/pa/LC_MESSAGES/ktouch.mo share/locale/pl/LC_MESSAGES/ktouch.mo share/locale/pt/LC_MESSAGES/ktouch.mo share/locale/pt_BR/LC_MESSAGES/ktouch.mo share/locale/ro/LC_MESSAGES/ktouch.mo share/locale/ru/LC_MESSAGES/ktouch.mo share/locale/sk/LC_MESSAGES/ktouch.mo share/locale/sl/LC_MESSAGES/ktouch.mo share/locale/sv/LC_MESSAGES/ktouch.mo share/locale/tr/LC_MESSAGES/ktouch.mo share/locale/ug/LC_MESSAGES/ktouch.mo share/locale/uk/LC_MESSAGES/ktouch.mo share/locale/zh_CN/LC_MESSAGES/ktouch.mo share/locale/zh_TW/LC_MESSAGES/ktouch.mo share/metainfo/org.kde.ktouch.appdata.xml diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index de7ddd8b3f4f..fc3934bdbe1a 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706291 -SHA256 (KDE/release-service/20.12.3/kwordquiz-20.12.3.tar.xz) = d7a7e141669cb2c38ce40898866fd72928c8973ff6214a9b8f60a35bff91136f -SIZE (KDE/release-service/20.12.3/kwordquiz-20.12.3.tar.xz) = 4187776 +TIMESTAMP = 1618579186 +SHA256 (KDE/release-service/21.04.0/kwordquiz-21.04.0.tar.xz) = 7127b4a4873ab2bfae3bc05b6e4486dcbb35b701286f1086141f6e5f8e85d172 +SIZE (KDE/release-service/21.04.0/kwordquiz-21.04.0.tar.xz) = 4189888 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 78f37e12ce2e..0fa67cd27ca0 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706290 -SHA256 (KDE/release-service/20.12.3/libkeduvocdocument-20.12.3.tar.xz) = e0b5289c727258cf295631b3b2a50880966140e8e1681d7d96731cbe1520bcf4 -SIZE (KDE/release-service/20.12.3/libkeduvocdocument-20.12.3.tar.xz) = 211096 +TIMESTAMP = 1618579186 +SHA256 (KDE/release-service/21.04.0/libkeduvocdocument-21.04.0.tar.xz) = 24a40c23b0852fa462700e634a129f7fa355ad47bcea4b026cd211c20388c408 +SIZE (KDE/release-service/21.04.0/libkeduvocdocument-21.04.0.tar.xz) = 211368 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 15b57c653529..fa8b24507d8c 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706287 -SHA256 (KDE/release-service/20.12.3/parley-20.12.3.tar.xz) = 562aceea41a41cc9bf70212fad6cd77e4d7580d3125cee26073d6600295e8b48 -SIZE (KDE/release-service/20.12.3/parley-20.12.3.tar.xz) = 8842064 +TIMESTAMP = 1618579187 +SHA256 (KDE/release-service/21.04.0/parley-21.04.0.tar.xz) = e32714ccbdb2189353fae99c4122407c12737b0892e627dc5525a078f1372828 +SIZE (KDE/release-service/21.04.0/parley-21.04.0.tar.xz) = 8844472 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 9f0af71fb135..aa4f8317fb47 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706294 -SHA256 (KDE/release-service/20.12.3/dragon-20.12.3.tar.xz) = ea218014245455ed90a695c0031485ea9935053dd12cd6579367053d7d9f372a -SIZE (KDE/release-service/20.12.3/dragon-20.12.3.tar.xz) = 1656596 +TIMESTAMP = 1618579188 +SHA256 (KDE/release-service/21.04.0/dragon-21.04.0.tar.xz) = 690e64200d82f9b41b1a9b92f3706b814fa99c7acc2704cb7194f5fda6ce9602 +SIZE (KDE/release-service/21.04.0/dragon-21.04.0.tar.xz) = 1664152 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 251327d5f6d8..1fd880f72487 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706293 -SHA256 (KDE/release-service/20.12.3/kamoso-20.12.3.tar.xz) = a423ea7cdaf5ec8c452ae21841548084b682acae6f74bb1f68af2c181b73b07e -SIZE (KDE/release-service/20.12.3/kamoso-20.12.3.tar.xz) = 211540 +TIMESTAMP = 1618579188 +SHA256 (KDE/release-service/21.04.0/kamoso-21.04.0.tar.xz) = 7024ad5aff6cd8554064d47e0575eba00153f42deb8e6eca3e8f800e225bea5a +SIZE (KDE/release-service/21.04.0/kamoso-21.04.0.tar.xz) = 211956 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index ca906a1209a8..98e187021c24 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706292 -SHA256 (KDE/release-service/20.12.3/ffmpegthumbs-20.12.3.tar.xz) = 20a1ce8a47bc4bb790e20c1ea082dddbe3153f320f19b176146dc187651e96b3 -SIZE (KDE/release-service/20.12.3/ffmpegthumbs-20.12.3.tar.xz) = 34088 +TIMESTAMP = 1618579189 +SHA256 (KDE/release-service/21.04.0/ffmpegthumbs-21.04.0.tar.xz) = 4ae7004f4edbf6eb3d3115cdb3b5ef68e65f5773776f9777ef4692557069cc1b +SIZE (KDE/release-service/21.04.0/ffmpegthumbs-21.04.0.tar.xz) = 33544 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist b/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist index e31fe5a131be..175247300922 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist +++ b/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist @@ -1,36 +1,37 @@ %%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/hi/LC_MESSAGES/ffmpegthumbs.mo share/locale/ia/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/ro/LC_MESSAGES/ffmpegthumbs.mo share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sl/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/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 +share/qlogging-categories5/ffmpegthumbs.categories diff --git a/multimedia/kdenlive/Makefile b/multimedia/kdenlive/Makefile index 742e0fd83b9a..77e1b223a9c7 100644 --- a/multimedia/kdenlive/Makefile +++ b/multimedia/kdenlive/Makefile @@ -1,68 +1,69 @@ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite LICENSE= GPLv2 LIB_DEPENDS= libmlt.so:multimedia/mlt \ librttr_core.so:devel/rttr BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext-tools \ gl pkgconfig qt:5 shared-mime-info kde:5 tar:xz xorg USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm filemetadata \ guiaddons i18n iconthemes kio itemviews jobwidgets \ kdeclarative newstuff notifications notifyconfig package \ service solid sonnet textwidgets widgetsaddons xmlgui \ init_run -USE_QT= concurrent core dbus declarative gui multimedia network xml \ +USE_QT= concurrent core dbus declarative gui multimedia network \ + networkauth xml \ buildtools_build qmake_build \ quickcontrols_run script svg webkit widgets USE_XORG= x11 CFLAGS+= -I${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" # Keep in sync with multimedia/mlt, possibly. FFMPEG_SUFX= # Currently empty. OPTIONS_DEFINE= DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools FILESHARE_DESC= Common KF5 filesharing support SCREENCAST_DESC=Screen capture support via recordMyDesktop V4L_DESC= Webcam support via Video4Linux XINE_DESC= DVD preview support via xine DVDWIZARD_RUN_DEPENDS= dvdauthor:multimedia/dvdauthor \ cdrecord:sysutils/cdrtools FILESHARE_USE= KDE=purpose FILESHARE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Purpose FREI0R_RUN_DEPENDS= frei0r-plugins>=0:graphics/frei0r-plugins LADSPA_RUN_DEPENDS= swhplugins>=0:audio/swhplugins SCREENCAST_RUN_DEPENDS= recordmydesktop:multimedia/recordmydesktop V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l V4L_CMAKE_OFF= -DWITH_LibV4L2:BOOL=FALSE XINE_RUN_DEPENDS= xine:multimedia/xine post-patch: @${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/data/CMakeLists.txt .include diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 3969cebb94ea..903f5da7ae3a 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706291 -SHA256 (KDE/release-service/20.12.3/kdenlive-20.12.3.tar.xz) = 8d9f94699befc59b0a410d99dcafd445f33126678c18d859df4fceb553a88586 -SIZE (KDE/release-service/20.12.3/kdenlive-20.12.3.tar.xz) = 11514396 +TIMESTAMP = 1618579190 +SHA256 (KDE/release-service/21.04.0/kdenlive-21.04.0.tar.xz) = b0be8f0adef51d3305ec6bebde089b8e4d2fb4519c83456cd91647e7763d4bdf +SIZE (KDE/release-service/21.04.0/kdenlive-21.04.0.tar.xz) = 11717116 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index a0296bbf2941..e10575bea567 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,483 +1,508 @@ bin/kdenlive bin/kdenlive_render %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/COPYING %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png +share/icons/hicolor/16x16/actions/add-subtitle.svg share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-object-height.png share/icons/hicolor/16x16/actions/kdenlive-object-width.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png share/icons/hicolor/16x16/actions/kdenlive-split-audio.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png +share/icons/hicolor/16x16/actions/keyframe-add.svg +share/icons/hicolor/16x16/actions/keyframe-disable.svg +share/icons/hicolor/16x16/actions/keyframe-duplicate.svg +share/icons/hicolor/16x16/actions/keyframe-next.svg +share/icons/hicolor/16x16/actions/keyframe-previous.svg +share/icons/hicolor/16x16/actions/keyframe-record.svg +share/icons/hicolor/16x16/actions/keyframe-remove.svg +share/icons/hicolor/16x16/actions/keyframe.svg share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png +share/icons/hicolor/22x22/actions/keyframe-add.svg +share/icons/hicolor/22x22/actions/keyframe-disable.svg +share/icons/hicolor/22x22/actions/keyframe-duplicate.svg +share/icons/hicolor/22x22/actions/keyframe-next.svg +share/icons/hicolor/22x22/actions/keyframe-previous.svg +share/icons/hicolor/22x22/actions/keyframe-record.svg +share/icons/hicolor/22x22/actions/keyframe-remove.svg +share/icons/hicolor/22x22/actions/keyframe.svg share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png -share/icons/hicolor/scalable/actions/kdenlive-add-subtitle.svg +share/icons/hicolor/scalable/actions/add-subtitle.svg share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz +share/knsrcfiles/kdenlive_luts.knsrc %%DATADIR%%/banner.png %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/automask.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/meta_ffmpeg.png %%DATADIR%%/meta_libav.png %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 +%%DATADIR%%/resourceproviders/archiveorg.json +%%DATADIR%%/resourceproviders/freesound.json +%%DATADIR%%/resourceproviders/pexels_photo.json +%%DATADIR%%/resourceproviders/pexels_video.json +%%DATADIR%%/resourceproviders/pixabay_photo.json +%%DATADIR%%/scripts/checkvosk.py +%%DATADIR%%/scripts/speech.py +%%DATADIR%%/scripts/speechtotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/timeline_athumbs.png %%DATADIR%%/timeline_avthumbs.png %%DATADIR%%/timeline_nothumbs.png %%DATADIR%%/timeline_vthumbs.png %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml -share/locale/ia/LC_MESSAGES/kdenlive.mo share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index ffa08af17a05..8e9c901d26c3 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706320 -SHA256 (KDE/release-service/20.12.3/kaccounts-integration-20.12.3.tar.xz) = 98390b72fbb3eb26a892f6f2169d71df754dd44887ed599116b624012297a655 -SIZE (KDE/release-service/20.12.3/kaccounts-integration-20.12.3.tar.xz) = 84376 +TIMESTAMP = 1618579191 +SHA256 (KDE/release-service/21.04.0/kaccounts-integration-21.04.0.tar.xz) = fe3e3096a237ba0f97cd8a25926648aef30fdc8dd475d78748857032a9f6cefe +SIZE (KDE/release-service/21.04.0/kaccounts-integration-21.04.0.tar.xz) = 84508 diff --git a/net-im/kaccounts-integration/pkg-plist b/net-im/kaccounts-integration/pkg-plist index 1f87c8c2b742..72c1d0085613 100644 --- a/net-im/kaccounts-integration/pkg-plist +++ b/net-im/kaccounts-integration/pkg-plist @@ -1,84 +1,84 @@ include/KAccounts/AccountServiceToggleJob include/KAccounts/AccountsModel include/KAccounts/ChangeAccountDisplayNameJob include/KAccounts/Core include/KAccounts/CreateAccountJob include/KAccounts/GetCredentialsJob include/KAccounts/KAccountsDPlugin include/KAccounts/KAccountsUiPlugin include/KAccounts/ProvidersModel include/KAccounts/RemoveAccountJob include/KAccounts/ServicesModel include/KAccounts/accountservicetogglejob.h include/KAccounts/accountsmodel.h include/KAccounts/changeaccountdisplaynamejob.h include/KAccounts/core.h include/KAccounts/createaccountjob.h include/KAccounts/getcredentialsjob.h include/KAccounts/kaccounts_export.h include/KAccounts/kaccounts_version.h include/KAccounts/kaccountsdplugin.h include/KAccounts/kaccountsuiplugin.h include/KAccounts/providersmodel.h include/KAccounts/removeaccountjob.h include/KAccounts/servicesmodel.h -lib/cmake/KAccounts/FindAccountsFileDir.cmake lib/cmake/KAccounts/KAccountsConfig.cmake lib/cmake/KAccounts/KAccountsConfigVersion.cmake lib/cmake/KAccounts/KAccountsMacros.cmake lib/cmake/KAccounts/KAccountsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KAccounts/KAccountsTargets.cmake lib/libkaccounts.so lib/libkaccounts.so.2 lib/libkaccounts.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kaccounts/daemonplugins/kaccounts_kio_webdav_plugin.so %%QT_PLUGINDIR%%/kcms/kcm_kaccounts.so %%QT_PLUGINDIR%%/kf5/kded/kded_accounts.so %%QT_QMLDIR%%/org/kde/kaccounts/libkaccountsdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kaccounts/qmldir share/kpackage/kcms/kcm_kaccounts/contents/ui/AccountDetails.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/Accounts.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/MessageBoxSheet.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RemoveAccountDialog.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RenameAccountDialog.qml share/locale/hu/LC_MESSAGES/kaccounts-integration.mo share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableAccounts.qml share/kpackage/kcms/kcm_kaccounts/metadata.desktop share/kpackage/kcms/kcm_kaccounts/metadata.json share/kservices5/kcm_kaccounts.desktop share/locale/ar/LC_MESSAGES/kaccounts-integration.mo +share/locale/ast/LC_MESSAGES/kaccounts-integration.mo share/locale/bs/LC_MESSAGES/kaccounts-integration.mo share/locale/ca/LC_MESSAGES/kaccounts-integration.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-integration.mo share/locale/cs/LC_MESSAGES/kaccounts-integration.mo share/locale/da/LC_MESSAGES/kaccounts-integration.mo share/locale/de/LC_MESSAGES/kaccounts-integration.mo share/locale/el/LC_MESSAGES/kaccounts-integration.mo share/locale/en_GB/LC_MESSAGES/kaccounts-integration.mo share/locale/es/LC_MESSAGES/kaccounts-integration.mo share/locale/et/LC_MESSAGES/kaccounts-integration.mo share/locale/eu/LC_MESSAGES/kaccounts-integration.mo share/locale/fi/LC_MESSAGES/kaccounts-integration.mo share/locale/fr/LC_MESSAGES/kaccounts-integration.mo share/locale/gl/LC_MESSAGES/kaccounts-integration.mo share/locale/ia/LC_MESSAGES/kaccounts-integration.mo share/locale/it/LC_MESSAGES/kaccounts-integration.mo share/locale/ja/LC_MESSAGES/kaccounts-integration.mo share/locale/ko/LC_MESSAGES/kaccounts-integration.mo share/locale/lt/LC_MESSAGES/kaccounts-integration.mo share/locale/nl/LC_MESSAGES/kaccounts-integration.mo share/locale/nn/LC_MESSAGES/kaccounts-integration.mo share/locale/pa/LC_MESSAGES/kaccounts-integration.mo share/locale/pl/LC_MESSAGES/kaccounts-integration.mo share/locale/pt/LC_MESSAGES/kaccounts-integration.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-integration.mo share/locale/ro/LC_MESSAGES/kaccounts-integration.mo share/locale/ru/LC_MESSAGES/kaccounts-integration.mo share/locale/sk/LC_MESSAGES/kaccounts-integration.mo share/locale/sl/LC_MESSAGES/kaccounts-integration.mo share/locale/sr/LC_MESSAGES/kaccounts-integration.mo share/locale/sv/LC_MESSAGES/kaccounts-integration.mo share/locale/tr/LC_MESSAGES/kaccounts-integration.mo share/locale/uk/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-integration.mo diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 15646e96e10e..fec3e43cef4b 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706319 -SHA256 (KDE/release-service/20.12.3/kaccounts-providers-20.12.3.tar.xz) = ae71cadebff1e16991c48fcb9c71c177e2fc2d04536b89d1437587bcdae70617 -SIZE (KDE/release-service/20.12.3/kaccounts-providers-20.12.3.tar.xz) = 61612 +TIMESTAMP = 1618579192 +SHA256 (KDE/release-service/21.04.0/kaccounts-providers-21.04.0.tar.xz) = e0b58817dd41f18f6408e40f7d0390f6e8c426394fc1e36c691f98f794c6369f +SIZE (KDE/release-service/21.04.0/kaccounts-providers-21.04.0.tar.xz) = 62304 diff --git a/net-im/kaccounts-providers/pkg-plist b/net-im/kaccounts-providers/pkg-plist index e16e7ecd6445..fb9b0a6a0b40 100644 --- a/net-im/kaccounts-providers/pkg-plist +++ b/net-im/kaccounts-providers/pkg-plist @@ -1,63 +1,64 @@ etc/signon-ui/webkit-options.d/accounts.google.com.conf etc/signon-ui/webkit-options.d/api.twitter.com.conf etc/signon-ui/webkit-options.d/identi.ca.conf etc/signon-ui/webkit-options.d/www.facebook.com.conf %%QT_PLUGINDIR%%/kaccounts/ui/owncloud_plugin_kaccounts.so %%QT_PLUGINDIR%%/kaccounts/ui/nextcloud_plugin_kaccounts.so share/accounts/providers/kde/google.provider share/accounts/providers/kde/nextcloud.provider share/accounts/providers/kde/owncloud.provider share/accounts/services/kde/nextcloud-contacts.service share/accounts/services/kde/nextcloud-storage.service share/accounts/services/kde/owncloud-storage.service share/icons/hicolor/256x256/apps/kaccounts-owncloud.png share/icons/hicolor/scalable/apps/kaccounts-nextcloud.svg share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/Server.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/Services.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/WebLogin.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/main.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/metadata.desktop share/kpackage/genericqml/org.kde.kaccounts.nextcloud/metadata.json share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/Server.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/Services.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/main.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.desktop share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.json share/locale/ar/LC_MESSAGES/kaccounts-providers.mo +share/locale/ast/LC_MESSAGES/kaccounts-providers.mo share/locale/bs/LC_MESSAGES/kaccounts-providers.mo share/locale/ca/LC_MESSAGES/kaccounts-providers.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-providers.mo share/locale/cs/LC_MESSAGES/kaccounts-providers.mo share/locale/da/LC_MESSAGES/kaccounts-providers.mo share/locale/de/LC_MESSAGES/kaccounts-providers.mo share/locale/el/LC_MESSAGES/kaccounts-providers.mo share/locale/en_GB/LC_MESSAGES/kaccounts-providers.mo share/locale/es/LC_MESSAGES/kaccounts-providers.mo share/locale/et/LC_MESSAGES/kaccounts-providers.mo share/locale/eu/LC_MESSAGES/kaccounts-providers.mo share/locale/fi/LC_MESSAGES/kaccounts-providers.mo share/locale/fr/LC_MESSAGES/kaccounts-providers.mo share/locale/gl/LC_MESSAGES/kaccounts-providers.mo share/locale/hu/LC_MESSAGES/kaccounts-providers.mo share/locale/ia/LC_MESSAGES/kaccounts-providers.mo share/locale/it/LC_MESSAGES/kaccounts-providers.mo share/locale/ja/LC_MESSAGES/kaccounts-providers.mo share/locale/ko/LC_MESSAGES/kaccounts-providers.mo share/locale/lt/LC_MESSAGES/kaccounts-providers.mo share/locale/nl/LC_MESSAGES/kaccounts-providers.mo share/locale/nn/LC_MESSAGES/kaccounts-providers.mo share/locale/pl/LC_MESSAGES/kaccounts-providers.mo share/locale/pt/LC_MESSAGES/kaccounts-providers.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-providers.mo share/locale/ro/LC_MESSAGES/kaccounts-providers.mo share/locale/ru/LC_MESSAGES/kaccounts-providers.mo share/locale/sk/LC_MESSAGES/kaccounts-providers.mo share/locale/sl/LC_MESSAGES/kaccounts-providers.mo share/locale/sr/LC_MESSAGES/kaccounts-providers.mo share/locale/sv/LC_MESSAGES/kaccounts-providers.mo share/locale/tr/LC_MESSAGES/kaccounts-providers.mo share/locale/uk/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-providers.mo share/metainfo/org.kde.kaccounts.nextcloud.appdata.xml share/metainfo/org.kde.kaccounts.owncloud.appdata.xml diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index 5bdb4ef5b5cd..d4aa5c9bec81 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706320 -SHA256 (KDE/release-service/20.12.3/kopete-20.12.3.tar.xz) = dcf413b5d88a70be57be1078382b8426cba4e2a61fc7e3be9adcb554304a844a -SIZE (KDE/release-service/20.12.3/kopete-20.12.3.tar.xz) = 9380060 +TIMESTAMP = 1618579193 +SHA256 (KDE/release-service/21.04.0/kopete-21.04.0.tar.xz) = 984498d5b48f011fc500dfdb573c95b360148b8b9fb56549783f12df096dd793 +SIZE (KDE/release-service/21.04.0/kopete-21.04.0.tar.xz) = 9414048 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 62bc6ff13391..1c32253ebdb9 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706318 -SHA256 (KDE/release-service/20.12.3/ktp-accounts-kcm-20.12.3.tar.xz) = c2a7ba913eaf48d485229d3f46df46582feaff3eccb582a775c1aefaaf66464a -SIZE (KDE/release-service/20.12.3/ktp-accounts-kcm-20.12.3.tar.xz) = 262196 +TIMESTAMP = 1618579193 +SHA256 (KDE/release-service/21.04.0/ktp-accounts-kcm-21.04.0.tar.xz) = 3780dde83619db46caa9999a2e3bb11c6f0b76313e95ecc7a9e313ec6c9a76ef +SIZE (KDE/release-service/21.04.0/ktp-accounts-kcm-21.04.0.tar.xz) = 264080 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index 91933e1a3d46..4c974fc47afb 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706325 -SHA256 (KDE/release-service/20.12.3/ktp-approver-20.12.3.tar.xz) = 83f89f6784bb266b31086605bc21788792da4b503b4132d49ed892064abd3faf -SIZE (KDE/release-service/20.12.3/ktp-approver-20.12.3.tar.xz) = 37304 +TIMESTAMP = 1618579194 +SHA256 (KDE/release-service/21.04.0/ktp-approver-21.04.0.tar.xz) = 45e2bfa727b9bf794bed80e8b589ed335cdfa2fbcabdb18b7d2456b7863a8048 +SIZE (KDE/release-service/21.04.0/ktp-approver-21.04.0.tar.xz) = 37484 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index f34acfe4db1d..121833671c3a 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706327 -SHA256 (KDE/release-service/20.12.3/ktp-auth-handler-20.12.3.tar.xz) = 8c3d818537bb377e7c37636567762e8a6658776951216384b76a2281686712c5 -SIZE (KDE/release-service/20.12.3/ktp-auth-handler-20.12.3.tar.xz) = 46328 +TIMESTAMP = 1618579195 +SHA256 (KDE/release-service/21.04.0/ktp-auth-handler-21.04.0.tar.xz) = f17cc28265c95e50886d9f6e9af45b508b11f21c4e60b14ecf7c37aeea5812d3 +SIZE (KDE/release-service/21.04.0/ktp-auth-handler-21.04.0.tar.xz) = 46656 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index b143b25c6006..ecee7264ed4a 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706321 -SHA256 (KDE/release-service/20.12.3/ktp-call-ui-20.12.3.tar.xz) = 1427425e9ae7b8a0df658f5e3c8c58e349c73232189165d719eb0ffd0fa6321d -SIZE (KDE/release-service/20.12.3/ktp-call-ui-20.12.3.tar.xz) = 97296 +TIMESTAMP = 1618579196 +SHA256 (KDE/release-service/21.04.0/ktp-call-ui-21.04.0.tar.xz) = 17fb221cb006f9e86fe476cc7fe6984a602d4ad0f23b2fb6592270274bfd59b8 +SIZE (KDE/release-service/21.04.0/ktp-call-ui-21.04.0.tar.xz) = 97488 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index 98b07c1f99ed..d889d48ecaf2 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706326 -SHA256 (KDE/release-service/20.12.3/ktp-common-internals-20.12.3.tar.xz) = 8417d7ed3cb3fbf9094556484bec56932d5e6482fd355a6af3a241a99d673031 -SIZE (KDE/release-service/20.12.3/ktp-common-internals-20.12.3.tar.xz) = 449572 +TIMESTAMP = 1618579197 +SHA256 (KDE/release-service/21.04.0/ktp-common-internals-21.04.0.tar.xz) = 3d88f6b9deba0deca5bf060e404a5becae30f3be749940fea8871b4bfdb66e48 +SIZE (KDE/release-service/21.04.0/ktp-common-internals-21.04.0.tar.xz) = 450660 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index 7b45e96621b0..00d038d34cbb 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706323 -SHA256 (KDE/release-service/20.12.3/ktp-contact-list-20.12.3.tar.xz) = 2e8f38dd7196e2705c6f6a2b6a97ba4bba49195ea7b9b81f70260a27afa8f80d -SIZE (KDE/release-service/20.12.3/ktp-contact-list-20.12.3.tar.xz) = 150320 +TIMESTAMP = 1618579198 +SHA256 (KDE/release-service/21.04.0/ktp-contact-list-21.04.0.tar.xz) = 98586a5a74633042d060e0827dbc93a1c9f915a3917eb6ec88af7e3d9c1ed5af +SIZE (KDE/release-service/21.04.0/ktp-contact-list-21.04.0.tar.xz) = 151152 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index 2d704a833f1f..544741372b2f 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706323 -SHA256 (KDE/release-service/20.12.3/ktp-contact-runner-20.12.3.tar.xz) = 6cc1d322e37cbf78142eaceb2c6d112e10166070fdaf7112f6277801d6faeb10 -SIZE (KDE/release-service/20.12.3/ktp-contact-runner-20.12.3.tar.xz) = 43084 +TIMESTAMP = 1618579199 +SHA256 (KDE/release-service/21.04.0/ktp-contact-runner-21.04.0.tar.xz) = df99f9160662c9fa9eb67bc9841179a064d503e8e328317cf2d86fb710d3cca9 +SIZE (KDE/release-service/21.04.0/ktp-contact-runner-21.04.0.tar.xz) = 43240 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 103427fb127d..1487d44a78f7 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706328 -SHA256 (KDE/release-service/20.12.3/ktp-desktop-applets-20.12.3.tar.xz) = d0c4806627de8176420c170f1f83efd439596ae0139889b42f249ef5d48f96d4 -SIZE (KDE/release-service/20.12.3/ktp-desktop-applets-20.12.3.tar.xz) = 43704 +TIMESTAMP = 1618579200 +SHA256 (KDE/release-service/21.04.0/ktp-desktop-applets-21.04.0.tar.xz) = bc08e0b73be57cf7f12c6658737c4fee77d94065d2d971381c83b67c117d90a9 +SIZE (KDE/release-service/21.04.0/ktp-desktop-applets-21.04.0.tar.xz) = 43656 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index 6bf4f312ced7..34c03a870be0 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706322 -SHA256 (KDE/release-service/20.12.3/ktp-filetransfer-handler-20.12.3.tar.xz) = 493c4625095aa9a331a25df533474d9c0869e5c1b56ed5670467bf8e70b10973 -SIZE (KDE/release-service/20.12.3/ktp-filetransfer-handler-20.12.3.tar.xz) = 46208 +TIMESTAMP = 1618579201 +SHA256 (KDE/release-service/21.04.0/ktp-filetransfer-handler-21.04.0.tar.xz) = ef4a0ed11c8183319121bd79801a4ebfc70342492980646b0d2bb94afae81b56 +SIZE (KDE/release-service/21.04.0/ktp-filetransfer-handler-21.04.0.tar.xz) = 46424 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index 8d021eecbaa0..1ede4305c4d6 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706325 -SHA256 (KDE/release-service/20.12.3/ktp-kded-module-20.12.3.tar.xz) = df0a79ea13a8a8686476d0b91c4552eb7b7db27cc1c1419f1de1143b63834848 -SIZE (KDE/release-service/20.12.3/ktp-kded-module-20.12.3.tar.xz) = 98312 +TIMESTAMP = 1618579201 +SHA256 (KDE/release-service/21.04.0/ktp-kded-module-21.04.0.tar.xz) = 0e296b8915f7e03b440c0775d789836540d1cb33edfe2ac25ea61b3df1ba79b4 +SIZE (KDE/release-service/21.04.0/ktp-kded-module-21.04.0.tar.xz) = 98884 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index b82edd4c11e0..fef78758ac3a 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706324 -SHA256 (KDE/release-service/20.12.3/ktp-send-file-20.12.3.tar.xz) = 18e7ecb36975ef2741ffafe1d5cf398fb4e7bc8ac1b364dedb6bc544f0eebe52 -SIZE (KDE/release-service/20.12.3/ktp-send-file-20.12.3.tar.xz) = 27816 +TIMESTAMP = 1618579202 +SHA256 (KDE/release-service/21.04.0/ktp-send-file-21.04.0.tar.xz) = e70887b1c970e8cfc08b41fcc4e5578f030ec1f34ee668d951919d63d583dad3 +SIZE (KDE/release-service/21.04.0/ktp-send-file-21.04.0.tar.xz) = 27924 diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 182782dbba85..1c035b6e0b69 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706327 -SHA256 (KDE/release-service/20.12.3/ktp-text-ui-20.12.3.tar.xz) = 381a0b6328d387b7f412096bd9fefdb1132a8745ec6d16bf63bf2a0eb6c40f3f -SIZE (KDE/release-service/20.12.3/ktp-text-ui-20.12.3.tar.xz) = 471704 +TIMESTAMP = 1618579203 +SHA256 (KDE/release-service/21.04.0/ktp-text-ui-21.04.0.tar.xz) = 1b3c486c63dfdd1b715bac8f5f1ae55756e301bb6fd6af073a1f8e831ca96212 +SIZE (KDE/release-service/21.04.0/ktp-text-ui-21.04.0.tar.xz) = 473200 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 2887decac61f..2cccf4127b82 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706330 -SHA256 (KDE/release-service/20.12.3/ktorrent-20.12.3.tar.xz) = 28d3db3ed5b672e943e50d482855e48d6088022620b088b261f4eeb7ea42f289 -SIZE (KDE/release-service/20.12.3/ktorrent-20.12.3.tar.xz) = 2141556 +TIMESTAMP = 1618579204 +SHA256 (KDE/release-service/21.04.0/ktorrent-21.04.0.tar.xz) = 858cfcb07f039c17702bb77c1d5aec180d48d38a5d57e38a1536e62a968f4838 +SIZE (KDE/release-service/21.04.0/ktorrent-21.04.0.tar.xz) = 2071924 diff --git a/net-p2p/ktorrent/pkg-plist b/net-p2p/ktorrent/pkg-plist index f9b5656381ea..b7de12b3454f 100644 --- a/net-p2p/ktorrent/pkg-plist +++ b/net-p2p/ktorrent/pkg-plist @@ -1,187 +1,188 @@ bin/ktmagnetdownloader bin/ktorrent bin/ktupnptest lib/libktcore.so.16 lib/libktcore.so.16.0.0 %%QT_PLUGINDIR%%/ktorrent/ktorrent_bwscheduler.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_downloadorder.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_infowidget.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_ipfilter.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_logviewer.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_magnetgenerator.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_mediaplayer.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_scanfolder.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_scanforlostfiles.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_scripting.so %%WEBENGINE%%%%QT_PLUGINDIR%%/ktorrent/ktorrent_search.so %%WORKSPACE%%%%QT_PLUGINDIR%%/ktorrent/ktorrent_shutdown.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_stats.so %%WEBENGINE%%%%QT_PLUGINDIR%%/ktorrent/ktorrent_syndication.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_upnp.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_zeroconf.so share/applications/org.kde.ktorrent.desktop share/icons/hicolor/128x128/apps/ktorrent.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-add-feeds.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-add-filters.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-remove-feeds.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-remove-filters.png share/icons/hicolor/16x16/actions/kt-stop-all.png share/icons/hicolor/16x16/actions/kt-stop.png share/icons/hicolor/16x16/actions/kt-upnp.png share/icons/hicolor/16x16/apps/ktorrent.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-add-feeds.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-add-filters.png share/icons/hicolor/22x22/actions/kt-magnet.png share/icons/hicolor/22x22/actions/kt-pause.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-remove-feeds.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-remove-filters.png share/icons/hicolor/22x22/actions/kt-remove.png share/icons/hicolor/22x22/actions/kt-set-max-download-speed.png share/icons/hicolor/22x22/actions/kt-set-max-upload-speed.png share/icons/hicolor/22x22/actions/kt-speed-limits.png share/icons/hicolor/22x22/actions/kt-start-all.png share/icons/hicolor/22x22/actions/kt-start.png share/icons/hicolor/22x22/actions/kt-stop-all.png share/icons/hicolor/22x22/actions/kt-stop.png share/icons/hicolor/22x22/apps/ktorrent.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-add-feeds.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-add-filters.png share/icons/hicolor/32x32/actions/kt-info-widget.png share/icons/hicolor/32x32/actions/kt-magnet.png share/icons/hicolor/32x32/actions/kt-pause.png share/icons/hicolor/32x32/actions/kt-queue-manager.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-remove-feeds.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-remove-filters.png share/icons/hicolor/32x32/actions/kt-remove.png share/icons/hicolor/32x32/actions/kt-set-max-download-speed.png share/icons/hicolor/32x32/actions/kt-set-max-upload-speed.png share/icons/hicolor/32x32/actions/kt-speed-limits.png share/icons/hicolor/32x32/actions/kt-start-all.png share/icons/hicolor/32x32/actions/kt-start.png share/icons/hicolor/32x32/actions/kt-stop-all.png share/icons/hicolor/32x32/actions/kt-stop.png share/icons/hicolor/32x32/actions/kt-upnp.png share/icons/hicolor/32x32/apps/ktorrent.png share/icons/hicolor/48x48/actions/kt-bandwidth-scheduler.png share/icons/hicolor/48x48/actions/kt-change-tracker.png share/icons/hicolor/48x48/actions/kt-check-data.png share/icons/hicolor/48x48/actions/kt-chunks.png share/icons/hicolor/48x48/actions/kt-info-widget.png share/icons/hicolor/48x48/actions/kt-magnet.png share/icons/hicolor/48x48/actions/kt-pause.png share/icons/hicolor/48x48/actions/kt-plugins.png share/icons/hicolor/48x48/actions/kt-queue-manager.png share/icons/hicolor/48x48/actions/kt-remove.png share/icons/hicolor/48x48/actions/kt-restore-defaults.png share/icons/hicolor/48x48/actions/kt-set-max-download-speed.png share/icons/hicolor/48x48/actions/kt-set-max-upload-speed.png share/icons/hicolor/48x48/actions/kt-show-hide.png share/icons/hicolor/48x48/actions/kt-show-statusbar.png share/icons/hicolor/48x48/actions/kt-speed-limits.png share/icons/hicolor/48x48/actions/kt-start-all.png share/icons/hicolor/48x48/actions/kt-start.png share/icons/hicolor/48x48/actions/kt-stop-all.png share/icons/hicolor/48x48/actions/kt-stop.png share/icons/hicolor/48x48/actions/kt-upnp.png share/icons/hicolor/48x48/apps/ktorrent.png share/icons/hicolor/64x64/actions/kt-magnet.png share/icons/hicolor/64x64/apps/ktorrent.png share/icons/hicolor/scalable/actions/kt-magnet.svgz share/icons/hicolor/scalable/actions/kt-set-max-download-speed.svgz share/icons/hicolor/scalable/actions/kt-set-max-upload-speed.svgz share/icons/hicolor/scalable/actions/kt-speed-limits.svgz share/knotifications5/ktorrent.notifyrc %%WEBENGINE%%%%DATADIR%%/opensearch/btdb.in/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/btdb.in/opensearch.xml %%WEBENGINE%%%%DATADIR%%/opensearch/btdig.com/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/btdig.com/opensearch.xml %%WEBENGINE%%%%DATADIR%%/opensearch/duckduckgo.com/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/duckduckgo.com/opensearch.xml %%WEBENGINE%%%%DATADIR%%/opensearch/torrentproject.se/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/torrentproject.se/opensearch.xml %%DATADIR%%/scripts/auto_remove/auto_remove.desktop %%DATADIR%%/scripts/auto_remove/auto_remove.py %%DATADIR%%/scripts/auto_remove/auto_remove.ui %%DATADIR%%/scripts/auto_resume/auto_resume.desktop %%DATADIR%%/scripts/auto_resume/auto_resume.py %%DATADIR%%/scripts/auto_resume/auto_resume.ui %%DATADIR%%/scripts/email_notifications/email_notifications.desktop %%DATADIR%%/scripts/email_notifications/email_notifications.py %%DATADIR%%/scripts/email_notifications/emailconfig.ui %%DATADIR%%/scripts/tracker_groups/tracker_groups.desktop %%DATADIR%%/scripts/tracker_groups/tracker_groups.py %%WEBENGINE%%%%DATADIR%%/search/home/body-background.jpg %%WEBENGINE%%%%DATADIR%%/search/home/box-bottom-left.png %%WEBENGINE%%%%DATADIR%%/search/home/box-bottom-middle.png %%WEBENGINE%%%%DATADIR%%/search/home/box-bottom-right.png %%WEBENGINE%%%%DATADIR%%/search/home/box-center.png %%WEBENGINE%%%%DATADIR%%/search/home/box-middle-left.png %%WEBENGINE%%%%DATADIR%%/search/home/box-middle-right.png %%WEBENGINE%%%%DATADIR%%/search/home/box-top-left.png %%WEBENGINE%%%%DATADIR%%/search/home/box-top-middle.png %%WEBENGINE%%%%DATADIR%%/search/home/box-top-right.png %%WEBENGINE%%%%DATADIR%%/search/home/home.css %%WEBENGINE%%%%DATADIR%%/search/home/home.html %%WEBENGINE%%%%DATADIR%%/search/home/ktorrent-icon.png %%WEBENGINE%%%%DATADIR%%/search/home/ktorrent_infopage.css share/kxmlgui5/ktorrent/ktorrent_bwschedulerui.rc share/kxmlgui5/ktorrent/ktorrent_downloadorderui.rc share/kxmlgui5/ktorrent/ktorrent_magnetgeneratorui.rc share/kxmlgui5/ktorrent/ktorrent_mediaplayerui.rc share/kxmlgui5/ktorrent/ktorrent_scriptingui.rc %%WEBENGINE%%share/kxmlgui5/ktorrent/ktorrent_searchui.rc %%WORKSPACE%%share/kxmlgui5/ktorrent/ktorrent_shutdownui.rc %%WEBENGINE%%share/kxmlgui5/ktorrent/ktorrent_syndicationui.rc share/kxmlgui5/ktorrent/ktorrentui.rc share/kxmlgui5/ktorrent/kttorrentactivityui.rc share/locale/ar/LC_MESSAGES/ktorrent.mo +share/locale/ast/LC_MESSAGES/ktorrent.mo share/locale/bg/LC_MESSAGES/ktorrent.mo share/locale/bs/LC_MESSAGES/ktorrent.mo share/locale/ca/LC_MESSAGES/ktorrent.mo share/locale/ca@valencia/LC_MESSAGES/ktorrent.mo share/locale/cs/LC_MESSAGES/ktorrent.mo share/locale/da/LC_MESSAGES/ktorrent.mo share/locale/de/LC_MESSAGES/ktorrent.mo share/locale/el/LC_MESSAGES/ktorrent.mo share/locale/en_GB/LC_MESSAGES/ktorrent.mo share/locale/eo/LC_MESSAGES/ktorrent.mo share/locale/es/LC_MESSAGES/ktorrent.mo share/locale/et/LC_MESSAGES/ktorrent.mo share/locale/eu/LC_MESSAGES/ktorrent.mo share/locale/fi/LC_MESSAGES/ktorrent.mo share/locale/fr/LC_MESSAGES/ktorrent.mo share/locale/ga/LC_MESSAGES/ktorrent.mo share/locale/gl/LC_MESSAGES/ktorrent.mo share/locale/he/LC_MESSAGES/ktorrent.mo share/locale/hi/LC_MESSAGES/ktorrent.mo share/locale/hr/LC_MESSAGES/ktorrent.mo share/locale/hu/LC_MESSAGES/ktorrent.mo share/locale/ia/LC_MESSAGES/ktorrent.mo share/locale/is/LC_MESSAGES/ktorrent.mo share/locale/it/LC_MESSAGES/ktorrent.mo share/locale/ja/LC_MESSAGES/ktorrent.mo share/locale/kk/LC_MESSAGES/ktorrent.mo share/locale/km/LC_MESSAGES/ktorrent.mo share/locale/ko/LC_MESSAGES/ktorrent.mo share/locale/lt/LC_MESSAGES/ktorrent.mo share/locale/lv/LC_MESSAGES/ktorrent.mo share/locale/mr/LC_MESSAGES/ktorrent.mo share/locale/nb/LC_MESSAGES/ktorrent.mo share/locale/nds/LC_MESSAGES/ktorrent.mo share/locale/nl/LC_MESSAGES/ktorrent.mo share/locale/nn/LC_MESSAGES/ktorrent.mo share/locale/pl/LC_MESSAGES/ktorrent.mo share/locale/pt/LC_MESSAGES/ktorrent.mo share/locale/pt_BR/LC_MESSAGES/ktorrent.mo share/locale/ro/LC_MESSAGES/ktorrent.mo share/locale/ru/LC_MESSAGES/ktorrent.mo share/locale/sk/LC_MESSAGES/ktorrent.mo share/locale/sl/LC_MESSAGES/ktorrent.mo share/locale/sr/LC_MESSAGES/ktorrent.mo share/locale/sv/LC_MESSAGES/ktorrent.mo share/locale/tr/LC_MESSAGES/ktorrent.mo share/locale/ug/LC_MESSAGES/ktorrent.mo share/locale/uk/LC_MESSAGES/ktorrent.mo share/locale/zh_CN/LC_MESSAGES/ktorrent.mo share/locale/zh_TW/LC_MESSAGES/ktorrent.mo share/metainfo/org.kde.ktorrent.appdata.xml diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 0de6803340f8..4dc2b57ed380 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706329 -SHA256 (KDE/release-service/20.12.3/libktorrent-20.12.3.tar.xz) = c31e083cf551e9b51a0641177469da6419c67182f61e4d1f2a000e7ef2767efa -SIZE (KDE/release-service/20.12.3/libktorrent-20.12.3.tar.xz) = 604488 +TIMESTAMP = 1618579205 +SHA256 (KDE/release-service/21.04.0/libktorrent-21.04.0.tar.xz) = 3b95d6ae91c416533129a3762742afdf7fea57526a12cded6e75ca2da65e1031 +SIZE (KDE/release-service/21.04.0/libktorrent-21.04.0.tar.xz) = 603584 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index c78bec5eb063..78edd8878145 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706310 -SHA256 (KDE/release-service/20.12.3/akonadi-calendar-20.12.3.tar.xz) = 93275e67e403056a5d7ba9c4231a10ec08e2df542525378d507d37e493f8f114 -SIZE (KDE/release-service/20.12.3/akonadi-calendar-20.12.3.tar.xz) = 342788 +TIMESTAMP = 1618579206 +SHA256 (KDE/release-service/21.04.0/akonadi-calendar-21.04.0.tar.xz) = a198bade1dd014d78a289eb76712388f055c7e7d7359c44aba2c857eba14c9f9 +SIZE (KDE/release-service/21.04.0/akonadi-calendar-21.04.0.tar.xz) = 348028 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index c86124affe0f..e165327af981 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706316 -SHA256 (KDE/release-service/20.12.3/akonadi-contacts-20.12.3.tar.xz) = 2437f17f249df22e125aa3c5e12ba39a54fc063fe146b9756b5104e946cf87e2 -SIZE (KDE/release-service/20.12.3/akonadi-contacts-20.12.3.tar.xz) = 414416 +TIMESTAMP = 1618579206 +SHA256 (KDE/release-service/21.04.0/akonadi-contacts-21.04.0.tar.xz) = 508e27b5a95b4ecc4070cc0b73d6cb8d74bc06f23874d8bcc6dbdd86fa6e6084 +SIZE (KDE/release-service/21.04.0/akonadi-contacts-21.04.0.tar.xz) = 419228 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 7be2bb23f0af..d26b863f6e62 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706295 -SHA256 (KDE/release-service/20.12.3/akonadi-mime-20.12.3.tar.xz) = f45d97ddfed592db897cb7dd0e50183dd72b0f2bdb761168917bd4b739d7ddb6 -SIZE (KDE/release-service/20.12.3/akonadi-mime-20.12.3.tar.xz) = 136144 +TIMESTAMP = 1618579207 +SHA256 (KDE/release-service/21.04.0/akonadi-mime-21.04.0.tar.xz) = 3b40689ef271be84d48cabf97ddb6e76e76287b7e7045b8e898660807512fb0c +SIZE (KDE/release-service/21.04.0/akonadi-mime-21.04.0.tar.xz) = 140616 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index d7b730190e1d..72e380feca0b 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706303 -SHA256 (KDE/release-service/20.12.3/akonadi-notes-20.12.3.tar.xz) = 87455a4cab94a8dae020e3a6ecf1e924440d8df1840bde6cb69a046e5cace5ba -SIZE (KDE/release-service/20.12.3/akonadi-notes-20.12.3.tar.xz) = 22876 +TIMESTAMP = 1618579208 +SHA256 (KDE/release-service/21.04.0/akonadi-notes-21.04.0.tar.xz) = 40f071df637788f0512d7c158846010e42ce10615d30375191e611892f1e1550 +SIZE (KDE/release-service/21.04.0/akonadi-notes-21.04.0.tar.xz) = 26812 diff --git a/net/akonadi-notes/pkg-plist b/net/akonadi-notes/pkg-plist index f7e33c008ecb..0b763fd9e2b7 100644 --- a/net/akonadi-notes/pkg-plist +++ b/net/akonadi-notes/pkg-plist @@ -1,59 +1,60 @@ include/KF5/Akonadi/Notes/NoteUtils include/KF5/akonadi-notes_version.h include/KF5/akonadi/notes/NoteUtils include/KF5/akonadi/notes/akonadi-notes_export.h include/KF5/akonadi/notes/noteutils.h lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfig.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfigVersion.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets.cmake lib/libKF5AkonadiNotes.so lib/libKF5AkonadiNotes.so.5 lib/libKF5AkonadiNotes.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiNotes.pri share/locale/ar/LC_MESSAGES/akonadinotes5.mo share/locale/ast/LC_MESSAGES/akonadinotes5.mo +share/locale/bg/LC_MESSAGES/akonadinotes5.mo share/locale/bs/LC_MESSAGES/akonadinotes5.mo share/locale/ca/LC_MESSAGES/akonadinotes5.mo share/locale/ca@valencia/LC_MESSAGES/akonadinotes5.mo share/locale/cs/LC_MESSAGES/akonadinotes5.mo share/locale/da/LC_MESSAGES/akonadinotes5.mo share/locale/de/LC_MESSAGES/akonadinotes5.mo share/locale/el/LC_MESSAGES/akonadinotes5.mo share/locale/en_GB/LC_MESSAGES/akonadinotes5.mo share/locale/es/LC_MESSAGES/akonadinotes5.mo share/locale/et/LC_MESSAGES/akonadinotes5.mo share/locale/eu/LC_MESSAGES/akonadinotes5.mo share/locale/fi/LC_MESSAGES/akonadinotes5.mo share/locale/fr/LC_MESSAGES/akonadinotes5.mo share/locale/ga/LC_MESSAGES/akonadinotes5.mo share/locale/gl/LC_MESSAGES/akonadinotes5.mo share/locale/he/LC_MESSAGES/akonadinotes5.mo share/locale/hi/LC_MESSAGES/akonadinotes5.mo share/locale/hu/LC_MESSAGES/akonadinotes5.mo share/locale/ia/LC_MESSAGES/akonadinotes5.mo share/locale/it/LC_MESSAGES/akonadinotes5.mo share/locale/ja/LC_MESSAGES/akonadinotes5.mo share/locale/kk/LC_MESSAGES/akonadinotes5.mo share/locale/km/LC_MESSAGES/akonadinotes5.mo share/locale/ko/LC_MESSAGES/akonadinotes5.mo share/locale/lt/LC_MESSAGES/akonadinotes5.mo share/locale/mr/LC_MESSAGES/akonadinotes5.mo share/locale/nb/LC_MESSAGES/akonadinotes5.mo share/locale/nds/LC_MESSAGES/akonadinotes5.mo share/locale/nl/LC_MESSAGES/akonadinotes5.mo share/locale/nn/LC_MESSAGES/akonadinotes5.mo share/locale/pl/LC_MESSAGES/akonadinotes5.mo share/locale/pt/LC_MESSAGES/akonadinotes5.mo share/locale/pt_BR/LC_MESSAGES/akonadinotes5.mo share/locale/ro/LC_MESSAGES/akonadinotes5.mo share/locale/ru/LC_MESSAGES/akonadinotes5.mo share/locale/sk/LC_MESSAGES/akonadinotes5.mo share/locale/sl/LC_MESSAGES/akonadinotes5.mo share/locale/sr/LC_MESSAGES/akonadinotes5.mo share/locale/sv/LC_MESSAGES/akonadinotes5.mo share/locale/tr/LC_MESSAGES/akonadinotes5.mo share/locale/ug/LC_MESSAGES/akonadinotes5.mo share/locale/uk/LC_MESSAGES/akonadinotes5.mo share/locale/zh_CN/LC_MESSAGES/akonadinotes5.mo share/locale/zh_TW/LC_MESSAGES/akonadinotes5.mo diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index c6778b341bcd..6cf34e2bd3c3 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706312 -SHA256 (KDE/release-service/20.12.3/akonadi-search-20.12.3.tar.xz) = f85cac2a99e94772d780ea8cbaaf069f86fd7c0b3e7a5c6ea1dbad5a2c104c2d -SIZE (KDE/release-service/20.12.3/akonadi-search-20.12.3.tar.xz) = 93984 +TIMESTAMP = 1618579209 +SHA256 (KDE/release-service/21.04.0/akonadi-search-21.04.0.tar.xz) = c7dc4fec6f7938b9862904495dac0f1ae7cc3d1c8164a70d3bf01660f14e3fa1 +SIZE (KDE/release-service/21.04.0/akonadi-search-21.04.0.tar.xz) = 97880 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index b403f1e1ba15..378f0b080d29 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706318 -SHA256 (KDE/release-service/20.12.3/calendarsupport-20.12.3.tar.xz) = ab418fb8ed8a9aee1d0798fe934e59593b6b985c85220405814f159c954a8d10 -SIZE (KDE/release-service/20.12.3/calendarsupport-20.12.3.tar.xz) = 666200 +TIMESTAMP = 1618579210 +SHA256 (KDE/release-service/21.04.0/calendarsupport-21.04.0.tar.xz) = 8fd41c24640abfaf8cb3e338ed9700c86e90c7f69dbf37ff6b54175fe30d7d54 +SIZE (KDE/release-service/21.04.0/calendarsupport-21.04.0.tar.xz) = 670960 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index c331ae2d84ba..4b3cce2f3441 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706313 -SHA256 (KDE/release-service/20.12.3/eventviews-20.12.3.tar.xz) = 7b624e52fae929c9c69d989ec24601f10fd1af50674a2ce3ce7108e2f2866e5e -SIZE (KDE/release-service/20.12.3/eventviews-20.12.3.tar.xz) = 444100 +TIMESTAMP = 1618579210 +SHA256 (KDE/release-service/21.04.0/eventviews-21.04.0.tar.xz) = bbd80c0c5c078d0a539cfa43f3b3414e05cae2b2ec9b0d6d986702fa9c3c09ff +SIZE (KDE/release-service/21.04.0/eventviews-21.04.0.tar.xz) = 447000 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 7a618df62cef..a98bcdb1a69b 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706300 -SHA256 (KDE/release-service/20.12.3/incidenceeditor-20.12.3.tar.xz) = 44059c06fc725b085a196c619cdb509829f7a57f17eced56fc6755cdcd07ce13 -SIZE (KDE/release-service/20.12.3/incidenceeditor-20.12.3.tar.xz) = 546308 +TIMESTAMP = 1618579211 +SHA256 (KDE/release-service/21.04.0/incidenceeditor-21.04.0.tar.xz) = bf6381e0d26d60234cdbb285d3b46bf30dc7df559b30fc855379c0274b1390b9 +SIZE (KDE/release-service/21.04.0/incidenceeditor-21.04.0.tar.xz) = 539892 diff --git a/net/kalarmcal/distinfo b/net/kalarmcal/distinfo index 51b1572cef7d..a9adffb28a0b 100644 --- a/net/kalarmcal/distinfo +++ b/net/kalarmcal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706315 -SHA256 (KDE/release-service/20.12.3/kalarmcal-20.12.3.tar.xz) = 0f7e1b46f81c9a77178ea93b536b3985aad00dcf5bd01881b7945bccf96d98a0 -SIZE (KDE/release-service/20.12.3/kalarmcal-20.12.3.tar.xz) = 576680 +TIMESTAMP = 1618579212 +SHA256 (KDE/release-service/21.04.0/kalarmcal-21.04.0.tar.xz) = a3866ca74629e1d29372db8f01779ab042d8663b52404343597efe6155ace532 +SIZE (KDE/release-service/21.04.0/kalarmcal-21.04.0.tar.xz) = 579956 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index c39b2665fec1..ab78adf49082 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706294 -SHA256 (KDE/release-service/20.12.3/kcalutils-20.12.3.tar.xz) = 1d1f333e55c0d6e476315bf8e08fc2a332e51a122985f6757eb669560148432b -SIZE (KDE/release-service/20.12.3/kcalutils-20.12.3.tar.xz) = 324512 +TIMESTAMP = 1618579213 +SHA256 (KDE/release-service/21.04.0/kcalutils-21.04.0.tar.xz) = 1b13ea5e03426a7985a4274006cb1c3b855556fcd2ebc5b757bd2ac6e143744f +SIZE (KDE/release-service/21.04.0/kcalutils-21.04.0.tar.xz) = 333732 diff --git a/net/kcalutils/pkg-plist b/net/kcalutils/pkg-plist index 1dfc112c5091..33d24de6b67f 100644 --- a/net/kcalutils/pkg-plist +++ b/net/kcalutils/pkg-plist @@ -1,73 +1,74 @@ share/qlogging-categories5/kcalutils.categories share/qlogging-categories5/kcalutils.renamecategories include/KF5/KCalUtils/KCalUtils/DndFactory include/KF5/KCalUtils/KCalUtils/HtmlExport include/KF5/KCalUtils/KCalUtils/ICalDrag include/KF5/KCalUtils/KCalUtils/IncidenceFormatter include/KF5/KCalUtils/KCalUtils/RecurrenceActions include/KF5/KCalUtils/KCalUtils/Stringify include/KF5/KCalUtils/KCalUtils/VCalDrag include/KF5/KCalUtils/kcalutils/HTMLExportSettings include/KF5/KCalUtils/kcalutils/dndfactory.h include/KF5/KCalUtils/kcalutils/htmlexport.h include/KF5/KCalUtils/kcalutils/htmlexportsettings.h include/KF5/KCalUtils/kcalutils/icaldrag.h include/KF5/KCalUtils/kcalutils/incidenceformatter.h include/KF5/KCalUtils/kcalutils/kcalutils_export.h include/KF5/KCalUtils/kcalutils/recurrenceactions.h include/KF5/KCalUtils/kcalutils/stringify.h include/KF5/KCalUtils/kcalutils/vcaldrag.h include/KF5/kcalutils_version.h lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfig.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfigVersion.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kcalendar_grantlee_plugin.so lib/libKF5CalendarUtils.so lib/libKF5CalendarUtils.so.5 lib/libKF5CalendarUtils.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KCalUtils.pri share/locale/ar/LC_MESSAGES/libkcalutils5.mo share/locale/bs/LC_MESSAGES/libkcalutils5.mo share/locale/ca/LC_MESSAGES/libkcalutils5.mo share/locale/ca@valencia/LC_MESSAGES/libkcalutils5.mo share/locale/cs/LC_MESSAGES/libkcalutils5.mo share/locale/da/LC_MESSAGES/libkcalutils5.mo share/locale/de/LC_MESSAGES/libkcalutils5.mo share/locale/el/LC_MESSAGES/libkcalutils5.mo share/locale/en_GB/LC_MESSAGES/libkcalutils5.mo share/locale/es/LC_MESSAGES/libkcalutils5.mo share/locale/et/LC_MESSAGES/libkcalutils5.mo +share/locale/eu/LC_MESSAGES/libkcalutils5.mo share/locale/fi/LC_MESSAGES/libkcalutils5.mo share/locale/fr/LC_MESSAGES/libkcalutils5.mo share/locale/ga/LC_MESSAGES/libkcalutils5.mo share/locale/gl/LC_MESSAGES/libkcalutils5.mo share/locale/hr/LC_MESSAGES/libkcalutils5.mo share/locale/hu/LC_MESSAGES/libkcalutils5.mo share/locale/ia/LC_MESSAGES/libkcalutils5.mo share/locale/it/LC_MESSAGES/libkcalutils5.mo share/locale/ja/LC_MESSAGES/libkcalutils5.mo share/locale/kk/LC_MESSAGES/libkcalutils5.mo share/locale/km/LC_MESSAGES/libkcalutils5.mo share/locale/ko/LC_MESSAGES/libkcalutils5.mo share/locale/lt/LC_MESSAGES/libkcalutils5.mo share/locale/mr/LC_MESSAGES/libkcalutils5.mo share/locale/nb/LC_MESSAGES/libkcalutils5.mo share/locale/nds/LC_MESSAGES/libkcalutils5.mo share/locale/nl/LC_MESSAGES/libkcalutils5.mo share/locale/nn/LC_MESSAGES/libkcalutils5.mo share/locale/pa/LC_MESSAGES/libkcalutils5.mo share/locale/pl/LC_MESSAGES/libkcalutils5.mo share/locale/pt/LC_MESSAGES/libkcalutils5.mo share/locale/pt_BR/LC_MESSAGES/libkcalutils5.mo share/locale/ro/LC_MESSAGES/libkcalutils5.mo share/locale/ru/LC_MESSAGES/libkcalutils5.mo share/locale/sk/LC_MESSAGES/libkcalutils5.mo share/locale/sl/LC_MESSAGES/libkcalutils5.mo share/locale/sr/LC_MESSAGES/libkcalutils5.mo share/locale/sv/LC_MESSAGES/libkcalutils5.mo share/locale/tr/LC_MESSAGES/libkcalutils5.mo share/locale/ug/LC_MESSAGES/libkcalutils5.mo share/locale/uk/LC_MESSAGES/libkcalutils5.mo share/locale/zh_CN/LC_MESSAGES/libkcalutils5.mo share/locale/zh_TW/LC_MESSAGES/libkcalutils5.mo diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 61b6fc4104f7..7dd41c929452 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706310 -SHA256 (KDE/release-service/20.12.3/kdenetwork-filesharing-20.12.3.tar.xz) = 62ad6b0908e8c0fd7a3ff05b01e60593e7e7a6b861b25743555ce7c7c320e3d1 -SIZE (KDE/release-service/20.12.3/kdenetwork-filesharing-20.12.3.tar.xz) = 346716 +TIMESTAMP = 1618579214 +SHA256 (KDE/release-service/21.04.0/kdenetwork-filesharing-21.04.0.tar.xz) = 4df5d8d8e1dd9981936221dff145fa874ecf077183742c5374ee38b9a9bb491d +SIZE (KDE/release-service/21.04.0/kdenetwork-filesharing-21.04.0.tar.xz) = 353264 diff --git a/net/kdenetwork-filesharing/pkg-plist b/net/kdenetwork-filesharing/pkg-plist index 923c89719e25..3eab75ac19bb 100644 --- a/net/kdenetwork-filesharing/pkg-plist +++ b/net/kdenetwork-filesharing/pkg-plist @@ -1,60 +1,59 @@ lib/libexec/kauth/authhelper share/dbus-1/system-services/org.kde.filesharing.samba.service share/dbus-1/system.d/org.kde.filesharing.samba.conf share/polkit-1/actions/org.kde.filesharing.samba.policy -%%QT_PLUGINDIR%%/sambausershareplugin.so -share/kservices5/sambausershareplugin.desktop +%%QT_PLUGINDIR%%/kf5/propertiesdialog/sambausershareplugin.so share/locale/ast/LC_MESSAGES/kfileshare.mo share/locale/ar/LC_MESSAGES/kfileshare.mo share/locale/bg/LC_MESSAGES/kfileshare.mo share/locale/bs/LC_MESSAGES/kfileshare.mo share/locale/ca/LC_MESSAGES/kfileshare.mo share/locale/ca@valencia/LC_MESSAGES/kfileshare.mo share/locale/cs/LC_MESSAGES/kfileshare.mo share/locale/da/LC_MESSAGES/kfileshare.mo share/locale/de/LC_MESSAGES/kfileshare.mo share/locale/el/LC_MESSAGES/kfileshare.mo share/locale/en_GB/LC_MESSAGES/kfileshare.mo share/locale/eo/LC_MESSAGES/kfileshare.mo share/locale/es/LC_MESSAGES/kfileshare.mo share/locale/et/LC_MESSAGES/kfileshare.mo share/locale/eu/LC_MESSAGES/kfileshare.mo share/locale/fa/LC_MESSAGES/kfileshare.mo share/locale/fi/LC_MESSAGES/kfileshare.mo share/locale/fr/LC_MESSAGES/kfileshare.mo share/locale/ga/LC_MESSAGES/kfileshare.mo share/locale/gl/LC_MESSAGES/kfileshare.mo share/locale/he/LC_MESSAGES/kfileshare.mo share/locale/hi/LC_MESSAGES/kfileshare.mo share/locale/hr/LC_MESSAGES/kfileshare.mo share/locale/hu/LC_MESSAGES/kfileshare.mo share/locale/ia/LC_MESSAGES/kfileshare.mo share/locale/is/LC_MESSAGES/kfileshare.mo share/locale/it/LC_MESSAGES/kfileshare.mo share/locale/ja/LC_MESSAGES/kfileshare.mo share/locale/kk/LC_MESSAGES/kfileshare.mo share/locale/km/LC_MESSAGES/kfileshare.mo share/locale/ko/LC_MESSAGES/kfileshare.mo share/locale/lt/LC_MESSAGES/kfileshare.mo share/locale/lv/LC_MESSAGES/kfileshare.mo share/locale/mr/LC_MESSAGES/kfileshare.mo share/locale/nb/LC_MESSAGES/kfileshare.mo share/locale/nds/LC_MESSAGES/kfileshare.mo share/locale/nl/LC_MESSAGES/kfileshare.mo share/locale/nn/LC_MESSAGES/kfileshare.mo share/locale/pa/LC_MESSAGES/kfileshare.mo share/locale/pl/LC_MESSAGES/kfileshare.mo share/locale/pt/LC_MESSAGES/kfileshare.mo share/locale/pt_BR/LC_MESSAGES/kfileshare.mo share/locale/ro/LC_MESSAGES/kfileshare.mo share/locale/ru/LC_MESSAGES/kfileshare.mo share/locale/sk/LC_MESSAGES/kfileshare.mo share/locale/sl/LC_MESSAGES/kfileshare.mo share/locale/sr/LC_MESSAGES/kfileshare.mo share/locale/sv/LC_MESSAGES/kfileshare.mo share/locale/tr/LC_MESSAGES/kfileshare.mo share/locale/ug/LC_MESSAGES/kfileshare.mo share/locale/uk/LC_MESSAGES/kfileshare.mo share/locale/zh_CN/LC_MESSAGES/kfileshare.mo share/locale/zh_TW/LC_MESSAGES/kfileshare.mo share/metainfo/org.kde.kdenetwork-filesharing.metainfo.xml diff --git a/net/kget/distinfo b/net/kget/distinfo index 722d0084a46c..18eda959afe8 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706306 -SHA256 (KDE/release-service/20.12.3/kget-20.12.3.tar.xz) = d4eed8f395262cfd94c2b8c9caea3523d78c68000d471c1d76ad1aecc6f6024e -SIZE (KDE/release-service/20.12.3/kget-20.12.3.tar.xz) = 5583636 +TIMESTAMP = 1618579215 +SHA256 (KDE/release-service/21.04.0/kget-21.04.0.tar.xz) = 3b07ea59013a97704f1eaa3aa578770e611708ddc871c1bb6d13a0331e499a53 +SIZE (KDE/release-service/21.04.0/kget-21.04.0.tar.xz) = 5589608 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index c15a8c49ab4a..8cc204aa38f4 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706298 -SHA256 (KDE/release-service/20.12.3/kidentitymanagement-20.12.3.tar.xz) = 036a3b55d11a106ca2a4ab0712942baeea58b7559422730eaf6f904c4a902d98 -SIZE (KDE/release-service/20.12.3/kidentitymanagement-20.12.3.tar.xz) = 152000 +TIMESTAMP = 1618579215 +SHA256 (KDE/release-service/21.04.0/kidentitymanagement-21.04.0.tar.xz) = aaf5bf200f9bb9caf1571ebd1dc2075bda1e2afe6be27b9cc9857dffe99903f9 +SIZE (KDE/release-service/21.04.0/kidentitymanagement-21.04.0.tar.xz) = 155832 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 52e68c16c928..fb5cbcbd3e08 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706305 -SHA256 (KDE/release-service/20.12.3/kimap-20.12.3.tar.xz) = 321dbb9881480e7fa75a9a6c8b117030f0cbc97e5e43f39dff8fe643fd271320 -SIZE (KDE/release-service/20.12.3/kimap-20.12.3.tar.xz) = 124676 +TIMESTAMP = 1618579216 +SHA256 (KDE/release-service/21.04.0/kimap-21.04.0.tar.xz) = dd2e04c17c2fad5ec51cf1087ea59ffe1c72070afed80f4e4bbae0f0a3e66c39 +SIZE (KDE/release-service/21.04.0/kimap-21.04.0.tar.xz) = 128292 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 18e0842c67cc..81895041b0b8 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706297 -SHA256 (KDE/release-service/20.12.3/kio-gdrive-20.12.3.tar.xz) = 4569cc07681aa88a81bda7923c795916cc6d1578859e11f0bb336699db8f7b70 -SIZE (KDE/release-service/20.12.3/kio-gdrive-20.12.3.tar.xz) = 64532 +TIMESTAMP = 1618579217 +SHA256 (KDE/release-service/21.04.0/kio-gdrive-21.04.0.tar.xz) = 506f79cf2d4a86f5ce0e3905c1de481ba8558ac865f50bd1a347aeef35183e5c +SIZE (KDE/release-service/21.04.0/kio-gdrive-21.04.0.tar.xz) = 68056 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 9d1c82c945db..f516a61f9d3a 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706313 -SHA256 (KDE/release-service/20.12.3/kitinerary-20.12.3.tar.xz) = 559ea8d470e7c053f92470b3141657025950749200ec4deb3cc86e4bd9111add -SIZE (KDE/release-service/20.12.3/kitinerary-20.12.3.tar.xz) = 1808996 +TIMESTAMP = 1618579217 +SHA256 (KDE/release-service/21.04.0/kitinerary-21.04.0.tar.xz) = 3ed2fe97f5f0120e977151fe1becc840806ee3796c280146b11287089860bf6b +SIZE (KDE/release-service/21.04.0/kitinerary-21.04.0.tar.xz) = 1819260 diff --git a/net/kitinerary/pkg-plist b/net/kitinerary/pkg-plist index 1c4cdb36657f..d518e8c62846 100644 --- a/net/kitinerary/pkg-plist +++ b/net/kitinerary/pkg-plist @@ -1,133 +1,135 @@ include/KPim/KItinerary/Action include/KPim/KItinerary/AlphaId include/KPim/KItinerary/BarcodeDecoder include/KPim/KItinerary/Brand include/KPim/KItinerary/BusTrip include/KPim/KItinerary/CalendarHandler include/KPim/KItinerary/CountryDb include/KPim/KItinerary/CreativeWork include/KPim/KItinerary/Datatypes include/KPim/KItinerary/DocumentUtil include/KPim/KItinerary/Event include/KPim/KItinerary/Extractor include/KPim/KItinerary/ExtractorCapabilities include/KPim/KItinerary/ExtractorEngine include/KPim/KItinerary/ExtractorFilter include/KPim/KItinerary/ExtractorInput include/KPim/KItinerary/ExtractorPostprocessor include/KPim/KItinerary/ExtractorRepository include/KPim/KItinerary/ExtractorValidator include/KPim/KItinerary/File include/KPim/KItinerary/Flight include/KPim/KItinerary/HtmlDocument include/KPim/KItinerary/IataBcbpParser include/KPim/KItinerary/JsonLdDocument include/KPim/KItinerary/KnowledgeDb include/KPim/KItinerary/LocationUtil include/KPim/KItinerary/MergeUtil include/KPim/KItinerary/Organization include/KPim/KItinerary/PdfDocument include/KPim/KItinerary/PdfImage include/KPim/KItinerary/Person include/KPim/KItinerary/Place include/KPim/KItinerary/Rct2Ticket include/KPim/KItinerary/RentalCar include/KPim/KItinerary/Reservation include/KPim/KItinerary/SortUtil include/KPim/KItinerary/Taxi include/KPim/KItinerary/Ticket include/KPim/KItinerary/TrainTrip include/KPim/KItinerary/Uic9183Block include/KPim/KItinerary/Uic9183Parser include/KPim/KItinerary/Uic9183TicketLayout +include/KPim/KItinerary/Uic9183Utils include/KPim/KItinerary/VdvTicket include/KPim/KItinerary/VdvTicketParser include/KPim/KItinerary/Vendor0080Block include/KPim/KItinerary/Visit include/KPim/kitinerary/action.h include/KPim/kitinerary/alphaid.h include/KPim/kitinerary/barcodedecoder.h include/KPim/kitinerary/brand.h include/KPim/kitinerary/bustrip.h include/KPim/kitinerary/calendarhandler.h include/KPim/kitinerary/countrydb.h include/KPim/kitinerary/creativework.h include/KPim/kitinerary/datatypes.h include/KPim/kitinerary/documentutil.h include/KPim/kitinerary/event.h include/KPim/kitinerary/extractor.h include/KPim/kitinerary/extractorcapabilities.h include/KPim/kitinerary/extractorengine.h include/KPim/kitinerary/extractorfilter.h include/KPim/kitinerary/extractorinput.h include/KPim/kitinerary/extractorpostprocessor.h include/KPim/kitinerary/extractorrepository.h include/KPim/kitinerary/extractorvalidator.h include/KPim/kitinerary/file.h include/KPim/kitinerary/flight.h include/KPim/kitinerary/htmldocument.h include/KPim/kitinerary/iatabcbpparser.h include/KPim/kitinerary/jsonlddocument.h include/KPim/kitinerary/kitinerary_export.h include/KPim/kitinerary/knowledgedb.h include/KPim/kitinerary/locationutil.h include/KPim/kitinerary/mergeutil.h include/KPim/kitinerary/organization.h include/KPim/kitinerary/pdfdocument.h include/KPim/kitinerary/pdfimage.h include/KPim/kitinerary/person.h include/KPim/kitinerary/place.h include/KPim/kitinerary/rct2ticket.h include/KPim/kitinerary/rentalcar.h include/KPim/kitinerary/reservation.h include/KPim/kitinerary/sortutil.h include/KPim/kitinerary/taxi.h include/KPim/kitinerary/ticket.h include/KPim/kitinerary/traintrip.h include/KPim/kitinerary/uic9183block.h include/KPim/kitinerary/uic9183parser.h include/KPim/kitinerary/uic9183ticketlayout.h +include/KPim/kitinerary/uic9183utils.h include/KPim/kitinerary/vdvticket.h include/KPim/kitinerary/vdvticketparser.h include/KPim/kitinerary/vendor0080block.h include/KPim/kitinerary/visit.h include/KPim/kitinerary_version.h lib/cmake/KPimItinerary/KPimItineraryConfig.cmake lib/cmake/KPimItinerary/KPimItineraryConfigVersion.cmake lib/cmake/KPimItinerary/KPimItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimItinerary/KPimItineraryTargets.cmake lib/libKPimItinerary.so lib/libKPimItinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimItinerary.so.5 lib/libexec/kf5/kitinerary-extractor share/locale/ar/LC_MESSAGES/kitinerary.mo share/locale/ca/LC_MESSAGES/kitinerary.mo share/locale/ca@valencia/LC_MESSAGES/kitinerary.mo share/locale/cs/LC_MESSAGES/kitinerary.mo share/locale/da/LC_MESSAGES/kitinerary.mo share/locale/de/LC_MESSAGES/kitinerary.mo share/locale/en_GB/LC_MESSAGES/kitinerary.mo share/locale/es/LC_MESSAGES/kitinerary.mo share/locale/et/LC_MESSAGES/kitinerary.mo share/locale/fi/LC_MESSAGES/kitinerary.mo share/locale/fr/LC_MESSAGES/kitinerary.mo share/locale/gl/LC_MESSAGES/kitinerary.mo share/locale/ia/LC_MESSAGES/kitinerary.mo share/locale/it/LC_MESSAGES/kitinerary.mo share/locale/ja/LC_MESSAGES/kitinerary.mo share/locale/ko/LC_MESSAGES/kitinerary.mo share/locale/lt/LC_MESSAGES/kitinerary.mo share/locale/nl/LC_MESSAGES/kitinerary.mo share/locale/nn/LC_MESSAGES/kitinerary.mo share/locale/pl/LC_MESSAGES/kitinerary.mo share/locale/pt/LC_MESSAGES/kitinerary.mo share/locale/pt_BR/LC_MESSAGES/kitinerary.mo share/locale/ru/LC_MESSAGES/kitinerary.mo share/locale/sk/LC_MESSAGES/kitinerary.mo share/locale/sl/LC_MESSAGES/kitinerary.mo share/locale/sv/LC_MESSAGES/kitinerary.mo share/locale/uk/LC_MESSAGES/kitinerary.mo share/locale/zh_CN/LC_MESSAGES/kitinerary.mo share/locale/zh_TW/LC_MESSAGES/kitinerary.mo share/mime/packages/application-vnd-kde-itinerary.xml share/qlogging-categories5/org_kde_kitinerary.categories diff --git a/net/kldap/Makefile b/net/kldap/Makefile index 8c8195c29bb3..88afd7d60fc1 100644 --- a/net/kldap/Makefile +++ b/net/kldap/Makefile @@ -1,26 +1,27 @@ PORTNAME= kldap DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= LDAP access API for KDE LICENSE= LGPL21 -LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 +LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ + libqt5keychain.so:security/qtkeychain USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm completion config coreaddons i18n kio widgetsaddons service # pim components USE_KDE+= mbox USE_QT= concurrent core dbus gui network widgets \ buildtools_build qmake_build USE_OPENLDAP= yes USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 431d33f9d12b..aae3037e388b 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706303 -SHA256 (KDE/release-service/20.12.3/kldap-20.12.3.tar.xz) = 4c0cbcdffe92b0f7884721f564702aab65a208e5938c9a118a1ef30082d9d653 -SIZE (KDE/release-service/20.12.3/kldap-20.12.3.tar.xz) = 164652 +TIMESTAMP = 1618579218 +SHA256 (KDE/release-service/21.04.0/kldap-21.04.0.tar.xz) = 8f00ce4fb66efd5566c40d26c959bf1c863646b56d7c0b56a314827ff1bf18d7 +SIZE (KDE/release-service/21.04.0/kldap-21.04.0.tar.xz) = 170760 diff --git a/net/kldap/pkg-plist b/net/kldap/pkg-plist index c91ce7ebad8e..c2d9d8a4061a 100644 --- a/net/kldap/pkg-plist +++ b/net/kldap/pkg-plist @@ -1,146 +1,152 @@ include/KF5/KLDAP/KLDAP/AddHostDialog include/KF5/KLDAP/KLDAP/Ber include/KF5/KLDAP/KLDAP/LdapClient include/KF5/KLDAP/KLDAP/LdapClientSearch include/KF5/KLDAP/KLDAP/LdapClientSearchConfig +include/KF5/KLDAP/KLDAP/LdapClientSearchConfigReadConfigJob +include/KF5/KLDAP/KLDAP/LdapClientSearchConfigWriteConfigJob include/KF5/KLDAP/KLDAP/LdapConfigWidget include/KF5/KLDAP/KLDAP/LdapConfigureWidget include/KF5/KLDAP/KLDAP/LdapConnection include/KF5/KLDAP/KLDAP/LdapControl include/KF5/KLDAP/KLDAP/LdapDN include/KF5/KLDAP/KLDAP/LdapDefs include/KF5/KLDAP/KLDAP/LdapObject include/KF5/KLDAP/KLDAP/LdapOperation include/KF5/KLDAP/KLDAP/LdapSearch +include/KF5/KLDAP/KLDAP/LdapSearchClientReadConfigServerJob include/KF5/KLDAP/KLDAP/LdapServer include/KF5/KLDAP/KLDAP/LdapUrl include/KF5/KLDAP/KLDAP/Ldif include/KF5/KLDAP/kldap/addhostdialog.h include/KF5/KLDAP/kldap/ber.h include/KF5/KLDAP/kldap/kldap_export.h include/KF5/KLDAP/kldap/ldapclient.h include/KF5/KLDAP/kldap/ldapclientsearch.h include/KF5/KLDAP/kldap/ldapclientsearchconfig.h +include/KF5/KLDAP/kldap/ldapclientsearchconfigreadconfigjob.h +include/KF5/KLDAP/kldap/ldapclientsearchconfigwriteconfigjob.h include/KF5/KLDAP/kldap/ldapconfigurewidget.h include/KF5/KLDAP/kldap/ldapconfigwidget.h include/KF5/KLDAP/kldap/ldapconnection.h include/KF5/KLDAP/kldap/ldapcontrol.h include/KF5/KLDAP/kldap/ldapdefs.h include/KF5/KLDAP/kldap/ldapdn.h include/KF5/KLDAP/kldap/ldapobject.h include/KF5/KLDAP/kldap/ldapoperation.h include/KF5/KLDAP/kldap/ldapsearch.h +include/KF5/KLDAP/kldap/ldapsearchclientreadconfigserverjob.h include/KF5/KLDAP/kldap/ldapserver.h include/KF5/KLDAP/kldap/ldapurl.h include/KF5/KLDAP/kldap/ldif.h include/KF5/kldap_version.h lib/cmake/KF5Ldap/KF5LdapConfig.cmake lib/cmake/KF5Ldap/KF5LdapConfigVersion.cmake lib/cmake/KF5Ldap/KF5LdapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Ldap/KF5LdapTargets.cmake lib/libKF5Ldap.so lib/libKF5Ldap.so.5 lib/libKF5Ldap.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Ldap.pri %%QT_PLUGINDIR%%/kf5/kio/ldap.so share/kservices5/ldap.protocol share/kservices5/ldaps.protocol share/locale/ar/LC_MESSAGES/kio_ldap.mo share/locale/ar/LC_MESSAGES/libkldap5.mo share/locale/bg/LC_MESSAGES/kio_ldap.mo share/locale/bs/LC_MESSAGES/kio_ldap.mo share/locale/bs/LC_MESSAGES/libkldap5.mo share/locale/ca/LC_MESSAGES/kio_ldap.mo share/locale/ca/LC_MESSAGES/libkldap5.mo share/locale/ca@valencia/LC_MESSAGES/kio_ldap.mo share/locale/ca@valencia/LC_MESSAGES/libkldap5.mo share/locale/cs/LC_MESSAGES/kio_ldap.mo share/locale/cs/LC_MESSAGES/libkldap5.mo share/locale/da/LC_MESSAGES/kio_ldap.mo share/locale/da/LC_MESSAGES/libkldap5.mo share/locale/de/LC_MESSAGES/kio_ldap.mo share/locale/de/LC_MESSAGES/libkldap5.mo share/locale/el/LC_MESSAGES/kio_ldap.mo share/locale/el/LC_MESSAGES/libkldap5.mo share/locale/en_GB/LC_MESSAGES/kio_ldap.mo share/locale/en_GB/LC_MESSAGES/libkldap5.mo share/locale/eo/LC_MESSAGES/kio_ldap.mo share/locale/eo/LC_MESSAGES/libkldap5.mo share/locale/es/LC_MESSAGES/kio_ldap.mo share/locale/es/LC_MESSAGES/libkldap5.mo share/locale/et/LC_MESSAGES/kio_ldap.mo share/locale/et/LC_MESSAGES/libkldap5.mo share/locale/eu/LC_MESSAGES/kio_ldap.mo share/locale/fa/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/libkldap5.mo share/locale/fr/LC_MESSAGES/kio_ldap.mo share/locale/fr/LC_MESSAGES/libkldap5.mo share/locale/ga/LC_MESSAGES/kio_ldap.mo share/locale/ga/LC_MESSAGES/libkldap5.mo share/locale/gl/LC_MESSAGES/kio_ldap.mo share/locale/gl/LC_MESSAGES/libkldap5.mo share/locale/he/LC_MESSAGES/kio_ldap.mo share/locale/hi/LC_MESSAGES/kio_ldap.mo share/locale/hi/LC_MESSAGES/libkldap5.mo share/locale/hu/LC_MESSAGES/kio_ldap.mo share/locale/hu/LC_MESSAGES/libkldap5.mo share/locale/ia/LC_MESSAGES/kio_ldap.mo share/locale/ia/LC_MESSAGES/libkldap5.mo share/locale/is/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/libkldap5.mo share/locale/ja/LC_MESSAGES/kio_ldap.mo share/locale/ja/LC_MESSAGES/libkldap5.mo share/locale/kk/LC_MESSAGES/kio_ldap.mo share/locale/kk/LC_MESSAGES/libkldap5.mo share/locale/km/LC_MESSAGES/kio_ldap.mo share/locale/km/LC_MESSAGES/libkldap5.mo share/locale/ko/LC_MESSAGES/kio_ldap.mo share/locale/ko/LC_MESSAGES/libkldap5.mo share/locale/lt/LC_MESSAGES/kio_ldap.mo share/locale/lt/LC_MESSAGES/libkldap5.mo share/locale/lv/LC_MESSAGES/kio_ldap.mo share/locale/lv/LC_MESSAGES/libkldap5.mo share/locale/mr/LC_MESSAGES/kio_ldap.mo share/locale/mr/LC_MESSAGES/libkldap5.mo share/locale/nb/LC_MESSAGES/kio_ldap.mo share/locale/nb/LC_MESSAGES/libkldap5.mo share/locale/nds/LC_MESSAGES/kio_ldap.mo share/locale/nds/LC_MESSAGES/libkldap5.mo share/locale/nl/LC_MESSAGES/kio_ldap.mo share/locale/nl/LC_MESSAGES/libkldap5.mo share/locale/nn/LC_MESSAGES/kio_ldap.mo share/locale/nn/LC_MESSAGES/libkldap5.mo share/locale/pa/LC_MESSAGES/kio_ldap.mo share/locale/pa/LC_MESSAGES/libkldap5.mo share/locale/pl/LC_MESSAGES/kio_ldap.mo share/locale/pl/LC_MESSAGES/libkldap5.mo share/locale/pt/LC_MESSAGES/kio_ldap.mo share/locale/pt/LC_MESSAGES/libkldap5.mo share/locale/pt_BR/LC_MESSAGES/kio_ldap.mo share/locale/pt_BR/LC_MESSAGES/libkldap5.mo share/locale/ro/LC_MESSAGES/kio_ldap.mo share/locale/ro/LC_MESSAGES/libkldap5.mo share/locale/ru/LC_MESSAGES/kio_ldap.mo share/locale/ru/LC_MESSAGES/libkldap5.mo share/locale/sk/LC_MESSAGES/kio_ldap.mo share/locale/sk/LC_MESSAGES/libkldap5.mo share/locale/sl/LC_MESSAGES/kio_ldap.mo share/locale/sl/LC_MESSAGES/libkldap5.mo share/locale/sr/LC_MESSAGES/kio_ldap.mo share/locale/sr/LC_MESSAGES/libkldap5.mo share/locale/sv/LC_MESSAGES/kio_ldap.mo share/locale/sv/LC_MESSAGES/libkldap5.mo share/locale/tr/LC_MESSAGES/kio_ldap.mo share/locale/tr/LC_MESSAGES/libkldap5.mo share/locale/ug/LC_MESSAGES/kio_ldap.mo share/locale/ug/LC_MESSAGES/libkldap5.mo share/locale/uk/LC_MESSAGES/kio_ldap.mo share/locale/uk/LC_MESSAGES/libkldap5.mo share/locale/zh_CN/LC_MESSAGES/kio_ldap.mo share/locale/zh_CN/LC_MESSAGES/libkldap5.mo share/locale/zh_TW/LC_MESSAGES/kio_ldap.mo share/locale/zh_TW/LC_MESSAGES/libkldap5.mo share/qlogging-categories5/kldap.categories share/qlogging-categories5/kldap.renamecategories diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 3443f6aace9b..0bf32a36b36c 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706296 -SHA256 (KDE/release-service/20.12.3/kmailtransport-20.12.3.tar.xz) = d718d7b74a5a478ca070d8ddae6927351e470dcf79550c4d0d64b94a331859d4 -SIZE (KDE/release-service/20.12.3/kmailtransport-20.12.3.tar.xz) = 168148 +TIMESTAMP = 1618579219 +SHA256 (KDE/release-service/21.04.0/kmailtransport-21.04.0.tar.xz) = da36d1bc3ea62d1f9de0daca1945d0cc87cf035559dea32b7af35d89f048fcc9 +SIZE (KDE/release-service/21.04.0/kmailtransport-21.04.0.tar.xz) = 172176 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index f3949d52e0e0..5d1a26f8f7ec 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706300 -SHA256 (KDE/release-service/20.12.3/kmbox-20.12.3.tar.xz) = 0ec56cfdb4a697a64c57962733df5d77c253f80e6a718b6ed974ccc9eefd9033 -SIZE (KDE/release-service/20.12.3/kmbox-20.12.3.tar.xz) = 24792 +TIMESTAMP = 1618579220 +SHA256 (KDE/release-service/21.04.0/kmbox-21.04.0.tar.xz) = a4f33928ac8924060d5cd86dc17cb7a97c9b9f01fe4621b0fed53604328ce106 +SIZE (KDE/release-service/21.04.0/kmbox-21.04.0.tar.xz) = 28472 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index a7db6c24df1f..94d1a95d2bf2 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706309 -SHA256 (KDE/release-service/20.12.3/kmime-20.12.3.tar.xz) = 381e6839d8f830e5b7b31a6272122676e935cf4b25857ca9b247cc9572ef476d -SIZE (KDE/release-service/20.12.3/kmime-20.12.3.tar.xz) = 150872 +TIMESTAMP = 1618579221 +SHA256 (KDE/release-service/21.04.0/kmime-21.04.0.tar.xz) = 042b6cb9eaa5160ee722680c340984d92d3ac1e49d52c38ee68c5b8cf25adb24 +SIZE (KDE/release-service/21.04.0/kmime-21.04.0.tar.xz) = 153672 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 29e8ba6ebaa3..566112e47cfd 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706305 -SHA256 (KDE/release-service/20.12.3/kontactinterface-20.12.3.tar.xz) = 3c9f395c2eaf843689e3ace68d8c06cbdbe914f4888657c676cdfe05ba981ddb -SIZE (KDE/release-service/20.12.3/kontactinterface-20.12.3.tar.xz) = 36056 +TIMESTAMP = 1618579222 +SHA256 (KDE/release-service/21.04.0/kontactinterface-21.04.0.tar.xz) = d51c282f477b8d32bf736169e8d56cbbc5fa3536247de9dd10d49646be3c9bc0 +SIZE (KDE/release-service/21.04.0/kontactinterface-21.04.0.tar.xz) = 39912 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index dbb3cfd77141..9a2ebbcac4f8 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706297 -SHA256 (KDE/release-service/20.12.3/kpimtextedit-20.12.3.tar.xz) = 3377669943dfe8990d011a2ceb9d01759518f5097732424afa723ffd7e61931e -SIZE (KDE/release-service/20.12.3/kpimtextedit-20.12.3.tar.xz) = 201292 +TIMESTAMP = 1618579222 +SHA256 (KDE/release-service/21.04.0/kpimtextedit-21.04.0.tar.xz) = 37db75a87a014d9517b88cd0fc2d85ebcf0982c2c4d1bf75d8e37562023792a9 +SIZE (KDE/release-service/21.04.0/kpimtextedit-21.04.0.tar.xz) = 205080 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 236f2356412d..7575797d2d7a 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706307 -SHA256 (KDE/release-service/20.12.3/krdc-20.12.3.tar.xz) = 223e9efc636d752456aeb777523d556bd2d2b919a6729f5bf8e53ef643b8fc68 -SIZE (KDE/release-service/20.12.3/krdc-20.12.3.tar.xz) = 1564652 +TIMESTAMP = 1618579223 +SHA256 (KDE/release-service/21.04.0/krdc-21.04.0.tar.xz) = 8173c476dfec24fe12309b6726363c1a06566ec04e98330432cc53a375f33822 +SIZE (KDE/release-service/21.04.0/krdc-21.04.0.tar.xz) = 1568412 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index c895b6df2f86..c7dec176c87b 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706304 -SHA256 (KDE/release-service/20.12.3/krfb-20.12.3.tar.xz) = 8479b5ac9c955d06171b8ce4ec80ec178d7de263b441db3459fc1f307ed5e518 -SIZE (KDE/release-service/20.12.3/krfb-20.12.3.tar.xz) = 1280912 +TIMESTAMP = 1618579224 +SHA256 (KDE/release-service/21.04.0/krfb-21.04.0.tar.xz) = 8f1e9efb25d115a4b37037ff50d9123fc477318521a690db610b5bf41c084e6e +SIZE (KDE/release-service/21.04.0/krfb-21.04.0.tar.xz) = 1283128 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 2c448c0b29b6..47d23722cfe0 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706301 -SHA256 (KDE/release-service/20.12.3/ksmtp-20.12.3.tar.xz) = 8667c3591c28a7fd08d1d0b726bd641b2cf5b9a51f228317b934e041608cb962 -SIZE (KDE/release-service/20.12.3/ksmtp-20.12.3.tar.xz) = 43124 +TIMESTAMP = 1618579225 +SHA256 (KDE/release-service/21.04.0/ksmtp-21.04.0.tar.xz) = c557835c9ee292f23f82f4aa67d6516cc9012ad529b5c1d8ea1931f07c64c456 +SIZE (KDE/release-service/21.04.0/ksmtp-21.04.0.tar.xz) = 47100 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 711ef935057a..15825b48287c 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706317 -SHA256 (KDE/release-service/20.12.3/ktnef-20.12.3.tar.xz) = 78d7f3d512a1ab1d7ef4af81b47a865e933b2338004ddb174d35913f13887873 -SIZE (KDE/release-service/20.12.3/ktnef-20.12.3.tar.xz) = 299852 +TIMESTAMP = 1618579226 +SHA256 (KDE/release-service/21.04.0/ktnef-21.04.0.tar.xz) = 1efda4eeeddad6cc7a12ebbc686f563849cbf2d75f3e7b58673d9f27965b407f +SIZE (KDE/release-service/21.04.0/ktnef-21.04.0.tar.xz) = 303748 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index ddb5fb8d12c9..e9743ddac8a6 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706315 -SHA256 (KDE/release-service/20.12.3/libgravatar-20.12.3.tar.xz) = c4a2dacfd5b69b19ae8cb2e1c7295cd968e27ea1dea31f98cee06740b6991c8c -SIZE (KDE/release-service/20.12.3/libgravatar-20.12.3.tar.xz) = 31160 +TIMESTAMP = 1618579226 +SHA256 (KDE/release-service/21.04.0/libgravatar-21.04.0.tar.xz) = 79bb158802903e291308f5111b72015069b2d4e931f2faf0ac0b00e05aba2652 +SIZE (KDE/release-service/21.04.0/libgravatar-21.04.0.tar.xz) = 35296 diff --git a/net/libgravatar/pkg-plist b/net/libgravatar/pkg-plist index 053cc44a375f..becc2ea00c5b 100644 --- a/net/libgravatar/pkg-plist +++ b/net/libgravatar/pkg-plist @@ -1,59 +1,60 @@ share/qlogging-categories5/libgravatar.categories share/qlogging-categories5/libgravatar.renamecategories include/KF5/Gravatar/GravatarCache include/KF5/Gravatar/GravatarConfigWidget include/KF5/Gravatar/GravatarConfigureSettingsDialog include/KF5/Gravatar/GravatarConfigureSettingsWidget include/KF5/Gravatar/GravatarDownloadPixmapWidget include/KF5/Gravatar/GravatarResolvUrlJob include/KF5/gravatar/gravatar_export.h include/KF5/gravatar/gravatarcache.h include/KF5/gravatar/gravatarconfiguresettingsdialog.h include/KF5/gravatar/gravatarconfiguresettingswidget.h include/KF5/gravatar/gravatarconfigwidget.h include/KF5/gravatar/gravatardownloadpixmapwidget.h include/KF5/gravatar/gravatarresolvurljob.h include/KF5/gravatar/gravatarsettings.h include/KF5/gravatar_version.h lib/cmake/KF5Gravatar/KF5GravatarConfig.cmake lib/cmake/KF5Gravatar/KF5GravatarConfigVersion.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets.cmake lib/libKF5Gravatar.so lib/libKF5Gravatar.so.5 lib/libKF5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Gravatar.pri share/locale/ar/LC_MESSAGES/libgravatar.mo share/locale/ca/LC_MESSAGES/libgravatar.mo share/locale/ca@valencia/LC_MESSAGES/libgravatar.mo share/locale/cs/LC_MESSAGES/libgravatar.mo share/locale/da/LC_MESSAGES/libgravatar.mo share/locale/de/LC_MESSAGES/libgravatar.mo share/locale/el/LC_MESSAGES/libgravatar.mo share/locale/en_GB/LC_MESSAGES/libgravatar.mo share/locale/es/LC_MESSAGES/libgravatar.mo share/locale/et/LC_MESSAGES/libgravatar.mo share/locale/eu/LC_MESSAGES/libgravatar.mo share/locale/fi/LC_MESSAGES/libgravatar.mo share/locale/fr/LC_MESSAGES/libgravatar.mo share/locale/gl/LC_MESSAGES/libgravatar.mo +share/locale/hu/LC_MESSAGES/libgravatar.mo share/locale/ia/LC_MESSAGES/libgravatar.mo share/locale/it/LC_MESSAGES/libgravatar.mo share/locale/ja/LC_MESSAGES/libgravatar.mo share/locale/ko/LC_MESSAGES/libgravatar.mo share/locale/lt/LC_MESSAGES/libgravatar.mo share/locale/nl/LC_MESSAGES/libgravatar.mo share/locale/nn/LC_MESSAGES/libgravatar.mo share/locale/pl/LC_MESSAGES/libgravatar.mo share/locale/pt/LC_MESSAGES/libgravatar.mo share/locale/pt_BR/LC_MESSAGES/libgravatar.mo share/locale/ro/LC_MESSAGES/libgravatar.mo share/locale/ru/LC_MESSAGES/libgravatar.mo share/locale/sk/LC_MESSAGES/libgravatar.mo share/locale/sl/LC_MESSAGES/libgravatar.mo share/locale/sr/LC_MESSAGES/libgravatar.mo share/locale/sv/LC_MESSAGES/libgravatar.mo share/locale/tr/LC_MESSAGES/libgravatar.mo share/locale/uk/LC_MESSAGES/libgravatar.mo share/locale/zh_CN/LC_MESSAGES/libgravatar.mo share/locale/zh_TW/LC_MESSAGES/libgravatar.mo diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index e412ee8d5cef..65e6cb30cc0d 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706296 -SHA256 (KDE/release-service/20.12.3/libkgapi-20.12.3.tar.xz) = fd668411c3d1e9f65237d15d884efd5cfb7cae0a90fa517bcf833f3980653941 -SIZE (KDE/release-service/20.12.3/libkgapi-20.12.3.tar.xz) = 246100 +TIMESTAMP = 1618579227 +SHA256 (KDE/release-service/21.04.0/libkgapi-21.04.0.tar.xz) = dfc5412756307e910ab6a9c3d9f14c2cfa095d6f58b767af465fbe55c10b01f5 +SIZE (KDE/release-service/21.04.0/libkgapi-21.04.0.tar.xz) = 249508 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 91dd9753f8d6..148dbb1b65fd 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706311 -SHA256 (KDE/release-service/20.12.3/libksieve-20.12.3.tar.xz) = 009f80fba22ad1eed770b780df6b0757a83e97eec6ba0454f496eaf6b54c2448 -SIZE (KDE/release-service/20.12.3/libksieve-20.12.3.tar.xz) = 558368 +TIMESTAMP = 1618579228 +SHA256 (KDE/release-service/21.04.0/libksieve-21.04.0.tar.xz) = 94233aab2af077e2715283e3c1ee63de8699405eb5feb269b4199d3c2b8efe13 +SIZE (KDE/release-service/21.04.0/libksieve-21.04.0.tar.xz) = 564684 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 2c0848d79fde..544670685539 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706308 -SHA256 (KDE/release-service/20.12.3/mailcommon-20.12.3.tar.xz) = 9568a0de8ca61d0af950ba7c407d5fede2c89eb245976e2224c596e8cdbe177c -SIZE (KDE/release-service/20.12.3/mailcommon-20.12.3.tar.xz) = 723876 +TIMESTAMP = 1618579229 +SHA256 (KDE/release-service/21.04.0/mailcommon-21.04.0.tar.xz) = fd8137c4991f578dae0fdaf29e44330654b4fdff9adf9ce5fbd44e9bdd844cd2 +SIZE (KDE/release-service/21.04.0/mailcommon-21.04.0.tar.xz) = 727228 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 79dd735b69ee..ee6d22ef74bb 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706308 -SHA256 (KDE/release-service/20.12.3/mailimporter-20.12.3.tar.xz) = d67af2f3f62ccf934b4c23982750c05e70bbc144bea231eba560278363de73d2 -SIZE (KDE/release-service/20.12.3/mailimporter-20.12.3.tar.xz) = 548588 +TIMESTAMP = 1618579230 +SHA256 (KDE/release-service/21.04.0/mailimporter-21.04.0.tar.xz) = 656ba4469a8d51a5c336e6b16dc5a976119102103535dba269fa65c60656fb1b +SIZE (KDE/release-service/21.04.0/mailimporter-21.04.0.tar.xz) = 552884 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index f9c7436d0677..ac73af0255d2 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706314 -SHA256 (KDE/release-service/20.12.3/messagelib-20.12.3.tar.xz) = 3aae37239d281aa6137b57baa5ac8834f5f95786847cc72fd879f664fce12c23 -SIZE (KDE/release-service/20.12.3/messagelib-20.12.3.tar.xz) = 10527968 +TIMESTAMP = 1618579231 +SHA256 (KDE/release-service/21.04.0/messagelib-21.04.0.tar.xz) = 2fa33e75aef77ce89f91a777b14dafe9f51fffc431dfd975767e830167c65be3 +SIZE (KDE/release-service/21.04.0/messagelib-21.04.0.tar.xz) = 10640768 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 66ca422344e1..4842ffd7a728 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,885 +1,902 @@ include/KF5/MessageComposer/AbstractEncryptJob include/KF5/MessageComposer/AkonadiSender include/KF5/MessageComposer/AliasesExpandJob include/KF5/MessageComposer/AttachmentClipBoardJob include/KF5/MessageComposer/AttachmentControllerBase include/KF5/MessageComposer/AttachmentFromPublicKeyJob include/KF5/MessageComposer/AttachmentJob include/KF5/MessageComposer/AttachmentModel include/KF5/MessageComposer/AttachmentVcardFromAddressBookJob +include/KF5/MessageComposer/AutocryptHeadersJob include/KF5/MessageComposer/Composer include/KF5/MessageComposer/ComposerAttachmentInterface include/KF5/MessageComposer/ComposerLineEdit include/KF5/MessageComposer/ComposerViewBase include/KF5/MessageComposer/ComposerViewInterface include/KF5/MessageComposer/ContentJobBase include/KF5/MessageComposer/ConvertSnippetVariableMenu include/KF5/MessageComposer/ConvertSnippetVariablesJob include/KF5/MessageComposer/ConvertSnippetVariablesUtil include/KF5/MessageComposer/EncryptJob include/KF5/MessageComposer/FollowUpReminderSelectDateDialog include/KF5/MessageComposer/FollowupReminder include/KF5/MessageComposer/FollowupReminderCreateJob include/KF5/MessageComposer/GlobalPart include/KF5/MessageComposer/ImageScalingWidget include/KF5/MessageComposer/InfoPart include/KF5/MessageComposer/InsertTextFileJob include/KF5/MessageComposer/JobBase include/KF5/MessageComposer/Kleo_Util include/KF5/MessageComposer/MainTextJob include/KF5/MessageComposer/MessageComposerSettings include/KF5/MessageComposer/MessageFactoryNG include/KF5/MessageComposer/MessageHelper include/KF5/MessageComposer/MessagePart include/KF5/MessageComposer/MessageSender include/KF5/MessageComposer/MultipartJob include/KF5/MessageComposer/PluginActionType include/KF5/MessageComposer/PluginComposerInterface include/KF5/MessageComposer/PluginEditor +include/KF5/MessageComposer/PluginEditorBase include/KF5/MessageComposer/PluginEditorCheckBeforeSend include/KF5/MessageComposer/PluginEditorCheckBeforeSendConfigureWidget include/KF5/MessageComposer/PluginEditorCheckBeforeSendInterface include/KF5/MessageComposer/PluginEditorCheckBeforeSendManager include/KF5/MessageComposer/PluginEditorCheckBeforeSendParams include/KF5/MessageComposer/PluginEditorConvertText include/KF5/MessageComposer/PluginEditorConvertTextConfigureWidget include/KF5/MessageComposer/PluginEditorConvertTextInterface include/KF5/MessageComposer/PluginEditorConvertTextManager include/KF5/MessageComposer/PluginEditorConverterBeforeConvertingData include/KF5/MessageComposer/PluginEditorConverterInitialData include/KF5/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KF5/MessageComposer/PluginEditorGrammarManager include/KF5/MessageComposer/PluginEditorInit include/KF5/MessageComposer/PluginEditorInitConfigureWidget include/KF5/MessageComposer/PluginEditorInitInterface include/KF5/MessageComposer/PluginEditorInitManager include/KF5/MessageComposer/PluginEditorInterface include/KF5/MessageComposer/PluginEditorManager include/KF5/MessageComposer/ProtectedHeadersJob include/KF5/MessageComposer/Recipient include/KF5/MessageComposer/RecipientLine include/KF5/MessageComposer/RecipientsEditor include/KF5/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/RichTextComposerSignatures include/KF5/MessageComposer/SendLaterCreateJob include/KF5/MessageComposer/SendLaterDialog include/KF5/MessageComposer/SendLaterInfo include/KF5/MessageComposer/SendLaterJob include/KF5/MessageComposer/SendLaterRemoveJob include/KF5/MessageComposer/SendLaterUtil include/KF5/MessageComposer/SignEncryptJob include/KF5/MessageComposer/SignJob include/KF5/MessageComposer/SignatureController include/KF5/MessageComposer/SinglepartJob include/KF5/MessageComposer/SkeletonMessageJob include/KF5/MessageComposer/StatusBarLabelToggledState include/KF5/MessageComposer/TextPart include/KF5/MessageComposer/TransparentJob include/KF5/MessageComposer/Util include/KF5/MessageCore/AttachmentCompressJob include/KF5/MessageCore/AttachmentFromUrlBaseJob include/KF5/MessageCore/AttachmentFromUrlUtils include/KF5/MessageCore/AttachmentLoadJob include/KF5/MessageCore/AttachmentPart include/KF5/MessageCore/AttachmentPropertiesDialog include/KF5/MessageCore/AttachmentUpdateJob +include/KF5/MessageCore/AutocryptRecipient +include/KF5/MessageCore/AutocryptStorage +include/KF5/MessageCore/AutocryptUtils +include/KF5/MessageCore/ColorUtil include/KF5/MessageCore/ImageCollector include/KF5/MessageCore/MailingList include/KF5/MessageCore/MessageCoreSettings -include/KF5/MessageCore/MessageCoreUtil include/KF5/MessageCore/NodeHelper include/KF5/MessageCore/StringUtil +include/KF5/MessageCore/Util include/KF5/MessageList/AggregationComboBox include/KF5/MessageList/AggregationConfigButton include/KF5/MessageList/Enums include/KF5/MessageList/MessageListUtil include/KF5/MessageList/Pane include/KF5/MessageList/QuickSearchLine include/KF5/MessageList/StorageModel include/KF5/MessageList/StorageModelBase include/KF5/MessageList/ThemeComboBox include/KF5/MessageList/ThemeConfigButton include/KF5/MessageList/View include/KF5/MessageList/WidgetBase include/KF5/MessageViewer/AttachmentStrategy include/KF5/MessageViewer/BlockMailTrackingUrlInterceptor include/KF5/MessageViewer/BodyPartURLHandler include/KF5/MessageViewer/BufferedHtmlWriter include/KF5/MessageViewer/CSSHelper include/KF5/MessageViewer/CSSHelperBase include/KF5/MessageViewer/ConfigureWidget include/KF5/MessageViewer/DKIMCheckPolicy include/KF5/MessageViewer/DKIMCheckSignatureJob include/KF5/MessageViewer/DKIMHeaderParser include/KF5/MessageViewer/DKIMInfo include/KF5/MessageViewer/DKIMKeyRecord include/KF5/MessageViewer/DKIMManageRulesDialog include/KF5/MessageViewer/DKIMManageRulesWidget include/KF5/MessageViewer/DKIMManager include/KF5/MessageViewer/DKIMManagerAuthenticationServer include/KF5/MessageViewer/DKIMManagerKey include/KF5/MessageViewer/DKIMManagerKeyDialog include/KF5/MessageViewer/DKIMManagerKeyWidget include/KF5/MessageViewer/DKIMManagerRules include/KF5/MessageViewer/DKIMRule include/KF5/MessageViewer/DKIMViewerMenu include/KF5/MessageViewer/DKIMWidgetInfo include/KF5/MessageViewer/EditorWatcher include/KF5/MessageViewer/FileHtmlWriter include/KF5/MessageViewer/GrantleeHeaderStyle include/KF5/MessageViewer/GrantleeHeaderTestStyle include/KF5/MessageViewer/HeaderStrategy include/KF5/MessageViewer/HeaderStyle include/KF5/MessageViewer/HeaderStyleInterface include/KF5/MessageViewer/HeaderStyleMenuManager include/KF5/MessageViewer/HeaderStylePlugin include/KF5/MessageViewer/HeaderStylePluginManager include/KF5/MessageViewer/HeaderStyle_Util include/KF5/MessageViewer/HtmlBlock include/KF5/MessageViewer/HtmlWriter include/KF5/MessageViewer/IconNameCache include/KF5/MessageViewer/InvitationSettings include/KF5/MessageViewer/KXFace include/KF5/MessageViewer/MailWebEnginePage include/KF5/MessageViewer/MailWebEngineView include/KF5/MessageViewer/MarkMessageReadHandler include/KF5/MessageViewer/MessagePartRenderPlugin include/KF5/MessageViewer/MessagePartRendererBase include/KF5/MessageViewer/MessagePartRendererManager include/KF5/MessageViewer/MessageViewerConfigureSettingsPlugin include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KF5/MessageViewer/MessageViewerSettings include/KF5/MessageViewer/MessageViewerUtil include/KF5/MessageViewer/MimeType include/KF5/MessageViewer/ObjectTreeEmptySource include/KF5/MessageViewer/PlainHeaderStyle include/KF5/MessageViewer/PrintingSettings +include/KF5/MessageViewer/RemoteContentConfigureDialog +include/KF5/MessageViewer/RemoteContentMenu include/KF5/MessageViewer/RichHeaderStrategy include/KF5/MessageViewer/ScamCheckShortUrl include/KF5/MessageViewer/ScamCheckShortUrlManager include/KF5/MessageViewer/ScamExpandUrlJob include/KF5/MessageViewer/SpamHeaderAnalyzer include/KF5/MessageViewer/Stl_Util include/KF5/MessageViewer/URLHandler include/KF5/MessageViewer/Viewer include/KF5/MessageViewer/ViewerPlugin include/KF5/MessageViewer/ViewerPluginInterface include/KF5/MessageViewer/ViewerPluginManager include/KF5/MessageViewer/ViewerPluginToolManager include/KF5/MimeTreeParser/AttachmentTemporaryFilesDirs include/KF5/MimeTreeParser/BodyPart include/KF5/MimeTreeParser/BodyPartFormatter include/KF5/MimeTreeParser/BodyPartFormatterFactory include/KF5/MimeTreeParser/Enums include/KF5/MimeTreeParser/MessagePart include/KF5/MimeTreeParser/NodeHelper include/KF5/MimeTreeParser/ObjectTreeParser include/KF5/MimeTreeParser/ObjectTreeSource include/KF5/MimeTreeParser/PartMetaData include/KF5/MimeTreeParser/PartNodeBodyPart include/KF5/MimeTreeParser/SimpleObjectTreeSource include/KF5/MimeTreeParser/Util include/KF5/TemplateParser/CustomTemplates include/KF5/TemplateParser/CustomTemplatesMenu include/KF5/TemplateParser/DefaultTemplates include/KF5/TemplateParser/TemplateConvertCommandJob include/KF5/TemplateParser/TemplateParserEmailAddressRequesterBase include/KF5/TemplateParser/TemplateParserExtractHtmlInfoResult include/KF5/TemplateParser/TemplateParserJob include/KF5/TemplateParser/TemplatesCommandMenu include/KF5/TemplateParser/TemplatesConfiguration include/KF5/TemplateParser/TemplatesInsertCommandAction include/KF5/TemplateParser/TemplatesInsertCommandPushButton include/KF5/TemplateParser/TemplatesTextEdit include/KF5/TemplateParser/TemplatesUtil include/KF5/WebEngineViewer/CheckPhishingUrlCache include/KF5/WebEngineViewer/CheckPhishingUrlJob include/KF5/WebEngineViewer/CheckPhishingUrlUtil include/KF5/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KF5/WebEngineViewer/FindBarBase include/KF5/WebEngineViewer/FindBarWebEngineView include/KF5/WebEngineViewer/HashCacheManager include/KF5/WebEngineViewer/InterceptorManager include/KF5/WebEngineViewer/LocalDataBaseManager include/KF5/WebEngineViewer/NetworkPluginUrlInterceptor include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KF5/WebEngineViewer/NetworkUrlInterceptor include/KF5/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KF5/WebEngineViewer/SearchFullHashJob include/KF5/WebEngineViewer/UpdateDataBaseInfo include/KF5/WebEngineViewer/WebEngineAccessKey include/KF5/WebEngineViewer/WebEngineExportHtmlPageJob include/KF5/WebEngineViewer/WebEngineExportPdfPageJob include/KF5/WebEngineViewer/WebEngineManageScript include/KF5/WebEngineViewer/WebEnginePage include/KF5/WebEngineViewer/WebEngineScript include/KF5/WebEngineViewer/WebEngineView include/KF5/WebEngineViewer/WebHitTest include/KF5/WebEngineViewer/WebHitTestResult include/KF5/WebEngineViewer/ZoomActionMenu include/KF5/messagecomposer/abstractencryptjob.h include/KF5/messagecomposer/akonadisender.h include/KF5/messagecomposer/aliasesexpandjob.h include/KF5/messagecomposer/attachmentclipboardjob.h include/KF5/messagecomposer/attachmentcontrollerbase.h include/KF5/messagecomposer/attachmentfrompublickeyjob.h include/KF5/messagecomposer/attachmentjob.h include/KF5/messagecomposer/attachmentmodel.h include/KF5/messagecomposer/attachmentvcardfromaddressbookjob.h +include/KF5/messagecomposer/autocryptheadersjob.h include/KF5/messagecomposer/composer.h include/KF5/messagecomposer/composerattachmentinterface.h include/KF5/messagecomposer/composerlineedit.h include/KF5/messagecomposer/composerviewbase.h include/KF5/messagecomposer/composerviewinterface.h include/KF5/messagecomposer/contentjobbase.h include/KF5/messagecomposer/convertsnippetvariablemenu.h include/KF5/messagecomposer/convertsnippetvariablesjob.h include/KF5/messagecomposer/convertsnippetvariablesutil.h include/KF5/messagecomposer/encryptjob.h include/KF5/messagecomposer/followupreminder.h include/KF5/messagecomposer/followupremindercreatejob.h include/KF5/messagecomposer/followupreminderselectdatedialog.h include/KF5/messagecomposer/globalpart.h include/KF5/messagecomposer/imagescalingwidget.h include/KF5/messagecomposer/infopart.h include/KF5/messagecomposer/inserttextfilejob.h include/KF5/messagecomposer/jobbase.h include/KF5/messagecomposer/kleo_util.h include/KF5/messagecomposer/maintextjob.h include/KF5/messagecomposer/messagecomposer_debug.h include/KF5/messagecomposer/messagecomposer_export.h include/KF5/messagecomposer/messagecomposersettings.h include/KF5/messagecomposer/messagecomposersettings_base.h include/KF5/messagecomposer/messagefactoryng.h include/KF5/messagecomposer/messagehelper.h include/KF5/messagecomposer/messagepart.h include/KF5/messagecomposer/messagesender.h include/KF5/messagecomposer/multipartjob.h include/KF5/messagecomposer/pluginactiontype.h include/KF5/messagecomposer/plugincomposerinterface.h include/KF5/messagecomposer/plugineditor.h +include/KF5/messagecomposer/plugineditorbase.h include/KF5/messagecomposer/plugineditorcheckbeforesend.h include/KF5/messagecomposer/plugineditorcheckbeforesendconfigurewidget.h include/KF5/messagecomposer/plugineditorcheckbeforesendinterface.h include/KF5/messagecomposer/plugineditorcheckbeforesendmanager.h include/KF5/messagecomposer/plugineditorcheckbeforesendparams.h include/KF5/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KF5/messagecomposer/plugineditorconverterinitialdata.h include/KF5/messagecomposer/plugineditorconverttext.h include/KF5/messagecomposer/plugineditorconverttextconfigurewidget.h include/KF5/messagecomposer/plugineditorconverttextinterface.h include/KF5/messagecomposer/plugineditorconverttextmanager.h include/KF5/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KF5/messagecomposer/plugineditorgrammarmanager.h include/KF5/messagecomposer/plugineditorinit.h include/KF5/messagecomposer/plugineditorinitconfigurewidget.h include/KF5/messagecomposer/plugineditorinitinterface.h include/KF5/messagecomposer/plugineditorinitmanager.h include/KF5/messagecomposer/plugineditorinterface.h include/KF5/messagecomposer/plugineditormanager.h include/KF5/messagecomposer/protectedheadersjob.h include/KF5/messagecomposer/recipient.h include/KF5/messagecomposer/recipientline.h include/KF5/messagecomposer/recipientseditor.h include/KF5/messagecomposer/richtextcomposerng.h include/KF5/messagecomposer/richtextcomposersignatures.h include/KF5/messagecomposer/sendlatercreatejob.h include/KF5/messagecomposer/sendlaterdialog.h include/KF5/messagecomposer/sendlaterinfo.h include/KF5/messagecomposer/sendlaterjob.h include/KF5/messagecomposer/sendlaterremovejob.h include/KF5/messagecomposer/sendlaterutil.h include/KF5/messagecomposer/signaturecontroller.h include/KF5/messagecomposer/signencryptjob.h include/KF5/messagecomposer/signjob.h include/KF5/messagecomposer/singlepartjob.h include/KF5/messagecomposer/skeletonmessagejob.h include/KF5/messagecomposer/statusbarlabeltoggledstate.h include/KF5/messagecomposer/textpart.h include/KF5/messagecomposer/transparentjob.h include/KF5/messagecomposer/util.h include/KF5/messagecomposer_version.h include/KF5/messagecore/attachmentcompressjob.h include/KF5/messagecore/attachmentfromurlbasejob.h include/KF5/messagecore/attachmentfromurlutils.h include/KF5/messagecore/attachmentloadjob.h include/KF5/messagecore/attachmentpart.h include/KF5/messagecore/attachmentpropertiesdialog.h include/KF5/messagecore/attachmentupdatejob.h +include/KF5/messagecore/autocryptrecipient.h +include/KF5/messagecore/autocryptstorage.h +include/KF5/messagecore/autocryptutils.h +include/KF5/messagecore/colorutil.h include/KF5/messagecore/globalsettings_messagecore.h include/KF5/messagecore/imagecollector.h include/KF5/messagecore/mailinglist.h include/KF5/messagecore/messagecore_export.h include/KF5/messagecore/messagecoresettings.h -include/KF5/messagecore/messagecoreutil.h include/KF5/messagecore/nodehelper.h include/KF5/messagecore/stringutil.h +include/KF5/messagecore/util.h include/KF5/messagecore_version.h include/KF5/messagelist/aggregationcombobox.h include/KF5/messagelist/aggregationconfigbutton.h include/KF5/messagelist/enums.h include/KF5/messagelist/messagelist_export.h include/KF5/messagelist/messagelistsettings.h include/KF5/messagelist/messagelistutil.h include/KF5/messagelist/pane.h include/KF5/messagelist/quicksearchline.h include/KF5/messagelist/storagemodel.h include/KF5/messagelist/storagemodelbase.h include/KF5/messagelist/themecombobox.h include/KF5/messagelist/themeconfigbutton.h include/KF5/messagelist/view.h include/KF5/messagelist/widgetbase.h include/KF5/messagelist_version.h include/KF5/messageviewer/attachmentstrategy.h include/KF5/messageviewer/blockmailtrackingurlinterceptor.h include/KF5/messageviewer/bodyparturlhandler.h include/KF5/messageviewer/bufferedhtmlwriter.h include/KF5/messageviewer/config-messageviewer.h include/KF5/messageviewer/configurewidget.h include/KF5/messageviewer/csshelper.h include/KF5/messageviewer/csshelperbase.h include/KF5/messageviewer/dkimcheckpolicy.h include/KF5/messageviewer/dkimchecksignaturejob.h include/KF5/messageviewer/dkimheaderparser.h include/KF5/messageviewer/dkiminfo.h include/KF5/messageviewer/dkimkeyrecord.h include/KF5/messageviewer/dkimmanager.h include/KF5/messageviewer/dkimmanagerauthenticationserver.h include/KF5/messageviewer/dkimmanagerkey.h include/KF5/messageviewer/dkimmanagerkeydialog.h include/KF5/messageviewer/dkimmanagerkeywidget.h include/KF5/messageviewer/dkimmanagerrules.h include/KF5/messageviewer/dkimmanagerulesdialog.h include/KF5/messageviewer/dkimmanageruleswidget.h include/KF5/messageviewer/dkimrule.h include/KF5/messageviewer/dkimviewermenu.h include/KF5/messageviewer/dkimwidgetinfo.h include/KF5/messageviewer/editorwatcher.h include/KF5/messageviewer/filehtmlwriter.h include/KF5/messageviewer/globalsettings_messageviewer.h include/KF5/messageviewer/grantleeheaderstyle.h include/KF5/messageviewer/grantleeheaderteststyle.h include/KF5/messageviewer/headerstrategy.h include/KF5/messageviewer/headerstyle.h include/KF5/messageviewer/headerstyle_util.h include/KF5/messageviewer/headerstyleinterface.h include/KF5/messageviewer/headerstylemenumanager.h include/KF5/messageviewer/headerstyleplugin.h include/KF5/messageviewer/headerstylepluginmanager.h include/KF5/messageviewer/htmlblock.h include/KF5/messageviewer/htmlwriter.h include/KF5/messageviewer/iconnamecache.h include/KF5/messageviewer/invitationsettings.h include/KF5/messageviewer/kxface.h include/KF5/messageviewer/mailwebenginepage.h include/KF5/messageviewer/mailwebengineview.h include/KF5/messageviewer/markmessagereadhandler.h include/KF5/messageviewer/messagepartrendererbase.h include/KF5/messageviewer/messagepartrenderermanager.h include/KF5/messageviewer/messagepartrenderplugin.h include/KF5/messageviewer/messageviewer_debug.h include/KF5/messageviewer/messageviewer_export.h include/KF5/messageviewer/messageviewerconfiguresettingsplugin.h include/KF5/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KF5/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KF5/messageviewer/messageviewersettings.h include/KF5/messageviewer/messageviewerutil.h include/KF5/messageviewer/mimetype.h include/KF5/messageviewer/objecttreeemptysource.h include/KF5/messageviewer/plainheaderstyle.h include/KF5/messageviewer/printingsettings.h +include/KF5/messageviewer/remotecontentconfiguredialog.h +include/KF5/messageviewer/remotecontentmenu.h include/KF5/messageviewer/richheaderstrategy.h include/KF5/messageviewer/scamcheckshorturl.h include/KF5/messageviewer/scamcheckshorturlmanager.h include/KF5/messageviewer/scamexpandurljob.h include/KF5/messageviewer/spamheaderanalyzer.h include/KF5/messageviewer/stl_util.h include/KF5/messageviewer/urlhandler.h include/KF5/messageviewer/viewer.h include/KF5/messageviewer/viewerplugin.h include/KF5/messageviewer/viewerplugininterface.h include/KF5/messageviewer/viewerpluginmanager.h include/KF5/messageviewer/viewerplugintoolmanager.h include/KF5/messageviewer_version.h include/KF5/mimetreeparser/attachmenttemporaryfilesdirs.h include/KF5/mimetreeparser/bodypart.h include/KF5/mimetreeparser/bodypartformatter.h include/KF5/mimetreeparser/bodypartformatterfactory.h include/KF5/mimetreeparser/enums.h include/KF5/mimetreeparser/messagepart.h include/KF5/mimetreeparser/mimetreeparser_export.h include/KF5/mimetreeparser/nodehelper.h include/KF5/mimetreeparser/objecttreeparser.h include/KF5/mimetreeparser/objecttreesource.h include/KF5/mimetreeparser/partmetadata.h include/KF5/mimetreeparser/partnodebodypart.h include/KF5/mimetreeparser/simpleobjecttreesource.h include/KF5/mimetreeparser/util.h include/KF5/mimetreeparser_version.h include/KF5/templateparser/customtemplates.h include/KF5/templateparser/customtemplates_kfg.h include/KF5/templateparser/customtemplatesmenu.h include/KF5/templateparser/defaulttemplates.h include/KF5/templateparser/globalsettings_templateparser.h include/KF5/templateparser/templateconvertcommandjob.h include/KF5/templateparser/templateparser_export.h include/KF5/templateparser/templateparseremailaddressrequesterbase.h include/KF5/templateparser/templateparserextracthtmlinforesult.h include/KF5/templateparser/templateparserjob.h include/KF5/templateparser/templatescommandmenu.h include/KF5/templateparser/templatesconfiguration.h include/KF5/templateparser/templatesconfiguration_kfg.h include/KF5/templateparser/templatesinsertcommandaction.h include/KF5/templateparser/templatesinsertcommandpushbutton.h include/KF5/templateparser/templatestextedit.h include/KF5/templateparser/templatesutil.h include/KF5/templateparser/ui_templatesconfiguration_base.h include/KF5/templateparser_version.h include/KF5/webengineviewer/checkphishingurlcache.h include/KF5/webengineviewer/checkphishingurljob.h include/KF5/webengineviewer/checkphishingurlutil.h include/KF5/webengineviewer/createphishingurldatabasejob.h include/KF5/webengineviewer/findbarbase.h include/KF5/webengineviewer/findbarwebengineview.h include/KF5/webengineviewer/hashcachemanager.h include/KF5/webengineviewer/interceptormanager.h include/KF5/webengineviewer/localdatabasemanager.h include/KF5/webengineviewer/networkpluginurlinterceptor.h include/KF5/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KF5/webengineviewer/networkpluginurlinterceptorinterface.h include/KF5/webengineviewer/networkurlinterceptor.h include/KF5/webengineviewer/networkurlinterceptorpluginmanager.h include/KF5/webengineviewer/searchfullhashjob.h include/KF5/webengineviewer/updatedatabaseinfo.h include/KF5/webengineviewer/webengineaccesskey.h include/KF5/webengineviewer/webengineexporthtmlpagejob.h include/KF5/webengineviewer/webengineexportpdfpagejob.h include/KF5/webengineviewer/webenginemanagescript.h include/KF5/webengineviewer/webenginepage.h include/KF5/webengineviewer/webenginescript.h include/KF5/webengineviewer/webengineview.h include/KF5/webengineviewer/webengineviewer_export.h include/KF5/webengineviewer/webhittest.h include/KF5/webengineviewer/webhittestresult.h include/KF5/webengineviewer/zoomactionmenu.h include/KF5/webengineviewer_version.h lib/cmake/KF5MessageComposer/KF5MessageComposerConfig.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerConfigVersion.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfig.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfigVersion.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets.cmake lib/cmake/KF5MessageList/KF5MessageListConfig.cmake lib/cmake/KF5MessageList/KF5MessageListConfigVersion.cmake lib/cmake/KF5MessageList/KF5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageList/KF5MessageListTargets.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfig.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfigVersion.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfig.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfigVersion.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfig.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfigVersion.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfig.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfigVersion.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets.cmake lib/libKF5MessageComposer.so lib/libKF5MessageComposer.so.5 lib/libKF5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageCore.so lib/libKF5MessageCore.so.5 lib/libKF5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageList.so lib/libKF5MessageList.so.5 lib/libKF5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageViewer.so lib/libKF5MessageViewer.so.5 lib/libKF5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MimeTreeParser.so lib/libKF5MimeTreeParser.so.5 lib/libKF5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5TemplateParser.so lib/libKF5TemplateParser.so.5 lib/libKF5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5WebEngineViewer.so lib/libKF5WebEngineViewer.so.5 lib/libKF5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/kconf_update/messageviewer.upd share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo +share/locale/hu/LC_MESSAGES/libwebengineviewer.mo share/locale/ia/LC_MESSAGES/libmessagecomposer.mo share/locale/ia/LC_MESSAGES/libmessagecore.mo share/locale/ia/LC_MESSAGES/libmessagelist.mo share/locale/ia/LC_MESSAGES/libmessageviewer.mo share/locale/ia/LC_MESSAGES/libmimetreeparser.mo share/locale/ia/LC_MESSAGES/libtemplateparser.mo share/locale/ia/LC_MESSAGES/libwebengineviewer.mo share/locale/is/LC_MESSAGES/libmessagelist.mo share/locale/is/LC_MESSAGES/libmessageviewer.mo share/locale/is/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libmessagecomposer.mo share/locale/it/LC_MESSAGES/libmessagecore.mo share/locale/it/LC_MESSAGES/libmessagelist.mo share/locale/it/LC_MESSAGES/libmessageviewer.mo share/locale/it/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libtemplateparser.mo share/locale/it/LC_MESSAGES/libwebengineviewer.mo share/locale/ja/LC_MESSAGES/libmessagecomposer.mo share/locale/ja/LC_MESSAGES/libmessagecore.mo share/locale/ja/LC_MESSAGES/libmessagelist.mo share/locale/ja/LC_MESSAGES/libmessageviewer.mo share/locale/ja/LC_MESSAGES/libmimetreeparser.mo share/locale/ja/LC_MESSAGES/libtemplateparser.mo share/locale/ja/LC_MESSAGES/libwebengineviewer.mo share/locale/kk/LC_MESSAGES/libmessagecomposer.mo share/locale/kk/LC_MESSAGES/libmessagecore.mo share/locale/kk/LC_MESSAGES/libmessagelist.mo share/locale/kk/LC_MESSAGES/libmessageviewer.mo share/locale/kk/LC_MESSAGES/libmimetreeparser.mo share/locale/kk/LC_MESSAGES/libtemplateparser.mo share/locale/km/LC_MESSAGES/libmessagecore.mo share/locale/km/LC_MESSAGES/libmessagelist.mo share/locale/km/LC_MESSAGES/libmessageviewer.mo share/locale/km/LC_MESSAGES/libmimetreeparser.mo share/locale/km/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libmessagecomposer.mo share/locale/ko/LC_MESSAGES/libmessagecore.mo share/locale/ko/LC_MESSAGES/libmessagelist.mo share/locale/ko/LC_MESSAGES/libmessageviewer.mo share/locale/ko/LC_MESSAGES/libmimetreeparser.mo share/locale/ko/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libwebengineviewer.mo share/locale/lt/LC_MESSAGES/libmessagecomposer.mo share/locale/lt/LC_MESSAGES/libmessagecore.mo share/locale/lt/LC_MESSAGES/libmessagelist.mo share/locale/lt/LC_MESSAGES/libmessageviewer.mo share/locale/lt/LC_MESSAGES/libmimetreeparser.mo share/locale/lt/LC_MESSAGES/libtemplateparser.mo share/locale/lt/LC_MESSAGES/libwebengineviewer.mo share/locale/lv/LC_MESSAGES/libmessagecore.mo share/locale/lv/LC_MESSAGES/libmessagelist.mo share/locale/lv/LC_MESSAGES/libmessageviewer.mo share/locale/lv/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libmessagecomposer.mo share/locale/mr/LC_MESSAGES/libmessagecore.mo share/locale/mr/LC_MESSAGES/libmessagelist.mo share/locale/mr/LC_MESSAGES/libmessageviewer.mo share/locale/mr/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libtemplateparser.mo share/locale/nb/LC_MESSAGES/libmessagecomposer.mo share/locale/nb/LC_MESSAGES/libmessagecore.mo share/locale/nb/LC_MESSAGES/libmessagelist.mo share/locale/nb/LC_MESSAGES/libmessageviewer.mo share/locale/nb/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libtemplateparser.mo share/locale/nds/LC_MESSAGES/libmessagecomposer.mo share/locale/nds/LC_MESSAGES/libmessagecore.mo share/locale/nds/LC_MESSAGES/libmessagelist.mo share/locale/nds/LC_MESSAGES/libmessageviewer.mo share/locale/nds/LC_MESSAGES/libmimetreeparser.mo share/locale/nds/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libmessagecomposer.mo share/locale/nl/LC_MESSAGES/libmessagecore.mo share/locale/nl/LC_MESSAGES/libmessagelist.mo share/locale/nl/LC_MESSAGES/libmessageviewer.mo share/locale/nl/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libwebengineviewer.mo share/locale/nn/LC_MESSAGES/libmessagecomposer.mo share/locale/nn/LC_MESSAGES/libmessagecore.mo share/locale/nn/LC_MESSAGES/libmessagelist.mo share/locale/nn/LC_MESSAGES/libmessageviewer.mo share/locale/nn/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libmessagecomposer.mo share/locale/pa/LC_MESSAGES/libmessagecore.mo share/locale/pa/LC_MESSAGES/libmessagelist.mo share/locale/pa/LC_MESSAGES/libmessageviewer.mo share/locale/pa/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libmessagecomposer.mo share/locale/pl/LC_MESSAGES/libmessagecore.mo share/locale/pl/LC_MESSAGES/libmessagelist.mo share/locale/pl/LC_MESSAGES/libmessageviewer.mo share/locale/pl/LC_MESSAGES/libmimetreeparser.mo share/locale/pl/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libwebengineviewer.mo share/locale/pt/LC_MESSAGES/libmessagecomposer.mo share/locale/pt/LC_MESSAGES/libmessagecore.mo share/locale/pt/LC_MESSAGES/libmessagelist.mo share/locale/pt/LC_MESSAGES/libmessageviewer.mo share/locale/pt/LC_MESSAGES/libmimetreeparser.mo share/locale/pt/LC_MESSAGES/libtemplateparser.mo share/locale/pt/LC_MESSAGES/libwebengineviewer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer.mo share/locale/ro/LC_MESSAGES/libmessagecomposer.mo share/locale/ro/LC_MESSAGES/libmessagecore.mo share/locale/ro/LC_MESSAGES/libmessagelist.mo share/locale/ro/LC_MESSAGES/libmessageviewer.mo share/locale/ro/LC_MESSAGES/libmimetreeparser.mo share/locale/ro/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libmessagecomposer.mo share/locale/ru/LC_MESSAGES/libmessagecore.mo share/locale/ru/LC_MESSAGES/libmessagelist.mo share/locale/ru/LC_MESSAGES/libmessageviewer.mo share/locale/ru/LC_MESSAGES/libmimetreeparser.mo share/locale/ru/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libwebengineviewer.mo share/locale/sk/LC_MESSAGES/libmessagecomposer.mo share/locale/sk/LC_MESSAGES/libmessagecore.mo share/locale/sk/LC_MESSAGES/libmessagelist.mo share/locale/sk/LC_MESSAGES/libmessageviewer.mo share/locale/sk/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libtemplateparser.mo share/locale/sk/LC_MESSAGES/libwebengineviewer.mo share/locale/sl/LC_MESSAGES/libmessagecomposer.mo share/locale/sl/LC_MESSAGES/libmessagecore.mo share/locale/sl/LC_MESSAGES/libmessagelist.mo share/locale/sl/LC_MESSAGES/libmessageviewer.mo share/locale/sl/LC_MESSAGES/libmimetreeparser.mo share/locale/sl/LC_MESSAGES/libtemplateparser.mo share/locale/sl/LC_MESSAGES/libwebengineviewer.mo share/locale/sr/LC_MESSAGES/libmessagecomposer.mo share/locale/sr/LC_MESSAGES/libmessagecore.mo share/locale/sr/LC_MESSAGES/libmessagelist.mo share/locale/sr/LC_MESSAGES/libmessageviewer.mo share/locale/sr/LC_MESSAGES/libmimetreeparser.mo share/locale/sr/LC_MESSAGES/libtemplateparser.mo share/locale/sr/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/tr/LC_MESSAGES/libmessagecomposer.mo share/locale/tr/LC_MESSAGES/libmessagecore.mo share/locale/tr/LC_MESSAGES/libmessagelist.mo share/locale/tr/LC_MESSAGES/libmessageviewer.mo share/locale/tr/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libtemplateparser.mo share/locale/tr/LC_MESSAGES/libwebengineviewer.mo share/locale/ug/LC_MESSAGES/libmessagecomposer.mo share/locale/ug/LC_MESSAGES/libmessagecore.mo share/locale/ug/LC_MESSAGES/libmessagelist.mo share/locale/ug/LC_MESSAGES/libmessageviewer.mo share/locale/ug/LC_MESSAGES/libmimetreeparser.mo share/locale/ug/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libmessagecomposer.mo share/locale/uk/LC_MESSAGES/libmessagecore.mo share/locale/uk/LC_MESSAGES/libmessagelist.mo share/locale/uk/LC_MESSAGES/libmessageviewer.mo share/locale/uk/LC_MESSAGES/libmimetreeparser.mo share/locale/uk/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libwebengineviewer.mo share/locale/wa/LC_MESSAGES/libmessagelist.mo share/locale/wa/LC_MESSAGES/libmessageviewer.mo share/locale/wa/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/background.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml share/qlogging-categories5/messagelib.categories share/qlogging-categories5/messagelib.renamecategories diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index b988c57f17aa..402ad1c6598a 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706299 -SHA256 (KDE/release-service/20.12.3/pimcommon-20.12.3.tar.xz) = 0b9a0ad2128f41aa5de06dc2a9b28d631ca6a47a5fcf26e5320045f08228fea1 -SIZE (KDE/release-service/20.12.3/pimcommon-20.12.3.tar.xz) = 364304 +TIMESTAMP = 1618579231 +SHA256 (KDE/release-service/21.04.0/pimcommon-21.04.0.tar.xz) = b6e180c48b133563ad5b86b7f33353a97b92a995eaf9db7bdfcfd60bc4acf92e +SIZE (KDE/release-service/21.04.0/pimcommon-21.04.0.tar.xz) = 369352 diff --git a/net/pimcommon/pkg-plist b/net/pimcommon/pkg-plist index 26ee64ffcde1..2a479c8ea132 100644 --- a/net/pimcommon/pkg-plist +++ b/net/pimcommon/pkg-plist @@ -1,186 +1,186 @@ share/qlogging-categories5/pimcommon.categories share/qlogging-categories5/pimcommon.renamecategories include/KF5/PimCommon/AbstractGenericPlugin include/KF5/PimCommon/AbstractGenericPluginInterface include/KF5/PimCommon/AutoCorrection include/KF5/PimCommon/AutoCorrectionLanguage include/KF5/PimCommon/AutoCorrectionWidget include/KF5/PimCommon/BroadcastStatus include/KF5/PimCommon/ConfigureImmutableWidgetUtils include/KF5/PimCommon/ConfigurePluginDialog include/KF5/PimCommon/ConfigurePluginsListWidget include/KF5/PimCommon/ConfigurePluginsWidget include/KF5/PimCommon/CustomLogWidget include/KF5/PimCommon/CustomToolsPlugin include/KF5/PimCommon/CustomToolsPluginManager include/KF5/PimCommon/CustomToolsViewInterface include/KF5/PimCommon/CustomToolsWidgetng include/KF5/PimCommon/CustomTreeView include/KF5/PimCommon/EmailValidator include/KF5/PimCommon/GenericPlugin include/KF5/PimCommon/GenericPluginManager include/KF5/PimCommon/KActionMenuChangeCase include/KF5/PimCommon/KPimPrintPreviewDialog include/KF5/PimCommon/LineEditWithAutoCorrection include/KF5/PimCommon/LineEditWithCompleterNg include/KF5/PimCommon/LogActivitiesManager include/KF5/PimCommon/MigrateApplicationFiles include/KF5/PimCommon/MigrateFileInfo include/KF5/PimCommon/NetworkManager include/KF5/PimCommon/PimCommonSettings include/KF5/PimCommon/PimUtil include/KF5/PimCommon/PluginUtil include/KF5/PimCommon/PurposeMenuWidget include/KF5/PimCommon/RenameFileDialog include/KF5/PimCommon/RichTexteditWithAutoCorrection include/KF5/PimCommon/ShareServiceUrlManager include/KF5/PimCommon/SimpleStringListEditor include/KF5/PimCommon/SpellCheckLineEdit include/KF5/PimCommon/TemplateListWidget include/KF5/PimCommon/TemplateManager include/KF5/PimCommon/TranslatorWidget include/KF5/PimCommonAkonadi/AddresseeLineEdit include/KF5/PimCommonAkonadi/AnnotationDialog include/KF5/PimCommonAkonadi/CheckedCollectionWidget include/KF5/PimCommonAkonadi/CollectionAclPage include/KF5/PimCommonAkonadi/CollectionAnnotationsAttribute include/KF5/PimCommonAkonadi/CollectionTypeUtil include/KF5/PimCommonAkonadi/CompletionConfigureDialog include/KF5/PimCommonAkonadi/CompletionOrderEditor include/KF5/PimCommonAkonadi/ContentTypeWidget include/KF5/PimCommonAkonadi/CreateResource include/KF5/PimCommonAkonadi/GenericPluginInterface include/KF5/PimCommonAkonadi/ImapAclAttribute include/KF5/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KF5/PimCommonAkonadi/IncidencesForWidget include/KF5/PimCommonAkonadi/LdapSearchDialog include/KF5/PimCommonAkonadi/MailUtil include/KF5/PimCommonAkonadi/ManageServerSideSubscriptionJob include/KF5/PimCommonAkonadi/PluginInterface include/KF5/PimCommonAkonadi/ProgressManagerAkonadi include/KF5/PimCommonAkonadi/RecentAddresses include/KF5/PimCommonAkonadi/SelectMultiCollectionDialog include/KF5/pimcommon/abstractgenericplugin.h include/KF5/pimcommon/abstractgenericplugininterface.h include/KF5/pimcommon/autocorrection.h include/KF5/pimcommon/autocorrectionlanguage.h include/KF5/pimcommon/autocorrectionwidget.h include/KF5/pimcommon/broadcaststatus.h include/KF5/pimcommon/configureimmutablewidgetutils.h include/KF5/pimcommon/configureplugindialog.h include/KF5/pimcommon/configurepluginslistwidget.h include/KF5/pimcommon/configurepluginswidget.h include/KF5/pimcommon/customlogwidget.h include/KF5/pimcommon/customtoolsplugin.h include/KF5/pimcommon/customtoolspluginmanager.h include/KF5/pimcommon/customtoolsviewinterface.h include/KF5/pimcommon/customtoolswidgetng.h include/KF5/pimcommon/customtreeview.h include/KF5/pimcommon/emailvalidator.h include/KF5/pimcommon/genericplugin.h include/KF5/pimcommon/genericpluginmanager.h include/KF5/pimcommon/imapresourcesettings.h include/KF5/pimcommon/kactionmenuchangecase.h include/KF5/pimcommon/kpimprintpreviewdialog.h include/KF5/pimcommon/lineeditwithautocorrection.h include/KF5/pimcommon/lineeditwithcompleterng.h include/KF5/pimcommon/logactivitiesmanager.h include/KF5/pimcommon/migrateapplicationfiles.h include/KF5/pimcommon/migratefileinfo.h include/KF5/pimcommon/networkmanager.h include/KF5/pimcommon/pimcommon_export.h include/KF5/pimcommon/pimcommonsetting_base.h include/KF5/pimcommon/pimcommonsettings.h include/KF5/pimcommon/pimutil.h include/KF5/pimcommon/pluginutil.h include/KF5/pimcommon/purposemenuwidget.h include/KF5/pimcommon/renamefiledialog.h include/KF5/pimcommon/richtexteditwithautocorrection.h include/KF5/pimcommon/shareserviceurlmanager.h include/KF5/pimcommon/simplestringlisteditor.h include/KF5/pimcommon/spellchecklineedit.h include/KF5/pimcommon/templatelistwidget.h include/KF5/pimcommon/templatemanager.h include/KF5/pimcommon/translatorwidget.h include/KF5/pimcommon_version.h include/KF5/pimcommonakonadi/addresseelineedit.h include/KF5/pimcommonakonadi/annotationdialog.h include/KF5/pimcommonakonadi/checkedcollectionwidget.h include/KF5/pimcommonakonadi/collectionaclpage.h include/KF5/pimcommonakonadi/collectionannotationsattribute.h include/KF5/pimcommonakonadi/collectiontypeutil.h include/KF5/pimcommonakonadi/completionconfiguredialog.h include/KF5/pimcommonakonadi/completionordereditor.h include/KF5/pimcommonakonadi/contenttypewidget.h include/KF5/pimcommonakonadi/createresource.h include/KF5/pimcommonakonadi/genericplugininterface.h include/KF5/pimcommonakonadi/imapaclattribute.h include/KF5/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KF5/pimcommonakonadi/incidencesforwidget.h include/KF5/pimcommonakonadi/ldapsearchdialog.h include/KF5/pimcommonakonadi/mailutil.h include/KF5/pimcommonakonadi/manageserversidesubscriptionjob.h include/KF5/pimcommonakonadi/pimcommonakonadi_export.h include/KF5/pimcommonakonadi/plugininterface.h include/KF5/pimcommonakonadi/progressmanagerakonadi.h include/KF5/pimcommonakonadi/recentaddresses.h include/KF5/pimcommonakonadi/selectmulticollectiondialog.h include/KF5/pimcommonakonadi_version.h lib/cmake/KF5PimCommon/KF5PimCommonConfig.cmake lib/cmake/KF5PimCommon/KF5PimCommonConfigVersion.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfig.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfigVersion.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets.cmake lib/libKF5PimCommon.so lib/libKF5PimCommon.so.5 lib/libKF5PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5PimCommonAkonadi.so lib/libKF5PimCommonAkonadi.so.5 lib/libKF5PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_PimCommon.pri %%QT_MKSPECDIR%%/modules/qt_PimCommonAkonadi.pri -%%QT_PLUGINDIR%%/designer/pimcommoniakonadiwidgets.so +%%QT_PLUGINDIR%%/designer/pimcommonakonadiwidgets.so %%QT_PLUGINDIR%%/designer/pimcommonwidgets.so share/locale/ar/LC_MESSAGES/libpimcommon.mo share/locale/bs/LC_MESSAGES/libpimcommon.mo share/locale/ca/LC_MESSAGES/libpimcommon.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon.mo share/locale/cs/LC_MESSAGES/libpimcommon.mo share/locale/da/LC_MESSAGES/libpimcommon.mo share/locale/de/LC_MESSAGES/libpimcommon.mo share/locale/el/LC_MESSAGES/libpimcommon.mo share/locale/en_GB/LC_MESSAGES/libpimcommon.mo share/locale/es/LC_MESSAGES/libpimcommon.mo share/locale/et/LC_MESSAGES/libpimcommon.mo share/locale/fi/LC_MESSAGES/libpimcommon.mo share/locale/fr/LC_MESSAGES/libpimcommon.mo share/locale/ga/LC_MESSAGES/libpimcommon.mo share/locale/gl/LC_MESSAGES/libpimcommon.mo share/locale/hu/LC_MESSAGES/libpimcommon.mo share/locale/ia/LC_MESSAGES/libpimcommon.mo share/locale/it/LC_MESSAGES/libpimcommon.mo share/locale/ja/LC_MESSAGES/libpimcommon.mo share/locale/kk/LC_MESSAGES/libpimcommon.mo share/locale/ko/LC_MESSAGES/libpimcommon.mo share/locale/lt/LC_MESSAGES/libpimcommon.mo share/locale/mr/LC_MESSAGES/libpimcommon.mo share/locale/nb/LC_MESSAGES/libpimcommon.mo share/locale/nds/LC_MESSAGES/libpimcommon.mo share/locale/nl/LC_MESSAGES/libpimcommon.mo share/locale/pl/LC_MESSAGES/libpimcommon.mo share/locale/pt/LC_MESSAGES/libpimcommon.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon.mo share/locale/ro/LC_MESSAGES/libpimcommon.mo share/locale/ru/LC_MESSAGES/libpimcommon.mo share/locale/sk/LC_MESSAGES/libpimcommon.mo share/locale/sl/LC_MESSAGES/libpimcommon.mo share/locale/sr/LC_MESSAGES/libpimcommon.mo share/locale/sv/LC_MESSAGES/libpimcommon.mo share/locale/tr/LC_MESSAGES/libpimcommon.mo share/locale/ug/LC_MESSAGES/libpimcommon.mo share/locale/uk/LC_MESSAGES/libpimcommon.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon.mo diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index 94d8ae1d6fca..c1950d9c6e66 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706302 -SHA256 (KDE/release-service/20.12.3/zeroconf-ioslave-20.12.3.tar.xz) = 9b668aeefba34127078634625603621ee5b96809eb696b591a2dc97d64eda7ff -SIZE (KDE/release-service/20.12.3/zeroconf-ioslave-20.12.3.tar.xz) = 43424 +TIMESTAMP = 1618579232 +SHA256 (KDE/release-service/21.04.0/zeroconf-ioslave-21.04.0.tar.xz) = 474263c18eb0b0bd3318b5279fc99fe0b288b5e6cffbe595111e1187fcf8950d +SIZE (KDE/release-service/21.04.0/zeroconf-ioslave-21.04.0.tar.xz) = 43320 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 1cd7c3d2b889..2d66cd74e115 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706330 -SHA256 (KDE/release-service/20.12.3/print-manager-20.12.3.tar.xz) = 8a375086ca58487f79ae16c24792e1a9b0b609449aeb105ea9df945b12cd7ca6 -SIZE (KDE/release-service/20.12.3/print-manager-20.12.3.tar.xz) = 258640 +TIMESTAMP = 1618579233 +SHA256 (KDE/release-service/21.04.0/print-manager-21.04.0.tar.xz) = 4020fb437e11ac6b4094378f17fadbdc3605976967eadf244ac64b6204c4b7cc +SIZE (KDE/release-service/21.04.0/print-manager-21.04.0.tar.xz) = 259104 diff --git a/science/kalzium/Makefile b/science/kalzium/Makefile index 9418cf6be962..808cf0a36d4d 100644 --- a/science/kalzium/Makefile +++ b/science/kalzium/Makefile @@ -1,39 +1,36 @@ PORTNAME= kalzium DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= science education kde kde-applications -PATCH_SITES= https://invent.kde.org/education/kalzium/commit/ -PATCHFILES= 2b9ebd85.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= Periodic table of elements for KDE LICENSE= GPLv2 LGPL20 GFDL LICENSE_COMB= multi LIB_DEPENDS= libopenbabel.so:science/openbabel \ libAvogadroCore.so:science/avogadrolibs BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/facile/facile.a:math/facile \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data USES= cmake compiler:c++11-lang desktop-file-utils gettext gl kde:5 \ pkgconfig qt:5 tar:xz USE_GL= gl glew glu USE_KDE= auth archive attica bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets js kdelibs4support \ khtml kio newstuff notifications parts plotting service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem \ xmlgui USE_OCAML= yes NO_OCAML_RUNDEPENDS= yes USE_QT= concurrent core dbus declarative gui network opengl printsupport script svg \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 6a48de029711..c35306fc82a0 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1614706332 -SHA256 (KDE/release-service/20.12.3/kalzium-20.12.3.tar.xz) = 8233969b13f104e8388a771df2561f49fa65a6913184a0d92c7d4ec4ecdcffe4 -SIZE (KDE/release-service/20.12.3/kalzium-20.12.3.tar.xz) = 24521912 -SHA256 (KDE/release-service/20.12.3/2b9ebd85.diff) = 7ba89a187c30c37ba82cd5991f32333788853f0cb0ddb2122280e536ff53e8eb -SIZE (KDE/release-service/20.12.3/2b9ebd85.diff) = 10977 +TIMESTAMP = 1618579234 +SHA256 (KDE/release-service/21.04.0/kalzium-21.04.0.tar.xz) = f5f5fe033f03031e565ba594963521147b7ffdfa5fc8d31d2f6b3e6a7b90d83a +SIZE (KDE/release-service/21.04.0/kalzium-21.04.0.tar.xz) = 24544292 diff --git a/science/step/distinfo b/science/step/distinfo index 46923b412640..03d436344b05 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706331 -SHA256 (KDE/release-service/20.12.3/step-20.12.3.tar.xz) = 16f3ce702be67c2355158946feb811edd20b022f37fdd62e42c2108c11fce223 -SIZE (KDE/release-service/20.12.3/step-20.12.3.tar.xz) = 958852 +TIMESTAMP = 1618579235 +SHA256 (KDE/release-service/21.04.0/step-21.04.0.tar.xz) = 45bc993780ad56adcb2514fbff50a2cfe6fabdd9000572d06c3dff69c7503399 +SIZE (KDE/release-service/21.04.0/step-21.04.0.tar.xz) = 964072 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 0c230d6f9d12..869133ed747b 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706333 -SHA256 (KDE/release-service/20.12.3/kgpg-20.12.3.tar.xz) = dfc721aa0cd2a7707cba5c446a66e57b4c51ffbb79ebbf968af6a906dba39d7c -SIZE (KDE/release-service/20.12.3/kgpg-20.12.3.tar.xz) = 2892236 +TIMESTAMP = 1618579236 +SHA256 (KDE/release-service/21.04.0/kgpg-21.04.0.tar.xz) = cee117cd98473c546b87efb0b14f230d955532e6bf5311cc2d6181c5cb8cbd28 +SIZE (KDE/release-service/21.04.0/kgpg-21.04.0.tar.xz) = 2886168 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index dc72f069c64a..d7ffedb365ad 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706335 -SHA256 (KDE/release-service/20.12.3/kleopatra-20.12.3.tar.xz) = bf30f99bc6abd44d512ca8c53a7e81af625db72547a33df5c581101d787feaa0 -SIZE (KDE/release-service/20.12.3/kleopatra-20.12.3.tar.xz) = 2001196 +TIMESTAMP = 1618579237 +SHA256 (KDE/release-service/21.04.0/kleopatra-21.04.0.tar.xz) = c03bc7147e35d2994a0a7d323108d6b34e2e2c70768a5481bec3b04da7b6a870 +SIZE (KDE/release-service/21.04.0/kleopatra-21.04.0.tar.xz) = 2054088 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index dfdc3b614176..f733be1f9c4e 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706336 -SHA256 (KDE/release-service/20.12.3/kpkpass-20.12.3.tar.xz) = e959224197521ed82ae98f7811fa03087c2397df9bbbc8ed7faf34e719558f51 -SIZE (KDE/release-service/20.12.3/kpkpass-20.12.3.tar.xz) = 23448 +TIMESTAMP = 1618579238 +SHA256 (KDE/release-service/21.04.0/kpkpass-21.04.0.tar.xz) = b117e2b04f66e101662ef85a56e2636d78b4092e897f14ff0c27ce61874c2e68 +SIZE (KDE/release-service/21.04.0/kpkpass-21.04.0.tar.xz) = 27360 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index b53e035f5321..2643d6cfabfa 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706334 -SHA256 (KDE/release-service/20.12.3/kwalletmanager-20.12.3.tar.xz) = 995414a017735a0dedf19bffdc715cc0f526925b597bba9aa7f5d34e97059d9a -SIZE (KDE/release-service/20.12.3/kwalletmanager-20.12.3.tar.xz) = 773840 +TIMESTAMP = 1618579238 +SHA256 (KDE/release-service/21.04.0/kwalletmanager-21.04.0.tar.xz) = 7323e7d548bec44ba53e77bf4e482024644529f25d2b339244bc4d6079eb07e6 +SIZE (KDE/release-service/21.04.0/kwalletmanager-21.04.0.tar.xz) = 782468 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 266794ed725d..3ed208848340 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706334 -SHA256 (KDE/release-service/20.12.3/libkleo-20.12.3.tar.xz) = 9949cc5492cf2ea9a349b56aa7d88a79d0f96a48baa73c9339e521e09448950c -SIZE (KDE/release-service/20.12.3/libkleo-20.12.3.tar.xz) = 358540 +TIMESTAMP = 1618579239 +SHA256 (KDE/release-service/21.04.0/libkleo-21.04.0.tar.xz) = df6cfd8a776f10fe9645c593fb085d13d60a843de32921a2da2e011db8856f1c +SIZE (KDE/release-service/21.04.0/libkleo-21.04.0.tar.xz) = 371844 diff --git a/security/libkleo/files/patch-BR415168 b/security/libkleo/files/patch-BR415168 index e7e6a10e92b1..e69de29bb2d1 100644 --- a/security/libkleo/files/patch-BR415168 +++ b/security/libkleo/files/patch-BR415168 @@ -1,98 +0,0 @@ -From 54ef30823adb3d4c9b6c66494142980f5cc9e35b Mon Sep 17 00:00:00 2001 -From: Andre Heinecke -Date: Wed, 12 Feb 2020 12:11:32 +0100 -Subject: [PATCH] De inline keylistmodelinterface virtual dtor - -This attempts to fix a crash on FreeBSD. See: D26393 for -more info. - -BUG: 415168 ---- - src/CMakeLists.txt | 1 + - src/models/keylistmodelinterface.cpp | 35 ++++++++++++++++++++++++++++ - src/models/keylistmodelinterface.h | 6 +++-- - 3 files changed, 40 insertions(+), 2 deletions(-) - create mode 100644 src/models/keylistmodelinterface.cpp - -diff --git src/CMakeLists.txt src/CMakeLists.txt -index dc30079..056d33b 100644 ---- src/CMakeLists.txt -+++ src/CMakeLists.txt -@@ -29,6 +29,7 @@ set(libkleo_core_SRCS - kleo/keyresolver.cpp - models/keycache.cpp - models/keylistmodel.cpp -+ models/keylistmodelinterface.cpp - models/keylistsortfilterproxymodel.cpp - models/keyrearrangecolumnsproxymodel.cpp - models/subkeylistmodel.cpp -diff --git src/models/keylistmodelinterface.cpp src/models/keylistmodelinterface.cpp -new file mode 100644 -index 0000000..77fc1e2 ---- /dev/null -+++ src/models/keylistmodelinterface.cpp -@@ -0,0 +1,35 @@ -+/* -*- mode: c++; c-basic-offset:4 -*- -+ models/keylistmodelinterface.cpp -+ -+ Copyright (c) 2020 g10 Code GmbH -+ -+ Kleopatra is free software; you can redistribute it and/or modify -+ it under the terms of the GNU General Public License as published by -+ the Free Software Foundation; either version 2 of the License, or -+ (at your option) any later version. -+ -+ Kleopatra is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -+ -+ In addition, as a special exception, the copyright holders give -+ permission to link the code of this program with any edition of -+ the Qt library by Trolltech AS, Norway (or with modified versions -+ of Qt that use the same license as Qt), and distribute linked -+ combinations including the two. You must obey the GNU General -+ Public License in all respects for all of the code used other than -+ Qt. If you modify this file, you may extend this exception to -+ your version of the file, but you are not obligated to do so. If -+ you do not wish to do so, delete this exception statement from -+ your version. -+*/ -+#include "keylistmodelinterface.h" -+ -+Kleo::KeyListModelInterface::~KeyListModelInterface() -+{ -+} -diff --git src/models/keylistmodelinterface.h src/models/keylistmodelinterface.h -index 3090017..4de3fec 100644 ---- src/models/keylistmodelinterface.h -+++ src/models/keylistmodelinterface.h -@@ -35,6 +35,8 @@ - - #include - -+#include -+ - namespace GpgME - { - class Key; -@@ -46,10 +48,10 @@ template class QList; - namespace Kleo - { - --class KeyListModelInterface -+class KLEO_EXPORT KeyListModelInterface - { - public: -- virtual ~KeyListModelInterface() {} -+ virtual ~KeyListModelInterface(); - - static const int FingerprintRole = 0xF1; - static const int KeyRole = 0xF2; --- -2.20.1 - diff --git a/security/libkleo/pkg-plist b/security/libkleo/pkg-plist index 75715e0e9e88..14392e3202b0 100644 --- a/security/libkleo/pkg-plist +++ b/security/libkleo/pkg-plist @@ -1,150 +1,158 @@ share/qlogging-categories5/libkleo.categories share/qlogging-categories5/libkleo.renamecategories etc/xdg/libkleopatrarc include/KF5/Libkleo/ChecksumDefinition include/KF5/Libkleo/Classify +include/KF5/Libkleo/Compat include/KF5/Libkleo/CryptoConfigDialog include/KF5/Libkleo/CryptoConfigModule include/KF5/Libkleo/DNAttributeOrderConfigWidget +include/KF5/Libkleo/Debug include/KF5/Libkleo/DefaultKeyFilter include/KF5/Libkleo/DefaultKeyGenerationJob include/KF5/Libkleo/DirectoryServicesWidget include/KF5/Libkleo/Dn include/KF5/Libkleo/Enum include/KF5/Libkleo/FileNameRequester include/KF5/Libkleo/FileSystemWatcher include/KF5/Libkleo/Formatting include/KF5/Libkleo/GnuPG include/KF5/Libkleo/KConfigBasedKeyFilter include/KF5/Libkleo/KDHorizontalLine include/KF5/Libkleo/KeyApprovalDialog include/KF5/Libkleo/KeyCache include/KF5/Libkleo/KeyFilter include/KF5/Libkleo/KeyFilterManager +include/KF5/Libkleo/KeyGroup +include/KF5/Libkleo/KeyList include/KF5/Libkleo/KeyListModel include/KF5/Libkleo/KeyListModelInterface include/KF5/Libkleo/KeyListSortFilterProxyModel include/KF5/Libkleo/KeyRearrangeColumnsProxyModel include/KF5/Libkleo/KeyRequester include/KF5/Libkleo/KeyResolver include/KF5/Libkleo/KeySelectionCombo include/KF5/Libkleo/KeySelectionDialog include/KF5/Libkleo/KleoException include/KF5/Libkleo/MessageBox include/KF5/Libkleo/NewKeyApprovalDialog include/KF5/Libkleo/OidMap include/KF5/Libkleo/Predicates include/KF5/Libkleo/ProgressDialog include/KF5/Libkleo/Stl_Util include/KF5/Libkleo/SubkeyListModel include/KF5/Libkleo/UserIDListModel include/KF5/libkleo/checksumdefinition.h include/KF5/libkleo/classify.h +include/KF5/libkleo/compat.h include/KF5/libkleo/cryptoconfigdialog.h include/KF5/libkleo/cryptoconfigmodule.h +include/KF5/libkleo/debug.h include/KF5/libkleo/defaultkeyfilter.h include/KF5/libkleo/defaultkeygenerationjob.h include/KF5/libkleo/directoryserviceswidget.h include/KF5/libkleo/dn.h include/KF5/libkleo/dnattributeorderconfigwidget.h include/KF5/libkleo/enum.h include/KF5/libkleo/filenamerequester.h include/KF5/libkleo/filesystemwatcher.h include/KF5/libkleo/formatting.h include/KF5/libkleo/gnupg.h include/KF5/libkleo/kconfigbasedkeyfilter.h include/KF5/libkleo/kdhorizontalline.h include/KF5/libkleo/keyapprovaldialog.h include/KF5/libkleo/keycache.h include/KF5/libkleo/keyfilter.h include/KF5/libkleo/keyfiltermanager.h +include/KF5/libkleo/keygroup.h +include/KF5/libkleo/keylist.h include/KF5/libkleo/keylistmodel.h include/KF5/libkleo/keylistmodelinterface.h include/KF5/libkleo/keylistsortfilterproxymodel.h include/KF5/libkleo/keyrearrangecolumnsproxymodel.h include/KF5/libkleo/keyrequester.h include/KF5/libkleo/keyresolver.h include/KF5/libkleo/keyselectioncombo.h include/KF5/libkleo/keyselectiondialog.h include/KF5/libkleo/kleo_export.h include/KF5/libkleo/kleoexception.h include/KF5/libkleo/messagebox.h include/KF5/libkleo/newkeyapprovaldialog.h include/KF5/libkleo/oidmap.h include/KF5/libkleo/predicates.h include/KF5/libkleo/progressdialog.h include/KF5/libkleo/stl_util.h include/KF5/libkleo/subkeylistmodel.h include/KF5/libkleo/useridlistmodel.h include/KF5/libkleo_version.h lib/cmake/KF5Libkleo/KF5LibkleoConfig.cmake lib/cmake/KF5Libkleo/KF5LibkleoConfigVersion.cmake lib/cmake/KF5Libkleo/KF5LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Libkleo/KF5LibkleoTargets.cmake lib/libKF5Libkleo.so lib/libKF5Libkleo.so.5 lib/libKF5Libkleo.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkleo.pri %%DATADIR%%patra/pics/chiasmus_chi.png %%DATADIR%%patra/pics/hi16-app-gpg.png %%DATADIR%%patra/pics/hi16-app-gpgsm.png %%DATADIR%%patra/pics/hi22-app-gpg.png %%DATADIR%%patra/pics/hi22-app-gpgsm.png %%DATADIR%%patra/pics/hi32-app-gpg.png %%DATADIR%%patra/pics/hi32-app-gpgsm.png %%DATADIR%%patra/pics/key.png %%DATADIR%%patra/pics/key_bad.png %%DATADIR%%patra/pics/key_ok.png %%DATADIR%%patra/pics/key_unknown.png %%DATADIR%%patra/pics/smartcard.xpm share/locale/ar/LC_MESSAGES/libkleopatra.mo share/locale/bg/LC_MESSAGES/libkleopatra.mo share/locale/bs/LC_MESSAGES/libkleopatra.mo share/locale/ca/LC_MESSAGES/libkleopatra.mo share/locale/ca@valencia/LC_MESSAGES/libkleopatra.mo share/locale/cs/LC_MESSAGES/libkleopatra.mo share/locale/da/LC_MESSAGES/libkleopatra.mo share/locale/de/LC_MESSAGES/libkleopatra.mo share/locale/el/LC_MESSAGES/libkleopatra.mo share/locale/en_GB/LC_MESSAGES/libkleopatra.mo share/locale/eo/LC_MESSAGES/libkleopatra.mo share/locale/es/LC_MESSAGES/libkleopatra.mo share/locale/et/LC_MESSAGES/libkleopatra.mo share/locale/eu/LC_MESSAGES/libkleopatra.mo share/locale/fa/LC_MESSAGES/libkleopatra.mo share/locale/fi/LC_MESSAGES/libkleopatra.mo share/locale/fr/LC_MESSAGES/libkleopatra.mo share/locale/ga/LC_MESSAGES/libkleopatra.mo share/locale/gl/LC_MESSAGES/libkleopatra.mo share/locale/hi/LC_MESSAGES/libkleopatra.mo share/locale/hr/LC_MESSAGES/libkleopatra.mo share/locale/hu/LC_MESSAGES/libkleopatra.mo share/locale/ia/LC_MESSAGES/libkleopatra.mo share/locale/is/LC_MESSAGES/libkleopatra.mo share/locale/it/LC_MESSAGES/libkleopatra.mo share/locale/ja/LC_MESSAGES/libkleopatra.mo share/locale/kk/LC_MESSAGES/libkleopatra.mo share/locale/km/LC_MESSAGES/libkleopatra.mo share/locale/ko/LC_MESSAGES/libkleopatra.mo share/locale/lt/LC_MESSAGES/libkleopatra.mo share/locale/lv/LC_MESSAGES/libkleopatra.mo share/locale/mr/LC_MESSAGES/libkleopatra.mo share/locale/nb/LC_MESSAGES/libkleopatra.mo share/locale/nds/LC_MESSAGES/libkleopatra.mo share/locale/nl/LC_MESSAGES/libkleopatra.mo share/locale/nn/LC_MESSAGES/libkleopatra.mo share/locale/pa/LC_MESSAGES/libkleopatra.mo share/locale/pl/LC_MESSAGES/libkleopatra.mo share/locale/pt/LC_MESSAGES/libkleopatra.mo share/locale/pt_BR/LC_MESSAGES/libkleopatra.mo share/locale/ro/LC_MESSAGES/libkleopatra.mo share/locale/ru/LC_MESSAGES/libkleopatra.mo share/locale/sk/LC_MESSAGES/libkleopatra.mo share/locale/sl/LC_MESSAGES/libkleopatra.mo share/locale/sr/LC_MESSAGES/libkleopatra.mo share/locale/sv/LC_MESSAGES/libkleopatra.mo share/locale/tr/LC_MESSAGES/libkleopatra.mo share/locale/ug/LC_MESSAGES/libkleopatra.mo share/locale/uk/LC_MESSAGES/libkleopatra.mo share/locale/zh_CN/LC_MESSAGES/libkleopatra.mo share/locale/zh_TW/LC_MESSAGES/libkleopatra.mo diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index 916b6ddc7c77..78c89879478c 100644 --- a/sysutils/baloo-widgets/Makefile +++ b/sysutils/baloo-widgets/Makefile @@ -1,19 +1,19 @@ 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 # Override shared library version -KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_VERSION} +KDE_APPLICATIONS_SHLIB_VER= 21.4.0 .include diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 9fb0893270cb..d246e59c898c 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706341 -SHA256 (KDE/release-service/20.12.3/baloo-widgets-20.12.3.tar.xz) = 113bec52f93b0c18f62e0c5814a8221ea1c8e2f26e6079937d337564fffbf633 -SIZE (KDE/release-service/20.12.3/baloo-widgets-20.12.3.tar.xz) = 261628 +TIMESTAMP = 1618579240 +SHA256 (KDE/release-service/21.04.0/baloo-widgets-21.04.0.tar.xz) = 3996d5741c2f88c5e32ecd672148f7d255a863a4c355e92f120ae67c2c48c523 +SIZE (KDE/release-service/21.04.0/baloo-widgets-21.04.0.tar.xz) = 262244 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index b990191ad016..61cdf4036bdd 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706339 -SHA256 (KDE/release-service/20.12.3/filelight-20.12.3.tar.xz) = 206a70d9aa2d5ba025cb5ab84d860843a163919f26517eca5c0108b123be4a5a -SIZE (KDE/release-service/20.12.3/filelight-20.12.3.tar.xz) = 671244 +TIMESTAMP = 1618579241 +SHA256 (KDE/release-service/21.04.0/filelight-21.04.0.tar.xz) = db2004c06c2ae95f007ade9244d161bb140b3012776cce0f0f1fcf7a0cc3d7ad +SIZE (KDE/release-service/21.04.0/filelight-21.04.0.tar.xz) = 679032 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 75b8532f14b4..e224a5a8034c 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706337 -SHA256 (KDE/release-service/20.12.3/k3b-20.12.3.tar.xz) = 88e8d3410748e11c77755f5e7b577afb34d1c4d99e529dcc5ab9b663992c5b8c -SIZE (KDE/release-service/20.12.3/k3b-20.12.3.tar.xz) = 10688136 +TIMESTAMP = 1618579242 +SHA256 (KDE/release-service/21.04.0/k3b-21.04.0.tar.xz) = 56e4787330fb886503f69e5ef926cf10a2feb708c25ca5a0c8ce2032d7a9cfa8 +SIZE (KDE/release-service/21.04.0/k3b-21.04.0.tar.xz) = 10709248 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index ee11d0f7e965..9ca03fce96eb 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706336 -SHA256 (KDE/release-service/20.12.3/kbackup-20.12.3.tar.xz) = 14bb667949b7818bc5bfe5731a89e05b1b3f8890b1c825459c47905c88491213 -SIZE (KDE/release-service/20.12.3/kbackup-20.12.3.tar.xz) = 380824 +TIMESTAMP = 1618579243 +SHA256 (KDE/release-service/21.04.0/kbackup-21.04.0.tar.xz) = dfd36d98247213b963c1ab2c518763f66e6279e6aa4317489c2b3f21db996bd0 +SIZE (KDE/release-service/21.04.0/kbackup-21.04.0.tar.xz) = 383604 diff --git a/sysutils/kbackup/pkg-plist b/sysutils/kbackup/pkg-plist index e4f1ccc25e33..e44f24213de9 100644 --- a/sysutils/kbackup/pkg-plist +++ b/sysutils/kbackup/pkg-plist @@ -1,48 +1,50 @@ bin/kbackup man/ca/man1/kbackup.1.gz +man/de/man1/kbackup.1.gz +man/es/man1/kbackup.1.gz man/it/man1/kbackup.1.gz man/man1/kbackup.1.gz man/nl/man1/kbackup.1.gz man/sv/man1/kbackup.1.gz man/uk/man1/kbackup.1.gz 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@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo share/locale/el/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/et/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo share/locale/ko/LC_MESSAGES/kbackup.mo share/locale/lt/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sl/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 96e6ec64cfcd..9fcb80f321f7 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706339 -SHA256 (KDE/release-service/20.12.3/kcron-20.12.3.tar.xz) = ee8276e91e35959c6ea795327957ed6a218a59ac0912aac3a3cbc5f5abafc54a -SIZE (KDE/release-service/20.12.3/kcron-20.12.3.tar.xz) = 899000 +TIMESTAMP = 1618579243 +SHA256 (KDE/release-service/21.04.0/kcron-21.04.0.tar.xz) = c3ca3b59d10a850e7bf24cdc95256bd1d98ce1be1c2da55fb075de8e2c239e90 +SIZE (KDE/release-service/21.04.0/kcron-21.04.0.tar.xz) = 901412 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 59fff68da1fd..96ab65e601a5 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706343 -SHA256 (KDE/release-service/20.12.3/kdebugsettings-20.12.3.tar.xz) = 1ba70b892a1fb8409e4b9e96f83b8fc3a1ecc8191422c41e586a5b7dc7b251db -SIZE (KDE/release-service/20.12.3/kdebugsettings-20.12.3.tar.xz) = 68344 +TIMESTAMP = 1618579244 +SHA256 (KDE/release-service/21.04.0/kdebugsettings-21.04.0.tar.xz) = 93e7824fdbe04872495d71974b46f77eeb12daf9c695a78c3a31699e76e2ebf6 +SIZE (KDE/release-service/21.04.0/kdebugsettings-21.04.0.tar.xz) = 86560 diff --git a/sysutils/kdebugsettings/pkg-plist b/sysutils/kdebugsettings/pkg-plist index 58c140154c75..73a67098a08d 100644 --- a/sysutils/kdebugsettings/pkg-plist +++ b/sysutils/kdebugsettings/pkg-plist @@ -1,42 +1,43 @@ bin/kdebugsettings lib/libkdebugsettings.so.%%KDE_APPLICATIONS_VERSION%% lib/libkdebugsettings.so.5 share/applications/org.kde.kdebugsettings.desktop +%%DATADIR%%/groups/Full Debug Ruqola share/locale/ar/LC_MESSAGES/kdebugsettings.mo share/locale/ca/LC_MESSAGES/kdebugsettings.mo share/locale/ca@valencia/LC_MESSAGES/kdebugsettings.mo share/locale/cs/LC_MESSAGES/kdebugsettings.mo share/locale/da/LC_MESSAGES/kdebugsettings.mo share/locale/de/LC_MESSAGES/kdebugsettings.mo share/locale/el/LC_MESSAGES/kdebugsettings.mo share/locale/en_GB/LC_MESSAGES/kdebugsettings.mo share/locale/es/LC_MESSAGES/kdebugsettings.mo share/locale/et/LC_MESSAGES/kdebugsettings.mo share/locale/eu/LC_MESSAGES/kdebugsettings.mo share/locale/fi/LC_MESSAGES/kdebugsettings.mo share/locale/fr/LC_MESSAGES/kdebugsettings.mo share/locale/gl/LC_MESSAGES/kdebugsettings.mo share/locale/hu/LC_MESSAGES/kdebugsettings.mo share/locale/ia/LC_MESSAGES/kdebugsettings.mo share/locale/it/LC_MESSAGES/kdebugsettings.mo share/locale/ja/LC_MESSAGES/kdebugsettings.mo share/locale/ko/LC_MESSAGES/kdebugsettings.mo share/locale/lt/LC_MESSAGES/kdebugsettings.mo share/locale/nl/LC_MESSAGES/kdebugsettings.mo share/locale/nn/LC_MESSAGES/kdebugsettings.mo share/locale/pl/LC_MESSAGES/kdebugsettings.mo share/locale/pt/LC_MESSAGES/kdebugsettings.mo share/locale/pt_BR/LC_MESSAGES/kdebugsettings.mo share/locale/ro/LC_MESSAGES/kdebugsettings.mo share/locale/ru/LC_MESSAGES/kdebugsettings.mo share/locale/sk/LC_MESSAGES/kdebugsettings.mo share/locale/sl/LC_MESSAGES/kdebugsettings.mo share/locale/sr/LC_MESSAGES/kdebugsettings.mo share/locale/sv/LC_MESSAGES/kdebugsettings.mo share/locale/tr/LC_MESSAGES/kdebugsettings.mo share/locale/uk/LC_MESSAGES/kdebugsettings.mo share/locale/zh_CN/LC_MESSAGES/kdebugsettings.mo share/locale/zh_TW/LC_MESSAGES/kdebugsettings.mo share/metainfo/org.kde.kdebugsettings.appdata.xml share/qlogging-categories5/kde.renamecategories share/qlogging-categories5/kdebugsettings.categories diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 9ad09e373cfd..6213a1821d94 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706345 -SHA256 (KDE/release-service/20.12.3/kdf-20.12.3.tar.xz) = e72c5eaad86838dc67dd0e3059dea15476a0a1e3fbecd2efa4d7b3a7ac9b72e3 -SIZE (KDE/release-service/20.12.3/kdf-20.12.3.tar.xz) = 467360 +TIMESTAMP = 1618579245 +SHA256 (KDE/release-service/21.04.0/kdf-21.04.0.tar.xz) = ee1559cfc31fc234f9409cb1c3b7ed1d27201e83b9ae09fcbea8bf317e396ced +SIZE (KDE/release-service/21.04.0/kdf-21.04.0.tar.xz) = 467312 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index daebda2ac383..a9c9bac45946 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706344 -SHA256 (KDE/release-service/20.12.3/kdialog-20.12.3.tar.xz) = 231f6735e5905e92381da835da1b90bddb8ada39d8bffd90c8d2f9a3673602de -SIZE (KDE/release-service/20.12.3/kdialog-20.12.3.tar.xz) = 108492 +TIMESTAMP = 1618579246 +SHA256 (KDE/release-service/21.04.0/kdialog-21.04.0.tar.xz) = babc9bc9c88cdce81e2380cde280be650ea6ec10fddb949a45a142a1ee6d5535 +SIZE (KDE/release-service/21.04.0/kdialog-21.04.0.tar.xz) = 109132 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 37801a5d9926..1299bc9180bb 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706338 -SHA256 (KDE/release-service/20.12.3/kfloppy-20.12.3.tar.xz) = e855c56dcde86273a67c130c71c7bb8b8f745168d5d888097d2bdcc75c09ce01 -SIZE (KDE/release-service/20.12.3/kfloppy-20.12.3.tar.xz) = 204260 +TIMESTAMP = 1618579247 +SHA256 (KDE/release-service/21.04.0/kfloppy-21.04.0.tar.xz) = 7adcbda65dc99b80eff3eea9cfd0f8accf88915fb8e6d56cf49627431490aaa6 +SIZE (KDE/release-service/21.04.0/kfloppy-21.04.0.tar.xz) = 205156 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 5a50d7fb7f4a..c675c4c36e65 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706340 -SHA256 (KDE/release-service/20.12.3/khelpcenter-20.12.3.tar.xz) = 0e29e793687395d0349d23856a790ea2bab88c1b3f13ab5e0fdd1445627f3d56 -SIZE (KDE/release-service/20.12.3/khelpcenter-20.12.3.tar.xz) = 4250480 +TIMESTAMP = 1618579248 +SHA256 (KDE/release-service/21.04.0/khelpcenter-21.04.0.tar.xz) = fb9655db22859ec75f1a05a966106469885de7e148d1f5b41354fe36d88ddb11 +SIZE (KDE/release-service/21.04.0/khelpcenter-21.04.0.tar.xz) = 4266256 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index b32eafdeffef..34049369acfb 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706341 -SHA256 (KDE/release-service/20.12.3/ksystemlog-20.12.3.tar.xz) = 1e3fa2a9e2c9f995ce8aea028ca68ba2487db7212ad298d9d2d7fa98710cf0eb -SIZE (KDE/release-service/20.12.3/ksystemlog-20.12.3.tar.xz) = 1938596 +TIMESTAMP = 1618579249 +SHA256 (KDE/release-service/21.04.0/ksystemlog-21.04.0.tar.xz) = 2474b8d13451e7c884250d7e29b808dbad1e90cacbb1df4786c890abdd445f19 +SIZE (KDE/release-service/21.04.0/ksystemlog-21.04.0.tar.xz) = 1954412 diff --git a/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.cpp b/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.cpp new file mode 100644 index 000000000000..6475091d75a5 --- /dev/null +++ b/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.cpp @@ -0,0 +1,11 @@ +--- src/modes/cron/cronConfiguration.cpp.orig 2021-04-12 19:57:29 UTC ++++ src/modes/cron/cronConfiguration.cpp +@@ -25,7 +25,7 @@ CronConfiguration::CronConfiguration() + { + mConfiguration->setCurrentGroup(QStringLiteral("CronLogMode")); + +- const QStringList defaultCronPaths{QStringLiteral("/var/log/syslog")}; ++ const QStringList defaultCronPaths{QStringLiteral("/var/log/syslog"), QStringLiteral("/var/log/cron")}; + mConfiguration->addItemStringList(QStringLiteral("LogFilesPaths"), mCronPaths, defaultCronPaths, QStringLiteral("LogFilesPaths")); + + const QString defaultProcessFilter(QStringLiteral("/usr/sbin/cron")); diff --git a/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.h b/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.h index 51b9c1e3f24f..e69de29bb2d1 100644 --- a/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.h +++ b/sysutils/ksystemlog/files/patch-src_modes_cron_cronConfiguration.h @@ -1,11 +0,0 @@ ---- src/modes/cron/cronConfiguration.h.orig 2015-11-20 21:21:48 UTC -+++ src/modes/cron/cronConfiguration.h -@@ -52,7 +52,7 @@ public: - configuration->setCurrentGroup(QStringLiteral("CronLogMode")); - - QStringList defaultCronPaths; -- defaultCronPaths << QStringLiteral("/var/log/syslog"); -+ defaultCronPaths << QStringLiteral("/var/log/cron"); - configuration->addItemStringList(QStringLiteral("LogFilesPaths"), d->cronPaths, defaultCronPaths, - QStringLiteral("LogFilesPaths")); - diff --git a/sysutils/ksystemlog/files/patch-src_modes_daemon_daemonConfiguration.h b/sysutils/ksystemlog/files/patch-src_modes_daemon_daemonConfiguration.h index b75e8d098877..e69de29bb2d1 100644 --- a/sysutils/ksystemlog/files/patch-src_modes_daemon_daemonConfiguration.h +++ b/sysutils/ksystemlog/files/patch-src_modes_daemon_daemonConfiguration.h @@ -1,11 +0,0 @@ ---- src/modes/daemon/daemonConfiguration.h.orig 2015-11-20 20:21:00 UTC -+++ src/modes/daemon/daemonConfiguration.h -@@ -48,7 +48,7 @@ public: - configuration->setCurrentGroup(QStringLiteral("DaemonLogMode")); - - QStringList defaultDaemonPaths; -- defaultDaemonPaths << QStringLiteral("/var/log/daemon.log"); -+ defaultDaemonPaths << QStringLiteral("/var/log/messages"); - configuration->addItemStringList(QStringLiteral("LogFilesPaths"), d->daemonPaths, defaultDaemonPaths, - QStringLiteral("LogFilesPaths")); - } diff --git a/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.cpp b/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.cpp new file mode 100644 index 000000000000..e6745b7ddd22 --- /dev/null +++ b/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.cpp @@ -0,0 +1,12 @@ +--- src/modes/system/systemConfiguration.cpp.orig 2021-04-09 06:15:17 UTC ++++ src/modes/system/systemConfiguration.cpp +@@ -23,7 +23,8 @@ + + SystemConfiguration::SystemConfiguration() + : GenericLogModeConfiguration(QStringLiteral(SYSTEM_LOG_MODE_ID), +- QStringList() << QStringLiteral("/var/log/syslog"), ++ QStringList() << QStringLiteral("/var/log/syslog") ++ << QStringLiteral("/var/log/messages"), + QList() << Globals::INFORMATION_LOG_LEVEL_ID) + { + /* diff --git a/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.h b/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.h index 0fc3f0c270e7..e69de29bb2d1 100644 --- a/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.h +++ b/sysutils/ksystemlog/files/patch-src_modes_system_systemConfiguration.h @@ -1,11 +0,0 @@ ---- src/modes/system/systemConfiguration.h.orig 2015-11-20 20:21:44 UTC -+++ src/modes/system/systemConfiguration.h -@@ -38,7 +38,7 @@ class SystemConfiguration : public Gener - public: - SystemConfiguration() - : GenericLogModeConfiguration(QStringLiteral(SYSTEM_LOG_MODE_ID), -- QStringList() << QStringLiteral("/var/log/syslog"), -+ QStringList() << QStringLiteral("/var/log/messages"), - QList() << Globals::INFORMATION_LOG_LEVEL_ID) - { - /* diff --git a/sysutils/ksystemlog/pkg-plist b/sysutils/ksystemlog/pkg-plist index 62c8b8e5511b..d4d1e6781d15 100644 --- a/sysutils/ksystemlog/pkg-plist +++ b/sysutils/ksystemlog/pkg-plist @@ -1,53 +1,54 @@ bin/ksystemlog share/applications/org.kde.ksystemlog.desktop share/kxmlgui5/ksystemlog/ksystemlogui.rc share/locale/ar/LC_MESSAGES/ksystemlog.mo share/locale/bg/LC_MESSAGES/ksystemlog.mo share/locale/bs/LC_MESSAGES/ksystemlog.mo share/locale/ca/LC_MESSAGES/ksystemlog.mo share/locale/ca@valencia/LC_MESSAGES/ksystemlog.mo share/locale/cs/LC_MESSAGES/ksystemlog.mo share/locale/da/LC_MESSAGES/ksystemlog.mo share/locale/de/LC_MESSAGES/ksystemlog.mo share/locale/el/LC_MESSAGES/ksystemlog.mo share/locale/en_GB/LC_MESSAGES/ksystemlog.mo share/locale/eo/LC_MESSAGES/ksystemlog.mo share/locale/es/LC_MESSAGES/ksystemlog.mo share/locale/et/LC_MESSAGES/ksystemlog.mo share/locale/eu/LC_MESSAGES/ksystemlog.mo share/locale/fi/LC_MESSAGES/ksystemlog.mo share/locale/fr/LC_MESSAGES/ksystemlog.mo share/locale/ga/LC_MESSAGES/ksystemlog.mo share/locale/gl/LC_MESSAGES/ksystemlog.mo share/locale/hr/LC_MESSAGES/ksystemlog.mo share/locale/hu/LC_MESSAGES/ksystemlog.mo share/locale/ia/LC_MESSAGES/ksystemlog.mo share/locale/is/LC_MESSAGES/ksystemlog.mo share/locale/it/LC_MESSAGES/ksystemlog.mo share/locale/ja/LC_MESSAGES/ksystemlog.mo share/locale/kk/LC_MESSAGES/ksystemlog.mo share/locale/km/LC_MESSAGES/ksystemlog.mo share/locale/ko/LC_MESSAGES/ksystemlog.mo share/locale/lt/LC_MESSAGES/ksystemlog.mo share/locale/lv/LC_MESSAGES/ksystemlog.mo share/locale/mr/LC_MESSAGES/ksystemlog.mo share/locale/nb/LC_MESSAGES/ksystemlog.mo share/locale/nds/LC_MESSAGES/ksystemlog.mo share/locale/nl/LC_MESSAGES/ksystemlog.mo share/locale/nn/LC_MESSAGES/ksystemlog.mo share/locale/pa/LC_MESSAGES/ksystemlog.mo share/locale/pl/LC_MESSAGES/ksystemlog.mo share/locale/pt/LC_MESSAGES/ksystemlog.mo share/locale/pt_BR/LC_MESSAGES/ksystemlog.mo share/locale/ro/LC_MESSAGES/ksystemlog.mo share/locale/ru/LC_MESSAGES/ksystemlog.mo share/locale/sk/LC_MESSAGES/ksystemlog.mo share/locale/sl/LC_MESSAGES/ksystemlog.mo share/locale/sr/LC_MESSAGES/ksystemlog.mo share/locale/sv/LC_MESSAGES/ksystemlog.mo share/locale/tr/LC_MESSAGES/ksystemlog.mo share/locale/ug/LC_MESSAGES/ksystemlog.mo share/locale/uk/LC_MESSAGES/ksystemlog.mo share/locale/zh_CN/LC_MESSAGES/ksystemlog.mo share/locale/zh_TW/LC_MESSAGES/ksystemlog.mo share/metainfo/org.kde.ksystemlog.appdata.xml +share/qlogging-categories5/ksystemlog.categories diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 16cde9fcbb7f..53d253118d69 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706344 -SHA256 (KDE/release-service/20.12.3/signon-kwallet-extension-20.12.3.tar.xz) = d7b308fc800445cbcd4cec30a0997d8a10fcd23db69c8d49d6436aa3dedcf0a8 -SIZE (KDE/release-service/20.12.3/signon-kwallet-extension-20.12.3.tar.xz) = 10700 +TIMESTAMP = 1618579249 +SHA256 (KDE/release-service/21.04.0/signon-kwallet-extension-21.04.0.tar.xz) = b6982f9da2a449cf35e5119f5fe59a6a52f963e1cf7d8d244ba86523c9514a16 +SIZE (KDE/release-service/21.04.0/signon-kwallet-extension-21.04.0.tar.xz) = 10776 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 405d8c494e08..b8b72e2a0208 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706342 -SHA256 (KDE/release-service/20.12.3/sweeper-20.12.3.tar.xz) = 17ce3ed4565fcdd4dd7541ab021fda6a7be06e88cfacd54cb89caeae494d978a -SIZE (KDE/release-service/20.12.3/sweeper-20.12.3.tar.xz) = 372484 +TIMESTAMP = 1618579250 +SHA256 (KDE/release-service/21.04.0/sweeper-21.04.0.tar.xz) = 5b5fcc114f11a999aa3426b69d9c1c9c604da917066caddf067ba1db5ceedac7 +SIZE (KDE/release-service/21.04.0/sweeper-21.04.0.tar.xz) = 371912 diff --git a/sysutils/sweeper/pkg-plist b/sysutils/sweeper/pkg-plist index cdf1d1d968d9..a3c1131f877c 100644 --- a/sysutils/sweeper/pkg-plist +++ b/sysutils/sweeper/pkg-plist @@ -1,58 +1,59 @@ bin/sweeper share/applications/org.kde.sweeper.desktop share/dbus-1/interfaces/org.kde.sweeper.xml share/kxmlgui5/sweeper/sweeperui.rc share/locale/ar/LC_MESSAGES/sweeper.mo share/locale/bg/LC_MESSAGES/sweeper.mo share/locale/bs/LC_MESSAGES/sweeper.mo share/locale/ca/LC_MESSAGES/sweeper.mo share/locale/ca@valencia/LC_MESSAGES/sweeper.mo share/locale/cs/LC_MESSAGES/sweeper.mo share/locale/da/LC_MESSAGES/sweeper.mo share/locale/de/LC_MESSAGES/sweeper.mo share/locale/el/LC_MESSAGES/sweeper.mo share/locale/en_GB/LC_MESSAGES/sweeper.mo share/locale/eo/LC_MESSAGES/sweeper.mo share/locale/es/LC_MESSAGES/sweeper.mo share/locale/et/LC_MESSAGES/sweeper.mo share/locale/eu/LC_MESSAGES/sweeper.mo share/locale/fa/LC_MESSAGES/sweeper.mo share/locale/fi/LC_MESSAGES/sweeper.mo share/locale/fr/LC_MESSAGES/sweeper.mo share/locale/ga/LC_MESSAGES/sweeper.mo share/locale/gl/LC_MESSAGES/sweeper.mo share/locale/he/LC_MESSAGES/sweeper.mo share/locale/hi/LC_MESSAGES/sweeper.mo share/locale/hr/LC_MESSAGES/sweeper.mo share/locale/hu/LC_MESSAGES/sweeper.mo share/locale/ia/LC_MESSAGES/sweeper.mo share/locale/id/LC_MESSAGES/sweeper.mo share/locale/is/LC_MESSAGES/sweeper.mo share/locale/it/LC_MESSAGES/sweeper.mo share/locale/ja/LC_MESSAGES/sweeper.mo share/locale/kk/LC_MESSAGES/sweeper.mo share/locale/km/LC_MESSAGES/sweeper.mo share/locale/ko/LC_MESSAGES/sweeper.mo share/locale/lt/LC_MESSAGES/sweeper.mo share/locale/lv/LC_MESSAGES/sweeper.mo share/locale/mr/LC_MESSAGES/sweeper.mo share/locale/nb/LC_MESSAGES/sweeper.mo share/locale/nds/LC_MESSAGES/sweeper.mo share/locale/nl/LC_MESSAGES/sweeper.mo share/locale/nn/LC_MESSAGES/sweeper.mo share/locale/pa/LC_MESSAGES/sweeper.mo share/locale/pl/LC_MESSAGES/sweeper.mo share/locale/pt/LC_MESSAGES/sweeper.mo share/locale/pt_BR/LC_MESSAGES/sweeper.mo share/locale/ro/LC_MESSAGES/sweeper.mo share/locale/ru/LC_MESSAGES/sweeper.mo share/locale/sk/LC_MESSAGES/sweeper.mo share/locale/sl/LC_MESSAGES/sweeper.mo share/locale/sr/LC_MESSAGES/sweeper.mo share/locale/sv/LC_MESSAGES/sweeper.mo share/locale/tr/LC_MESSAGES/sweeper.mo share/locale/ug/LC_MESSAGES/sweeper.mo share/locale/uk/LC_MESSAGES/sweeper.mo share/locale/zh_CN/LC_MESSAGES/sweeper.mo share/locale/zh_TW/LC_MESSAGES/sweeper.mo share/metainfo/org.kde.sweeper.appdata.xml +share/qlogging-categories5/sweeper.categories diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 7c2ed823f9dc..86a0b7619554 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706347 -SHA256 (KDE/release-service/20.12.3/kompare-20.12.3.tar.xz) = 7b57eddfa2c8f232252d4e981359fbe7844050aa2707d95044646d917967fb7f -SIZE (KDE/release-service/20.12.3/kompare-20.12.3.tar.xz) = 929648 +TIMESTAMP = 1618579251 +SHA256 (KDE/release-service/21.04.0/kompare-21.04.0.tar.xz) = cee3e22e4072e218302d245cb6f918dc7c6f2e8b5b0ffc81d177fde71e89e19e +SIZE (KDE/release-service/21.04.0/kompare-21.04.0.tar.xz) = 927076 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index f96a0264f8c7..99d0cad38c4e 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706346 -SHA256 (KDE/release-service/20.12.3/libkomparediff2-20.12.3.tar.xz) = 8386c5108fd761aa5b4b8dbd25f36b021c0bf3a42127e41916c8cd646b99c35f -SIZE (KDE/release-service/20.12.3/libkomparediff2-20.12.3.tar.xz) = 159344 +TIMESTAMP = 1618579252 +SHA256 (KDE/release-service/21.04.0/libkomparediff2-21.04.0.tar.xz) = f06c5e2599e43e8cb65cf2896f3736bbf162364e0f1785e6cb1066e8b552778e +SIZE (KDE/release-service/21.04.0/libkomparediff2-21.04.0.tar.xz) = 159376 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 0278e16ee26d..1abd7fe6a78e 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706346 -SHA256 (KDE/release-service/20.12.3/markdownpart-20.12.3.tar.xz) = 74e598e1ae9331f4f442ca7cc3c988f0ec569a6579996bee92f72b22dd0179bc -SIZE (KDE/release-service/20.12.3/markdownpart-20.12.3.tar.xz) = 26720 +TIMESTAMP = 1618579253 +SHA256 (KDE/release-service/21.04.0/markdownpart-21.04.0.tar.xz) = 7826b5d1f6a849eaf662e99ac57792885d33f097463a500aa78e63089e90f675 +SIZE (KDE/release-service/21.04.0/markdownpart-21.04.0.tar.xz) = 27280 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 46c67e2113c1..5282857bf7dd 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706350 -SHA256 (KDE/release-service/20.12.3/kteatime-20.12.3.tar.xz) = f016698e891688f9fbec934b3b66021e49aa05b699920171c57758273b622cf9 -SIZE (KDE/release-service/20.12.3/kteatime-20.12.3.tar.xz) = 294280 +TIMESTAMP = 1618579254 +SHA256 (KDE/release-service/21.04.0/kteatime-21.04.0.tar.xz) = c5ef71f467fe09ac499d989fcb3ed0544a046ab75664901d4d85fbaedb7a67fe +SIZE (KDE/release-service/21.04.0/kteatime-21.04.0.tar.xz) = 295324 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index f7ab0b3239fe..54245dcbcf10 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706349 -SHA256 (KDE/release-service/20.12.3/ktimer-20.12.3.tar.xz) = 9cba81daa1ed2b095637c899d801929fa22f6f28958886d88209d089f3e7d7fb -SIZE (KDE/release-service/20.12.3/ktimer-20.12.3.tar.xz) = 386444 +TIMESTAMP = 1618579255 +SHA256 (KDE/release-service/21.04.0/ktimer-21.04.0.tar.xz) = f9631e66f4218133ec02b2b16552f235b16e80165bbbcb39e2499d16415bfc33 +SIZE (KDE/release-service/21.04.0/ktimer-21.04.0.tar.xz) = 385972 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 59c20af5f6fb..99c6f7bac9b3 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706351 -SHA256 (KDE/release-service/20.12.3/dolphin-20.12.3.tar.xz) = 9794b825de2440f53bd237c0bc1c974e89431b5c440ab81ccc1135e696f8a1f3 -SIZE (KDE/release-service/20.12.3/dolphin-20.12.3.tar.xz) = 5134660 +TIMESTAMP = 1618579255 +SHA256 (KDE/release-service/21.04.0/dolphin-21.04.0.tar.xz) = 4988e59d4e3edfd58c2d0857745398fc1840c87ec03ea13b0d73254874cfbdbe +SIZE (KDE/release-service/21.04.0/dolphin-21.04.0.tar.xz) = 5160064 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index c23d4191bd18..dfc2929a3945 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,134 +1,135 @@ bin/dolphin bin/servicemenuinstaller include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so -%%QT_PLUGINDIR%%/dolphinpart.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so -%%QT_PLUGINDIR%%/kcm_dolphinservices.so %%QT_PLUGINDIR%%/kcm_dolphinviewmodes.so +%%QT_PLUGINDIR%%/kf%%SHLIB_SHVER%%/parts/dolphinpart.so +lib/systemd/user/plasma-dolphin.service share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg +share/config.kcfg/dolphin_contextmenusettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/knsrcfiles/servicemenu.knsrc share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop -share/kservices5/kcmdolphinservices.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/ca@valencia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/da/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/el/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/et/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pa/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ro/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tr/LC_MESSAGES/dolphin.mo +share/locale/tr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml share/qlogging-categories5/dolphin.categories diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 73a4850016c7..682e3da012ce 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706351 -SHA256 (KDE/release-service/20.12.3/konqueror-20.12.3.tar.xz) = 472491923e677815e11e6fe9cd8c8919dc52d37b7350eaad82adfbb203bed2f8 -SIZE (KDE/release-service/20.12.3/konqueror-20.12.3.tar.xz) = 7241896 +TIMESTAMP = 1618579256 +SHA256 (KDE/release-service/21.04.0/konqueror-21.04.0.tar.xz) = e1fce3cf8f448d2657c3839f8f85c248b656e5a9307f546c746717b05b89b412 +SIZE (KDE/release-service/21.04.0/konqueror-21.04.0.tar.xz) = 7254208 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index 848c48ab62ee..d8c24ed08b18 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,1273 +1,1274 @@ bin/kcreatewebarchive bin/fsview bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqsidebartngrc etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h include/konqsidebarplugin.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonqsidebarplugin.so.5 lib/libkonquerorprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonquerorprivate.so.5 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so -%%QT_PLUGINDIR%%/fsviewpart.so %%QT_PLUGINDIR%%/kcm_bookmarks.so %%QT_PLUGINDIR%%/kcm_history.so %%QT_PLUGINDIR%%/kcm_konq.so %%QT_PLUGINDIR%%/kcm_konqhtml.so %%QT_PLUGINDIR%%/kcm_performance.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so +%%QT_PLUGINDIR%%/kf5/parts/fsviewpart.so +%%QT_PLUGINDIR%%/kf5/parts/konq_sidebar.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/kimgallery.so %%QT_PLUGINDIR%%/konq_shellcmdplugin.so -%%QT_PLUGINDIR%%/konq_sidebar.so %%QT_PLUGINDIR%%/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqsidebar_history.so %%QT_PLUGINDIR%%/konqsidebar_places.so %%QT_PLUGINDIR%%/konqsidebar_tree.so %%QT_PLUGINDIR%%/searchbarplugin.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so %%DATADIR%%/about/intro.html %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/specs.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/kpartplugins/searchbar.desktop %%DATADIR%%/kpartplugins/searchbar.rc %%DATADIR%%/opensearch/google.xml %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/akregator/pics/feed.png share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/dolphinpart/kpartplugins/dirfilterplugin.desktop share/dolphinpart/kpartplugins/dirfilterplugin.rc share/dolphinpart/kpartplugins/kimgalleryplugin.desktop share/dolphinpart/kpartplugins/kimgalleryplugin.rc share/dolphinpart/kpartplugins/kshellcmdplugin.desktop share/dolphinpart/kpartplugins/kshellcmdplugin.rc share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/22x22/actions/babelfish.png share/icons/hicolor/22x22/actions/imagegallery.png share/icons/hicolor/22x22/actions/webarchiver.png share/icons/hicolor/22x22/apps/fsview.png share/icons/hicolor/22x22/apps/konqueror.png share/icons/hicolor/22x22/apps/webengine.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/kcmcss/template.css share/kconf_update/webenginepart.upd share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/khtml/kpartplugins/akregator_konqfeedicon.desktop share/khtml/kpartplugins/akregator_konqfeedicon.rc share/khtml/kpartplugins/autorefresh.desktop share/khtml/kpartplugins/autorefresh.rc share/khtml/kpartplugins/khtmlsettingsplugin.desktop share/khtml/kpartplugins/khtmlsettingsplugin.rc share/khtml/kpartplugins/khtmltts.desktop share/khtml/kpartplugins/khtmltts.rc share/khtml/kpartplugins/plugin_babelfish.rc share/khtml/kpartplugins/plugin_translator.desktop share/khtml/kpartplugins/plugin_webarchiver.desktop share/khtml/kpartplugins/plugin_webarchiver.rc share/khtml/kpartplugins/uachangerplugin.desktop share/khtml/kpartplugins/uachangerplugin.rc share/konqsidebartng/entries/bookmarks.desktop share/konqsidebartng/entries/fonts.desktop share/konqsidebartng/entries/history.desktop share/konqsidebartng/entries/home.desktop share/konqsidebartng/entries/places.desktop share/konqsidebartng/entries/remote.desktop share/konqsidebartng/entries/root.desktop share/konqsidebartng/entries/services.desktop share/konqsidebartng/entries/settings.desktop share/konqsidebartng/plugins/konqsidebar_bookmarks.desktop share/konqsidebartng/plugins/konqsidebar_history.desktop share/konqsidebartng/plugins/konqsidebar_places.desktop share/konqsidebartng/plugins/konqsidebar_tree.desktop share/kservices5/akregator_konqplugin.desktop share/kservices5/bookmarks.desktop share/kservices5/filebehavior.desktop share/kservices5/fsview_part.desktop share/kservices5/kcmhistory.desktop share/kservices5/kcmkonqyperformance.desktop share/kservices5/kcmperformance.desktop share/kservices5/khtml_appearance.desktop share/kservices5/khtml_behavior.desktop share/kservices5/khtml_filter.desktop share/kservices5/khtml_general.desktop share/kservices5/khtml_java_js.desktop share/kservices5/konq_sidebartng.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.rc share/kwebkitpart/kpartplugins/autorefresh.desktop share/kwebkitpart/kpartplugins/autorefresh.rc share/kwebkitpart/kpartplugins/khtmlsettingsplugin.desktop share/kwebkitpart/kpartplugins/khtmlsettingsplugin.rc share/kwebkitpart/kpartplugins/khtmltts.desktop share/kwebkitpart/kpartplugins/khtmltts.rc share/kwebkitpart/kpartplugins/plugin_babelfish.rc share/kwebkitpart/kpartplugins/plugin_translator.desktop share/kwebkitpart/kpartplugins/plugin_webarchiver.desktop share/kwebkitpart/kpartplugins/plugin_webarchiver.rc share/kwebkitpart/kpartplugins/uachangerplugin.desktop share/kwebkitpart/kpartplugins/uachangerplugin.rc share/kxmlgui5/fsview/fsview_part.rc share/kxmlgui5/webenginepart/webenginepart.rc share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo +share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-categories5/akregatorplugin.categories share/qlogging-categories5/fsview.categories share/qlogging-categories5/konqueror.categories share/webenginepart/error.html share/webenginepart/kpartplugins/akregator_konqfeedicon.desktop share/webenginepart/kpartplugins/akregator_konqfeedicon.rc share/webenginepart/kpartplugins/autorefresh.desktop share/webenginepart/kpartplugins/autorefresh.rc share/webenginepart/kpartplugins/khtmlsettingsplugin.desktop share/webenginepart/kpartplugins/khtmlsettingsplugin.rc share/webenginepart/kpartplugins/khtmltts.desktop share/webenginepart/kpartplugins/khtmltts.rc share/webenginepart/kpartplugins/plugin_babelfish.rc share/webenginepart/kpartplugins/plugin_translator.desktop share/webenginepart/kpartplugins/plugin_webarchiver.desktop share/webenginepart/kpartplugins/plugin_webarchiver.rc share/webenginepart/kpartplugins/uachangerplugin.desktop share/webenginepart/kpartplugins/uachangerplugin.rc diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 86e1d84d706d..679f33d63fad 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706348 -SHA256 (KDE/release-service/20.12.3/konsole-20.12.3.tar.xz) = 24cd42fdc4ae2e17526bfab9c5ad516bb25b22d654782e98aa52f6e39bdd138d -SIZE (KDE/release-service/20.12.3/konsole-20.12.3.tar.xz) = 1250536 +TIMESTAMP = 1618579257 +SHA256 (KDE/release-service/21.04.0/konsole-21.04.0.tar.xz) = 260a1748a065c22d3bb63ffe57bd4bc79067e24a24f6332e5c91317d0e0799b6 +SIZE (KDE/release-service/21.04.0/konsole-21.04.0.tar.xz) = 1276124 diff --git a/x11/konsole/pkg-plist b/x11/konsole/pkg-plist index 5679cf30ddc9..58a07098077f 100644 --- a/x11/konsole/pkg-plist +++ b/x11/konsole/pkg-plist @@ -1,88 +1,87 @@ bin/konsole bin/konsoleprofile share/qlogging-categories5/konsole.categories lib/libkdeinit5_konsole.so lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/konsolepart.so share/applications/org.kde.konsole.desktop share/khotkeys/konsole.khotkeys share/knotifications5/konsole.notifyrc %%DATADIR%%/BlackOnLightYellow.colorscheme %%DATADIR%%/BlackOnRandomLight.colorscheme %%DATADIR%%/BlackOnWhite.colorscheme %%DATADIR%%/BlueOnBlack.colorscheme %%DATADIR%%/Breeze.colorscheme %%DATADIR%%/DarkPastels.colorscheme %%DATADIR%%/GreenOnBlack.colorscheme %%DATADIR%%/Linux.colorscheme %%DATADIR%%/RedOnBlack.colorscheme %%DATADIR%%/Solarized.colorscheme %%DATADIR%%/SolarizedLight.colorscheme %%DATADIR%%/WhiteOnBlack.colorscheme %%DATADIR%%/default.keytab %%DATADIR%%/linux.keytab %%DATADIR%%/macos.keytab %%DATADIR%%/solaris.keytab share/knsrcfiles/konsole.knsrc -share/kservices5/ServiceMenus/konsolehere.desktop share/kservices5/ServiceMenus/konsolerun.desktop share/kservices5/konsolepart.desktop share/kservicetypes5/terminalemulator.desktop share/locale/ar/LC_MESSAGES/konsole.mo share/locale/ast/LC_MESSAGES/konsole.mo share/locale/bg/LC_MESSAGES/konsole.mo share/locale/bs/LC_MESSAGES/konsole.mo share/locale/ca/LC_MESSAGES/konsole.mo share/locale/ca@valencia/LC_MESSAGES/konsole.mo share/locale/cs/LC_MESSAGES/konsole.mo share/locale/da/LC_MESSAGES/konsole.mo share/locale/de/LC_MESSAGES/konsole.mo share/locale/el/LC_MESSAGES/konsole.mo share/locale/en_GB/LC_MESSAGES/konsole.mo share/locale/eo/LC_MESSAGES/konsole.mo share/locale/es/LC_MESSAGES/konsole.mo share/locale/et/LC_MESSAGES/konsole.mo share/locale/eu/LC_MESSAGES/konsole.mo share/locale/fa/LC_MESSAGES/konsole.mo share/locale/fi/LC_MESSAGES/konsole.mo share/locale/fr/LC_MESSAGES/konsole.mo share/locale/ga/LC_MESSAGES/konsole.mo share/locale/gl/LC_MESSAGES/konsole.mo share/locale/he/LC_MESSAGES/konsole.mo share/locale/hi/LC_MESSAGES/konsole.mo share/locale/hr/LC_MESSAGES/konsole.mo share/locale/hu/LC_MESSAGES/konsole.mo share/locale/ia/LC_MESSAGES/konsole.mo share/locale/id/LC_MESSAGES/konsole.mo share/locale/is/LC_MESSAGES/konsole.mo share/locale/it/LC_MESSAGES/konsole.mo share/locale/ja/LC_MESSAGES/konsole.mo share/locale/kk/LC_MESSAGES/konsole.mo share/locale/km/LC_MESSAGES/konsole.mo share/locale/ko/LC_MESSAGES/konsole.mo share/locale/lt/LC_MESSAGES/konsole.mo share/locale/lv/LC_MESSAGES/konsole.mo share/locale/ml/LC_MESSAGES/konsole.mo share/locale/mr/LC_MESSAGES/konsole.mo share/locale/nb/LC_MESSAGES/konsole.mo share/locale/nds/LC_MESSAGES/konsole.mo share/locale/nl/LC_MESSAGES/konsole.mo share/locale/nn/LC_MESSAGES/konsole.mo share/locale/pa/LC_MESSAGES/konsole.mo share/locale/pl/LC_MESSAGES/konsole.mo share/locale/pt/LC_MESSAGES/konsole.mo share/locale/pt_BR/LC_MESSAGES/konsole.mo share/locale/ro/LC_MESSAGES/konsole.mo share/locale/ru/LC_MESSAGES/konsole.mo share/locale/sk/LC_MESSAGES/konsole.mo share/locale/sl/LC_MESSAGES/konsole.mo share/locale/sr/LC_MESSAGES/konsole.mo share/locale/sv/LC_MESSAGES/konsole.mo share/locale/tr/LC_MESSAGES/konsole.mo share/locale/ug/LC_MESSAGES/konsole.mo share/locale/uk/LC_MESSAGES/konsole.mo share/locale/wa/LC_MESSAGES/konsole.mo share/locale/zh_CN/LC_MESSAGES/konsole.mo share/locale/zh_TW/LC_MESSAGES/konsole.mo share/metainfo/org.kde.konsole.appdata.xml diff --git a/x11/yakuake/Makefile b/x11/yakuake/Makefile index 16d32f7662cc..09395ab5df7c 100644 --- a/x11/yakuake/Makefile +++ b/x11/yakuake/Makefile @@ -1,25 +1,24 @@ PORTNAME= yakuake DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= x11 kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Drop-down terminal emulator for KDE LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= konsole:x11/konsole USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= attica auth archive codecs completion config configwidgets \ coreaddons crash dbusaddons ecm globalaccel i18n iconthemes \ jobwidgets kio newstuff notifications notifyconfig parts \ service sonnet textwidgets wayland widgetsaddons windowsystem \ xmlgui USE_QT= concurrent core dbus gui network widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index a7a85ab6cecd..b19ec8b84f9a 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1614706349 -SHA256 (KDE/release-service/20.12.3/yakuake-20.12.3.tar.xz) = 7ddd1a47fdd3af67be16ae40182bea97f7c004448391ac52737d3e5f2e0b25f8 -SIZE (KDE/release-service/20.12.3/yakuake-20.12.3.tar.xz) = 382104 +TIMESTAMP = 1618579258 +SHA256 (KDE/release-service/21.04.0/yakuake-21.04.0.tar.xz) = 6be41491ebdde6750e1560d674ddc5c8222767bb17db7530d906ac7609637cca +SIZE (KDE/release-service/21.04.0/yakuake-21.04.0.tar.xz) = 391672