diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 591ed698af3b..126a477a498c 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,905 +1,905 @@ # 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.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.82.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 21.04.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.17.0 +KDE_APPLICATIONS_VERSION?= 21.04.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.17.1 KDE_APPLICATIONS_BRANCH?= stable # 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} . 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} 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}" 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-wayland-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 b7cc200b560c..b402685e7764 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741412 +SHA256 (KDE/release-service/21.04.1/kmag-21.04.1.tar.xz) = d2a8a9b2f2c53bb7c75e2090ffc2fa837b30a4a19d30adb053212236b0ea2df1 +SIZE (KDE/release-service/21.04.1/kmag-21.04.1.tar.xz) = 698412 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 9c70fb44bec5..e59924f9b272 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741413 +SHA256 (KDE/release-service/21.04.1/kmousetool-21.04.1.tar.xz) = 0a433482f682794268f5acb5b7d88f1a9f8a06894b6a5b74fcd0eef440216628 +SIZE (KDE/release-service/21.04.1/kmousetool-21.04.1.tar.xz) = 117344 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index a6163f1dac2a..fe4c4014006e 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741414 +SHA256 (KDE/release-service/21.04.1/kmouth-21.04.1.tar.xz) = ce77440116fde0a8f2d2073cd18e9ac7cb3b640c42fc3b06913b41962691025d +SIZE (KDE/release-service/21.04.1/kmouth-21.04.1.tar.xz) = 2083988 diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index f4af3c94af5a..b59de23ca8be 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= 21.4.0 +KDE_APPLICATIONS_SHLIB_VER= 21.4.1 .include diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index f07478d5fd8c..772312a4af6b 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741415 +SHA256 (KDE/release-service/21.04.1/ark-21.04.1.tar.xz) = 9113e3f1e7c0bc660d8fe56d883b02ba0997c3a7362838e365c6c71bf60662ef +SIZE (KDE/release-service/21.04.1/ark-21.04.1.tar.xz) = 2726744 diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index 19f0b65192e9..730a72c468b9 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -1,20 +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 +KDE_APPLICATIONS_SHLIB_VER= 21.4.1 .include diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 5fd47e7a11ee..23ef60f80f6a 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741415 +SHA256 (KDE/release-service/21.04.1/kosmindoormap-21.04.1.tar.xz) = df8a40af3db32549e1666c4755ceedf26f84ebcf952898098555beb0c2ded44c +SIZE (KDE/release-service/21.04.1/kosmindoormap-21.04.1.tar.xz) = 333772 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index 6c1951950bb5..221ff0f9a1c7 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,75 +1,76 @@ 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_SHLIB_VER%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 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/de/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 e18e3fdfca4e..5ad6c905d1a9 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741416 +SHA256 (KDE/release-service/21.04.1/marble-21.04.1.tar.xz) = ba51b29d3bf323f194791f00e9888cabb0f01ec2dff4e6d9d5c6943cda424ea3 +SIZE (KDE/release-service/21.04.1/marble-21.04.1.tar.xz) = 52378408 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 2a7d264c14fa..9066c55fcd42 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741417 +SHA256 (KDE/release-service/21.04.1/audiocd-kio-21.04.1.tar.xz) = 6ec47fafd43d08f376aec8f82f28eb1ecdbcc53bf8c9ecc4d3679fc6688116c9 +SIZE (KDE/release-service/21.04.1/audiocd-kio-21.04.1.tar.xz) = 504872 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index d1d7197f53c4..1f8762a84157 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741418 +SHA256 (KDE/release-service/21.04.1/elisa-21.04.1.tar.xz) = 226560f2ed42610c98535a457f8cff1dc953ec144e2de3819373a3a5de421ea2 +SIZE (KDE/release-service/21.04.1/elisa-21.04.1.tar.xz) = 1721592 diff --git a/audio/elisa/pkg-plist b/audio/elisa/pkg-plist index d8276dbe14a9..ee58c5275fda 100644 --- a/audio/elisa/pkg-plist +++ b/audio/elisa/pkg-plist @@ -1,52 +1,53 @@ bin/elisa lib/elisa/libelisaLib.so.0 lib/elisa/libelisaLib.so.0.1 %%QT_QMLDIR%%/org/kde/elisa/libelisaqmlplugin.so %%QT_QMLDIR%%/org/kde/elisa/qmldir %%QT_QMLDIR%%/org/kde/elisa/plugins.qmltypes share/applications/org.kde.elisa.desktop share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg share/locale/ar/LC_MESSAGES/elisa.mo share/locale/ast/LC_MESSAGES/elisa.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo share/locale/cs/LC_MESSAGES/elisa.mo share/locale/da/LC_MESSAGES/elisa.mo share/locale/de/LC_MESSAGES/elisa.mo share/locale/el/LC_MESSAGES/elisa.mo share/locale/en_GB/LC_MESSAGES/elisa.mo share/locale/es/LC_MESSAGES/elisa.mo share/locale/et/LC_MESSAGES/elisa.mo share/locale/eu/LC_MESSAGES/elisa.mo share/locale/fi/LC_MESSAGES/elisa.mo share/locale/fr/LC_MESSAGES/elisa.mo share/locale/gl/LC_MESSAGES/elisa.mo +share/locale/hi/LC_MESSAGES/elisa.mo share/locale/hu/LC_MESSAGES/elisa.mo share/locale/ia/LC_MESSAGES/elisa.mo share/locale/id/LC_MESSAGES/elisa.mo share/locale/it/LC_MESSAGES/elisa.mo share/locale/ja/LC_MESSAGES/elisa.mo share/locale/ko/LC_MESSAGES/elisa.mo share/locale/lt/LC_MESSAGES/elisa.mo share/locale/nl/LC_MESSAGES/elisa.mo share/locale/nn/LC_MESSAGES/elisa.mo share/locale/pa/LC_MESSAGES/elisa.mo share/locale/pl/LC_MESSAGES/elisa.mo share/locale/pt/LC_MESSAGES/elisa.mo share/locale/pt_BR/LC_MESSAGES/elisa.mo share/locale/ru/LC_MESSAGES/elisa.mo share/locale/sk/LC_MESSAGES/elisa.mo share/locale/sl/LC_MESSAGES/elisa.mo share/locale/sv/LC_MESSAGES/elisa.mo share/locale/uk/LC_MESSAGES/elisa.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories5/elisa.categories diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 44a221626773..421a62209ce1 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741419 +SHA256 (KDE/release-service/21.04.1/juk-21.04.1.tar.xz) = 85b5d53ea2d320431cbc774b5c8b5b12d5a9fe673289d1f7e5cb13cdf778bb23 +SIZE (KDE/release-service/21.04.1/juk-21.04.1.tar.xz) = 1993420 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index c6e0089317ad..e7146dadd3ad 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741419 +SHA256 (KDE/release-service/21.04.1/kmix-21.04.1.tar.xz) = 7311834664c148637b586fd2a4163141d0f786324c06869dbd3d33e0156fd205 +SIZE (KDE/release-service/21.04.1/kmix-21.04.1.tar.xz) = 1151536 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 72227095bf1c..6e922b8d3a1c 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741420 +SHA256 (KDE/release-service/21.04.1/kwave-21.04.1.tar.xz) = a4d3102f8dae51d6dcd779ff7a83a5f7727cfe409b5b4efe61cf893a63fe2b89 +SIZE (KDE/release-service/21.04.1/kwave-21.04.1.tar.xz) = 6880628 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 2b5e3a585358..657a5b5fdb19 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741421 +SHA256 (KDE/release-service/21.04.1/libkcddb-21.04.1.tar.xz) = ff7dab7b1d687755d186c706788ecb6f3a35db4dd6e4696a2074f80a22ae4061 +SIZE (KDE/release-service/21.04.1/libkcddb-21.04.1.tar.xz) = 424524 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 231a8b368a85..0bf9741bf7cd 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741422 +SHA256 (KDE/release-service/21.04.1/libkcompactdisc-21.04.1.tar.xz) = d831102f42d8aec411db8895ae1808a379a839984e98d6ead2a34f9d75cdbef5 +SIZE (KDE/release-service/21.04.1/libkcompactdisc-21.04.1.tar.xz) = 96712 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 4fc75cb04c43..f1e90b014550 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741422 +SHA256 (KDE/release-service/21.04.1/akonadi-21.04.1.tar.xz) = 23c8cfcfcc8188ac4c7e33d840e3d835dc714f6e021b070dbec332b18b93eb8f +SIZE (KDE/release-service/21.04.1/akonadi-21.04.1.tar.xz) = 1598652 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 1ceb1112cde7..6fc97995784e 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741423 +SHA256 (KDE/release-service/21.04.1/akonadi-calendar-tools-21.04.1.tar.xz) = f894c161924716d7087ff9a28f06bba34c06f91a90a0e31220f4c8c1c00545b7 +SIZE (KDE/release-service/21.04.1/akonadi-calendar-tools-21.04.1.tar.xz) = 228424 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index d07eca616245..9292eeafeef1 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741424 +SHA256 (KDE/release-service/21.04.1/akonadi-import-wizard-21.04.1.tar.xz) = 8877940861e54a6b7dce2ebc95f9d15417f37df3f0c4514545d433a96f7ff509 +SIZE (KDE/release-service/21.04.1/akonadi-import-wizard-21.04.1.tar.xz) = 511124 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index fda79ac10c73..55c6b7949c33 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741424 +SHA256 (KDE/release-service/21.04.1/akonadiconsole-21.04.1.tar.xz) = 5364e3c718ee3b6b6c2e73cc2bbbda4d71f9a49556742bc1c7673268c2fc98d5 +SIZE (KDE/release-service/21.04.1/akonadiconsole-21.04.1.tar.xz) = 201752 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index f0629475d985..680c3eafedcc 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741425 +SHA256 (KDE/release-service/21.04.1/akregator-21.04.1.tar.xz) = 8806b45954fb60e9a26e7d58c01579de8cfdc8e72db810d8d11efe2b454219f0 +SIZE (KDE/release-service/21.04.1/akregator-21.04.1.tar.xz) = 2213892 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 0d3b668822ec..cff19948de1b 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741426 +SHA256 (KDE/release-service/21.04.1/grantlee-editor-21.04.1.tar.xz) = b9ae806e8136831ada86a228c7db51266f1828af530a87c7d4ccdb3e5b1c632c +SIZE (KDE/release-service/21.04.1/grantlee-editor-21.04.1.tar.xz) = 111748 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 7e7f1486f0a0..447179674f03 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741427 +SHA256 (KDE/release-service/21.04.1/grantleetheme-21.04.1.tar.xz) = 70ce2d931c369b545e0a1f81ab04375ace9fc5c839b8443d9d5ee20c59c795e8 +SIZE (KDE/release-service/21.04.1/grantleetheme-21.04.1.tar.xz) = 60604 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 87f6089d4fdf..1de12b91971c 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741427 +SHA256 (KDE/release-service/21.04.1/itinerary-21.04.1.tar.xz) = be9b37416f019737c16b398a54fb0adbe9c6a0f602f51378b7179d698443feb4 +SIZE (KDE/release-service/21.04.1/itinerary-21.04.1.tar.xz) = 380676 diff --git a/deskutils/itinerary/pkg-plist b/deskutils/itinerary/pkg-plist index 0989967fa598..94e72cff71a1 100644 --- a/deskutils/itinerary/pkg-plist +++ b/deskutils/itinerary/pkg-plist @@ -1,35 +1,36 @@ bin/itinerary lib/libSolidExtras.so %%QT_QMLDIR%%/org/kde/solidextras/libsolidextrasqmlplugin.so %%QT_QMLDIR%%/org/kde/solidextras/qmldir share/applications/org.kde.itinerary.desktop share/icons/hicolor/48x48/apps/itinerary.svg share/knotifications5/itinerary.notifyrc share/locale/ca/LC_MESSAGES/kde-itinerary.mo share/locale/ca@valencia/LC_MESSAGES/kde-itinerary.mo share/locale/cs/LC_MESSAGES/kde-itinerary.mo share/locale/de/LC_MESSAGES/kde-itinerary.mo share/locale/en_GB/LC_MESSAGES/kde-itinerary.mo share/locale/es/LC_MESSAGES/kde-itinerary.mo share/locale/et/LC_MESSAGES/kde-itinerary.mo share/locale/eu/LC_MESSAGES/kde-itinerary.mo +share/locale/fi/LC_MESSAGES/kde-itinerary.mo share/locale/fr/LC_MESSAGES/kde-itinerary.mo share/locale/gl/LC_MESSAGES/kde-itinerary.mo share/locale/ia/LC_MESSAGES/kde-itinerary.mo share/locale/it/LC_MESSAGES/kde-itinerary.mo share/locale/ja/LC_MESSAGES/kde-itinerary.mo share/locale/ko/LC_MESSAGES/kde-itinerary.mo share/locale/lt/LC_MESSAGES/kde-itinerary.mo share/locale/nl/LC_MESSAGES/kde-itinerary.mo share/locale/pl/LC_MESSAGES/kde-itinerary.mo share/locale/pt/LC_MESSAGES/kde-itinerary.mo share/locale/pt_BR/LC_MESSAGES/kde-itinerary.mo share/locale/ru/LC_MESSAGES/kde-itinerary.mo share/locale/sk/LC_MESSAGES/kde-itinerary.mo share/locale/sl/LC_MESSAGES/kde-itinerary.mo share/locale/sv/LC_MESSAGES/kde-itinerary.mo share/locale/uk/LC_MESSAGES/kde-itinerary.mo share/locale/zh_CN/LC_MESSAGES/kde-itinerary.mo share/locale/zh_TW/LC_MESSAGES/kde-itinerary.mo share/metainfo/org.kde.itinerary.appdata.xml share/qlogging-categories5/org_kde_itinerary.categories diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index a1581ab260e4..38d868c41a26 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741428 +SHA256 (KDE/release-service/21.04.1/kaddressbook-21.04.1.tar.xz) = 1f47c6997b9b65ae2e9afb871b267daaa23f083f178497b184100d0663ede23e +SIZE (KDE/release-service/21.04.1/kaddressbook-21.04.1.tar.xz) = 3261804 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 6da61d595b20..54558e9cd157 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741429 +SHA256 (KDE/release-service/21.04.1/kalarm-21.04.1.tar.xz) = 2150172ad7a3f22c47542788b1241a28440aa188a404468196eee412d41bceea +SIZE (KDE/release-service/21.04.1/kalarm-21.04.1.tar.xz) = 2075352 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 2fa643f68f9f..23db29fcac88 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741429 +SHA256 (KDE/release-service/21.04.1/kcharselect-21.04.1.tar.xz) = cdb229c3bfe4b89e945b194ecff0bb5b7810ddfee2bb61163866cd42658522ab +SIZE (KDE/release-service/21.04.1/kcharselect-21.04.1.tar.xz) = 366628 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index ad923cea423a..29f10a2ce746 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741430 +SHA256 (KDE/release-service/21.04.1/kdeconnect-kde-21.04.1.tar.xz) = 71e5947630178478cec84201c7c124f19ae23ff349e0bc60fa2716c36224548f +SIZE (KDE/release-service/21.04.1/kdeconnect-kde-21.04.1.tar.xz) = 559844 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 0ae1124b085b..8b94ec4e6e18 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741431 +SHA256 (KDE/release-service/21.04.1/kdepim-addons-21.04.1.tar.xz) = b24de486466e89ef62cfb30b2cb8f51dcd49436606b86f85458ea680180dd778 +SIZE (KDE/release-service/21.04.1/kdepim-addons-21.04.1.tar.xz) = 2159104 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 5663a18ebcbb..84c631bb51fa 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741432 +SHA256 (KDE/release-service/21.04.1/kdepim-runtime-21.04.1.tar.xz) = 57241916a4b4291d40c3d0eb5eec69a698a69d4f7ccac362bc53859daf787468 +SIZE (KDE/release-service/21.04.1/kdepim-runtime-21.04.1.tar.xz) = 1813124 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index 7139481105bd..75cf4805c1ff 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1717 +1,1718 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kalarm_dir_resource bin/akonadi_kalarm_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/akonadi/config/kalarmconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/kcm_ldap.so %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/kf5/kio/pop3.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kalarmdirresource.desktop share/akonadi/agents/kalarmresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_google_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi.protocol share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/kservices5/kcmldap.desktop share/kservices5/pop3.protocol share/kservices5/pop3s.protocol share/kservicetypes5/davgroupwareprovider.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/kio_pop3.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/kio_pop3.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/kio_pop3.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/kio_pop3.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/kio_pop3.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/kio_pop3.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/kio_pop3.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/kio_pop3.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/kio_pop3.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo share/locale/eu/LC_MESSAGES/kio_pop3.mo share/locale/fa/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/kio_pop3.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/ga/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/he/LC_MESSAGES/kio_pop3.mo share/locale/hi/LC_MESSAGES/kio_pop3.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hr/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/kio_pop3.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/is/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/kio_pop3.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/kk/LC_MESSAGES/kio_pop3.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/kio_pop3.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/kio_pop3.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/mr/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/kio_pop3.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/kio_pop3.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/nn/LC_MESSAGES/kio_pop3.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/kio_pop3.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/kio_pop3.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ro/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/kio_pop3.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/kio_pop3.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/kio_pop3.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/kio_pop3.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/kio_pop3.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/ug/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/kio_pop3.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/kio_pop3.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index ffd72b3b4a1b..3c53bc619804 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741432 +SHA256 (KDE/release-service/21.04.1/keditbookmarks-21.04.1.tar.xz) = b979d798f13b08b1bd022334f84f0abb374a477c601466f19b400afa0c4bb0e1 +SIZE (KDE/release-service/21.04.1/keditbookmarks-21.04.1.tar.xz) = 190584 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index e7419d18acdf..1c732dee1059 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741433 +SHA256 (KDE/release-service/21.04.1/kfind-21.04.1.tar.xz) = 35338f819829ddab3e3a1225f3a2c11cb8116cf7bd367f3cb330c1347d68518a +SIZE (KDE/release-service/21.04.1/kfind-21.04.1.tar.xz) = 271576 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 432e25ee02f7..4dc05b81f40c 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741434 +SHA256 (KDE/release-service/21.04.1/kmail-account-wizard-21.04.1.tar.xz) = 1903e84dcbdd9ca513bb9e3ef3536b09132593f016e0bd98a292cee176f78418 +SIZE (KDE/release-service/21.04.1/kmail-account-wizard-21.04.1.tar.xz) = 165744 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 56cd1887dc28..bb02883a4cf3 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741434 +SHA256 (KDE/release-service/21.04.1/kmail-21.04.1.tar.xz) = 3fed12aadb9ab31bc258da7f23d5f5176c8e6e4654b0ba3c92d223b3df6620a1 +SIZE (KDE/release-service/21.04.1/kmail-21.04.1.tar.xz) = 6299108 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index e5bfc2cf7895..502c92f1b13d 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741435 +SHA256 (KDE/release-service/21.04.1/knotes-21.04.1.tar.xz) = 64940415fc5115ecd5433fd82894dfe7cf37593662521efa09891f7f2bba8e2a +SIZE (KDE/release-service/21.04.1/knotes-21.04.1.tar.xz) = 334564 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index a06f5ae08d64..a0cdb8ddef41 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741436 +SHA256 (KDE/release-service/21.04.1/kontact-21.04.1.tar.xz) = b04f42346fc75ab6147f41a19656fe91cb9f7e67a3f6a909dd3ce1cf23a71ffd +SIZE (KDE/release-service/21.04.1/kontact-21.04.1.tar.xz) = 794456 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index cde9ed3ff1eb..dd1bb314537d 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741437 +SHA256 (KDE/release-service/21.04.1/korganizer-21.04.1.tar.xz) = 4d76e63263484b1619b6fad6c8e10da92b2029a9927f2cc8684d2693a020afe7 +SIZE (KDE/release-service/21.04.1/korganizer-21.04.1.tar.xz) = 2324848 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 42e870a6b543..a3da3ffa6351 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741438 +SHA256 (KDE/release-service/21.04.1/kruler-21.04.1.tar.xz) = fa42f580bb2cf4ecce564f339cb5e4d836ba9370bd61d498924e420cecb27fdc +SIZE (KDE/release-service/21.04.1/kruler-21.04.1.tar.xz) = 272808 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 496d7d22bea4..01695d340dc8 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741438 +SHA256 (KDE/release-service/21.04.1/libkdepim-21.04.1.tar.xz) = 3b6fbcfe4ce01fa9e5f2ec07c63ca1057aaaafbbdbe3915fc4cc2ae0d358448d +SIZE (KDE/release-service/21.04.1/libkdepim-21.04.1.tar.xz) = 242268 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index d723b1cf91ec..64203d1377e9 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741439 +SHA256 (KDE/release-service/21.04.1/mbox-importer-21.04.1.tar.xz) = 75d8ff4d966501f16cb70259668c6173eef27e078536de4209a667ae118994a4 +SIZE (KDE/release-service/21.04.1/mbox-importer-21.04.1.tar.xz) = 28716 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 07bb91678237..9569848711ca 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741440 +SHA256 (KDE/release-service/21.04.1/pim-data-exporter-21.04.1.tar.xz) = 6aa67ecf296db2c6970df595418f6835557e2460b760ef590f790e42b6db3b81 +SIZE (KDE/release-service/21.04.1/pim-data-exporter-21.04.1.tar.xz) = 398780 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 726de8a0de7f..9553756bd09e 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741441 +SHA256 (KDE/release-service/21.04.1/pim-sieve-editor-21.04.1.tar.xz) = 9248fcd72291e58b0bcebf357abf707bb04e79dbabfc5d9755519fcdbfc39227 +SIZE (KDE/release-service/21.04.1/pim-sieve-editor-21.04.1.tar.xz) = 458084 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 2c1f3307ebdf..44223b521204 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741442 +SHA256 (KDE/release-service/21.04.1/cervisia-21.04.1.tar.xz) = 47f5c403e7cc91187ceb5d9e55bc4bb8074b902eecc1a8a4add20f1efeaeecfd +SIZE (KDE/release-service/21.04.1/cervisia-21.04.1.tar.xz) = 1888464 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 18eb6ea05383..a1e01c9b7a4b 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741442 +SHA256 (KDE/release-service/21.04.1/dolphin-plugins-21.04.1.tar.xz) = cfe900f5c3d34205e60175636e18c1f7982d4029d31e58ff788392235051461c +SIZE (KDE/release-service/21.04.1/dolphin-plugins-21.04.1.tar.xz) = 247356 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index f4c45e679c43..36be9c7182d3 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,203 +1,208 @@ %%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/id/LC_MESSAGES/fileviewbazaarplugin.mo +share/locale/id/LC_MESSAGES/fileviewgitplugin.mo +share/locale/id/LC_MESSAGES/fileviewhgplugin.mo +share/locale/id/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/id/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 56815dae7056..e4f5b3d82bb1 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741443 +SHA256 (KDE/release-service/21.04.1/kapptemplate-21.04.1.tar.xz) = abd549137f9fd87306668a6e90808a1e0280e01f7a4221a2fcc8809a01429857 +SIZE (KDE/release-service/21.04.1/kapptemplate-21.04.1.tar.xz) = 333568 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 4a8de2b5c9e2..c2c682626f12 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741444 +SHA256 (KDE/release-service/21.04.1/kcachegrind-21.04.1.tar.xz) = f4a76c0cfe9e4c6a596b9e12c878627cdc932c7324a16a090ace318f0473673e +SIZE (KDE/release-service/21.04.1/kcachegrind-21.04.1.tar.xz) = 828628 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 7aa98fe39d60..207ebd3641da 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741444 +SHA256 (KDE/release-service/21.04.1/kde-dev-scripts-21.04.1.tar.xz) = c916ec6436da6d1d830c248aefdf712bf16872b43fa3ea119535f62b07c859c4 +SIZE (KDE/release-service/21.04.1/kde-dev-scripts-21.04.1.tar.xz) = 366288 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 4fc8c7e8d734..0e5b564b0ac4 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741445 +SHA256 (KDE/release-service/21.04.1/kde-dev-utils-21.04.1.tar.xz) = 330122cd68e4b740ea919e3b52c0f63108c4645c7df7c21ddefee820376d8e17 +SIZE (KDE/release-service/21.04.1/kde-dev-utils-21.04.1.tar.xz) = 65720 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index fc68703306d1..0c6095d7dd8b 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741446 +SHA256 (KDE/release-service/21.04.1/kdesdk-thumbnailers-21.04.1.tar.xz) = d4f6ebdf4d5dc23d79945df33c54c2cd9dc417adf0e855426d5a5b84c013400c +SIZE (KDE/release-service/21.04.1/kdesdk-thumbnailers-21.04.1.tar.xz) = 17864 diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 907276ae0576..9e7e00545a5e 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -1,63 +1,62 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to increase the functionality of KIO LIB_DEPENDS= libtag.so:audio/taglib \ libImath.so:math/Imath \ libkdsoap.so:www/kdsoap USES= cmake compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz xorg USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools ecm \ emoticons guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets js kdelibs4support khtml kio notifications parts \ pty service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ sql svg testlib webchannel widgets xml \ buildtools_build qmake_build USE_XORG= xcursor SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidget OPTIONS_DEFINE= SAMBA MTP EXR EXIV SLP SSH TAGLIB DOCS OPTIONS_DEFAULT=SAMBA MTP EXR EXIV SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Exiv2 EXIV_LIB_DEPENDS= libexiv2.so:graphics/exiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index b9288350ac48..790405cd7187 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741447 +SHA256 (KDE/release-service/21.04.1/kio-extras-21.04.1.tar.xz) = 4ebfca782ed5410903f6ec5bebb5d144447c4b3d50cb4e5f270354b136fe5c4c +SIZE (KDE/release-service/21.04.1/kio-extras-21.04.1.tar.xz) = 646820 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index 4f7ebd565ad7..b75c060aee36 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,822 +1,823 @@ 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_network.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 415d01c9c02e..e81c1851a855 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741447 +SHA256 (KDE/release-service/21.04.1/kirigami-gallery-21.04.1.tar.xz) = fb4e447654637c5798b43ed2df51786e9e2f0b11023d8d79f2c33d80fb637e2f +SIZE (KDE/release-service/21.04.1/kirigami-gallery-21.04.1.tar.xz) = 329280 diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index 35681b1e8eee..50d5e1e19a24 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -1,20 +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 +KDE_APPLICATIONS_SHLIB_VER= 21.4.1 .include diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 8b30c1048c65..d1841074950d 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741448 +SHA256 (KDE/release-service/21.04.1/kpublictransport-21.04.1.tar.xz) = 7e8f98816e05ec0ebdf999927ccb8c7d0ee36ffa619351d2201c7a55a0a8298f +SIZE (KDE/release-service/21.04.1/kpublictransport-21.04.1.tar.xz) = 392072 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 639a661ee0e6..5f620ecafc8f 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741449 +SHA256 (KDE/release-service/21.04.1/lokalize-21.04.1.tar.xz) = 5c870c9d311fb9058428061f2b4cf399d4dd74d164023f96a3b98c7833c00df7 +SIZE (KDE/release-service/21.04.1/lokalize-21.04.1.tar.xz) = 1993324 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 1c84b0ae313f..815bf570b9fe 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741449 +SHA256 (KDE/release-service/21.04.1/poxml-21.04.1.tar.xz) = 048ce5facc5f5307b50dffdf161787ccf80eae70f2eb722d6ffea727cdfb2296 +SIZE (KDE/release-service/21.04.1/poxml-21.04.1.tar.xz) = 43548 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 374d2713c0e1..821d0a518703 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741450 +SHA256 (KDE/release-service/21.04.1/umbrello-21.04.1.tar.xz) = 6ebb4e8101fd796bbb5e443a1e1b823a4971dcb179ba795b997196cafad2e385 +SIZE (KDE/release-service/21.04.1/umbrello-21.04.1.tar.xz) = 5572500 diff --git a/editors/kate/Makefile b/editors/kate/Makefile index 5b2840d5833b..e5f7ee38fb83 100644 --- a/editors/kate/Makefile +++ b/editors/kate/Makefile @@ -1,26 +1,25 @@ PORTNAME= kate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= editors kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Basic editor framework for the KDE system BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ pkgconfig kde:5 qt:5 tar:xz USE_KDE= activities attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm \ guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets kio newstuff package parts plasma-framework \ service solid sonnet texteditor textwidgets threadweaver \ wallet widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network script sql widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include diff --git a/editors/kate/distinfo b/editors/kate/distinfo index e95d09c1dcd6..5c11fcb83e62 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741451 +SHA256 (KDE/release-service/21.04.1/kate-21.04.1.tar.xz) = 6264b6c9775caf2e9f7dabdbd7e60d641629e0e8c0ef5abb04dd8bb31ef5a255 +SIZE (KDE/release-service/21.04.1/kate-21.04.1.tar.xz) = 7184404 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 04beb47acce5..a9ea096dd846 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1307 +1,1308 @@ 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/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/kategitblameplugin.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/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 ef15901b2d8f..ed8afaf31f3b 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741451 +SHA256 (KDE/release-service/21.04.1/blinken-21.04.1.tar.xz) = 58e748ae7cacfa29fa9d11586c210713dee29c403fa7825592c898f0c2e03e6a +SIZE (KDE/release-service/21.04.1/blinken-21.04.1.tar.xz) = 2709556 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index b407edaebdad..bec88911765d 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741452 +SHA256 (KDE/release-service/21.04.1/bomber-21.04.1.tar.xz) = 9d0e9d478287c667f5e1bf721bf6c6198af11d8ed39a01e1b5560d4d4fbcefe9 +SIZE (KDE/release-service/21.04.1/bomber-21.04.1.tar.xz) = 828440 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index c5ff92e82c5f..f807f03f01f7 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741453 +SHA256 (KDE/release-service/21.04.1/bovo-21.04.1.tar.xz) = 602422628f3237bf41bd40d2c14c316bf1185f3396d668a521c39b6909b459d9 +SIZE (KDE/release-service/21.04.1/bovo-21.04.1.tar.xz) = 206432 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 3330d999ce43..d081fbcf6fd0 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741454 +SHA256 (KDE/release-service/21.04.1/granatier-21.04.1.tar.xz) = a61f4198b8a14b2362bb425a70da662226cba5bf1f5c0812f97f5a47633d702a +SIZE (KDE/release-service/21.04.1/granatier-21.04.1.tar.xz) = 1952912 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index bc55848128d9..dfee8e5641a1 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741454 +SHA256 (KDE/release-service/21.04.1/kanagram-21.04.1.tar.xz) = cb7e78020955f8e5f385ca19e3029ae557821030f3fb9936bc24706a1d340dc5 +SIZE (KDE/release-service/21.04.1/kanagram-21.04.1.tar.xz) = 8033672 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 528f10cf1164..b91c65709fb2 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741455 +SHA256 (KDE/release-service/21.04.1/kapman-21.04.1.tar.xz) = 0e52df8973494f595ef8de56b126ba8e00bf3f0f601ef8343c3587019df901b0 +SIZE (KDE/release-service/21.04.1/kapman-21.04.1.tar.xz) = 2531256 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 28fd9940b818..52b3e5c16123 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741456 +SHA256 (KDE/release-service/21.04.1/katomic-21.04.1.tar.xz) = 50ab5d8b2081070be438b871e52db76ce2c2c20ec6fc0d9e3ffd2a683fab8cce +SIZE (KDE/release-service/21.04.1/katomic-21.04.1.tar.xz) = 1428560 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index c85849b25fc0..b27148652144 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741456 +SHA256 (KDE/release-service/21.04.1/kblackbox-21.04.1.tar.xz) = 9e1c4ccd70b49ed30b2a6b1d39badc9cd83c1b4b2a9b0fc2c555c249c7f7b99f +SIZE (KDE/release-service/21.04.1/kblackbox-21.04.1.tar.xz) = 449784 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 476b0309550c..9397fdb5a9ce 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741457 +SHA256 (KDE/release-service/21.04.1/kblocks-21.04.1.tar.xz) = cc3d4dc373c2a3cb04a87122f83ccb919b5c1d4418ec529c280aef532e94b6e0 +SIZE (KDE/release-service/21.04.1/kblocks-21.04.1.tar.xz) = 1910692 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 87b245954ac3..fc17ac93d4bb 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741458 +SHA256 (KDE/release-service/21.04.1/kbounce-21.04.1.tar.xz) = e225460d4459903b7d94520607bfdd65438f535c5df73d53dd44c65e8bdf5312 +SIZE (KDE/release-service/21.04.1/kbounce-21.04.1.tar.xz) = 3442148 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 0e3212415ced..52c9fa0b6efe 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741459 +SHA256 (KDE/release-service/21.04.1/kbreakout-21.04.1.tar.xz) = 37b9fc126bb800979a724446f9fb5ac04bd408f7d324ecd82e15d651f709fa11 +SIZE (KDE/release-service/21.04.1/kbreakout-21.04.1.tar.xz) = 2281600 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index c8839a05c6fa..898acc5a63e6 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741459 +SHA256 (KDE/release-service/21.04.1/kdiamond-21.04.1.tar.xz) = 92016161f9a2ceefcf704d711f7762d415722eb132282e936b7ceea2fe268a54 +SIZE (KDE/release-service/21.04.1/kdiamond-21.04.1.tar.xz) = 4697492 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 7c5f7e12f792..3aef2a65b97b 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741460 +SHA256 (KDE/release-service/21.04.1/kfourinline-21.04.1.tar.xz) = 11fc1264e7b13965829a543e33dc9aa1e01c1a6e477a5a1c1d9163a47ed6785b +SIZE (KDE/release-service/21.04.1/kfourinline-21.04.1.tar.xz) = 644960 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 043a8e5d00c8..a40530b8351f 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741461 +SHA256 (KDE/release-service/21.04.1/kgoldrunner-21.04.1.tar.xz) = d7a85d11f93cfacfea7325f11fe0af87447a24a4d4e403a1ece0b12776079451 +SIZE (KDE/release-service/21.04.1/kgoldrunner-21.04.1.tar.xz) = 4451024 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 784ae1ddb5f2..ae3e6492d1ea 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741461 +SHA256 (KDE/release-service/21.04.1/khangman-21.04.1.tar.xz) = 2a17eb7b7bbae284061d6c807dc5353aa3cd2c365e460423f14b1214374ab017 +SIZE (KDE/release-service/21.04.1/khangman-21.04.1.tar.xz) = 7417180 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 2c0ea4cf3985..58d844fccdf0 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741462 +SHA256 (KDE/release-service/21.04.1/kigo-21.04.1.tar.xz) = bc630772838ad53558c5e313400cea042be9a95c3b6ad3c234e7399aaad97c17 +SIZE (KDE/release-service/21.04.1/kigo-21.04.1.tar.xz) = 5245240 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index df6c5be119d8..458ee4ddfaec 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741463 +SHA256 (KDE/release-service/21.04.1/killbots-21.04.1.tar.xz) = bcea932167968176b2e398ac1088e061d9b1119673f3daf20eb6997322ff6062 +SIZE (KDE/release-service/21.04.1/killbots-21.04.1.tar.xz) = 1186312 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index e6c9b5be29b6..6a6d10a7d088 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741464 +SHA256 (KDE/release-service/21.04.1/kiriki-21.04.1.tar.xz) = bab6903533fe6e61b0e1be0696b23dfc2fdded05f79870bed0e7130628553f54 +SIZE (KDE/release-service/21.04.1/kiriki-21.04.1.tar.xz) = 379260 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 6967a68513df..42388755a164 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741465 +SHA256 (KDE/release-service/21.04.1/kjumpingcube-21.04.1.tar.xz) = d674b9403b72b1fcdc27ba7ea522f0180978d7ee57ae711c657b0eb40409c4f6 +SIZE (KDE/release-service/21.04.1/kjumpingcube-21.04.1.tar.xz) = 290972 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 52f623faf91e..e54618aeba05 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741465 +SHA256 (KDE/release-service/21.04.1/klickety-21.04.1.tar.xz) = 3885d097df21d60d5ff929974203a7a84fdc12b66e6f8131bc08ffee1479fcc0 +SIZE (KDE/release-service/21.04.1/klickety-21.04.1.tar.xz) = 1394160 diff --git a/games/klines/distinfo b/games/klines/distinfo index 8be0be9aecbb..09987ba22425 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741466 +SHA256 (KDE/release-service/21.04.1/klines-21.04.1.tar.xz) = 980383269c3fe9b12b9c7b4ac7d69fdb8c159dad297fe7ee19b8dca41eb98122 +SIZE (KDE/release-service/21.04.1/klines-21.04.1.tar.xz) = 1789708 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index bf17f4b5dd26..ceb77e9aeeb8 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741467 +SHA256 (KDE/release-service/21.04.1/kmahjongg-21.04.1.tar.xz) = 256f5eb32f95307b7a33dc36531b98097a8a2ee96ccc545a3dbeaaa399e7b524 +SIZE (KDE/release-service/21.04.1/kmahjongg-21.04.1.tar.xz) = 3433836 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 95e83af9a67e..ab85efa29bec 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741468 +SHA256 (KDE/release-service/21.04.1/kmines-21.04.1.tar.xz) = d04c643c69d83b3c36256a5562ed3e6c55435fe1f4a513cefc77882be6dfdc37 +SIZE (KDE/release-service/21.04.1/kmines-21.04.1.tar.xz) = 959172 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index e5ac786b6465..e130da15b55f 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741468 +SHA256 (KDE/release-service/21.04.1/knavalbattle-21.04.1.tar.xz) = 3e1fa36e74268493dedec7bc29138d569c54d239431c1597ed4cf2ff163a2876 +SIZE (KDE/release-service/21.04.1/knavalbattle-21.04.1.tar.xz) = 1366680 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index e54f951ff428..bb290ee13a04 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741469 +SHA256 (KDE/release-service/21.04.1/knetwalk-21.04.1.tar.xz) = 86b303796bb43c72f99f1fff587ac6b3e1bc50e795f1026a8a8abd0ba16a300a +SIZE (KDE/release-service/21.04.1/knetwalk-21.04.1.tar.xz) = 1269576 diff --git a/games/knights/distinfo b/games/knights/distinfo index 88765b67e76f..0c514f2dcaaf 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741470 +SHA256 (KDE/release-service/21.04.1/knights-21.04.1.tar.xz) = 6da7ea050062bab63a6fbbbc32037f03bb39c30bd40bc0ac651f83fad11553c0 +SIZE (KDE/release-service/21.04.1/knights-21.04.1.tar.xz) = 3536332 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index bb98e9b9a0a8..eb3e78d00e02 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741470 +SHA256 (KDE/release-service/21.04.1/kolf-21.04.1.tar.xz) = a99ab8c024fb501d6dfe4c1b40058f60a1b0d5ab2dc1f1ef2ef9b9284b27c669 +SIZE (KDE/release-service/21.04.1/kolf-21.04.1.tar.xz) = 1032628 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 5f1e3623d21a..7c2496c0afa6 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741471 +SHA256 (KDE/release-service/21.04.1/kollision-21.04.1.tar.xz) = deb1e753af5cab581347cdd6664110b2415695de1eac24b35e55305582c630f8 +SIZE (KDE/release-service/21.04.1/kollision-21.04.1.tar.xz) = 290404 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index d2779814e680..de5073e64e5e 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741472 +SHA256 (KDE/release-service/21.04.1/konquest-21.04.1.tar.xz) = cfacc293ef394aa0c37eb8fc610482b3b93491069e243803f154e3201a6b2e04 +SIZE (KDE/release-service/21.04.1/konquest-21.04.1.tar.xz) = 665712 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 402e46286a69..5dcd53b7dca9 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741473 +SHA256 (KDE/release-service/21.04.1/kpat-21.04.1.tar.xz) = c00fed775072e33cff67ed996f66165b6f8aacc62ab82890f2e7b4a52366d282 +SIZE (KDE/release-service/21.04.1/kpat-21.04.1.tar.xz) = 3649388 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index e53e557cd118..8aa1b5dab743 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741473 +SHA256 (KDE/release-service/21.04.1/kreversi-21.04.1.tar.xz) = d896c70d0b210c8e1b451f47082a5a227484d39fb042634c4f5921a4d8ca2408 +SIZE (KDE/release-service/21.04.1/kreversi-21.04.1.tar.xz) = 955416 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 15f0bfb2931b..3a4b27fab0b5 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741474 +SHA256 (KDE/release-service/21.04.1/kshisen-21.04.1.tar.xz) = b470869db95c57cd3165bb0bb43000a1cbfb116e049d2f43f1977d6830c48f8c +SIZE (KDE/release-service/21.04.1/kshisen-21.04.1.tar.xz) = 827876 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 5c5d347e995f..3dd5ddf1f440 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741475 +SHA256 (KDE/release-service/21.04.1/ksirk-21.04.1.tar.xz) = 61a868e829726bc820a1e51e4c85a120889c6aab132e7778952519eaf9f2dff1 +SIZE (KDE/release-service/21.04.1/ksirk-21.04.1.tar.xz) = 6996348 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 446aa3b41c10..f2f9db650d81 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741476 +SHA256 (KDE/release-service/21.04.1/ksnakeduel-21.04.1.tar.xz) = d147c747bcc483fbc97248e54e33d8a35f170e8d01c4610ccf376261db53c0d3 +SIZE (KDE/release-service/21.04.1/ksnakeduel-21.04.1.tar.xz) = 543672 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 446dac08ed68..5721be906a81 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741476 +SHA256 (KDE/release-service/21.04.1/kspaceduel-21.04.1.tar.xz) = 03113fa49b7d0528ea4b646e26bf94ceef8724801ae03feaa64ec76fffb833d5 +SIZE (KDE/release-service/21.04.1/kspaceduel-21.04.1.tar.xz) = 617720 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 182c404003cf..6883e67c2dd8 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741477 +SHA256 (KDE/release-service/21.04.1/ksquares-21.04.1.tar.xz) = 5cd36b6256db209184a20d3becd1829025b295b5099eb16abe0bd65e7045bd4f +SIZE (KDE/release-service/21.04.1/ksquares-21.04.1.tar.xz) = 266284 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 4fe79fca119d..d9654ef5ccd9 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741478 +SHA256 (KDE/release-service/21.04.1/ksudoku-21.04.1.tar.xz) = 149ab89406b94eafc2557475ec98bc74337fb7e98129d3c9edece8cac954915a +SIZE (KDE/release-service/21.04.1/ksudoku-21.04.1.tar.xz) = 1678580 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 474325be2c65..8cfa9bd73a01 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741479 +SHA256 (KDE/release-service/21.04.1/ktuberling-21.04.1.tar.xz) = 2afce9b62f13e650f4acc6bdbfeb394751ddcc023b21863cadd92a493c995b23 +SIZE (KDE/release-service/21.04.1/ktuberling-21.04.1.tar.xz) = 70747556 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 9a336218fbdd..b0fd35ef27f6 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741480 +SHA256 (KDE/release-service/21.04.1/kubrick-21.04.1.tar.xz) = c402c46b00668e39a0a36d4ffd124b430c2997f6bdca11dcc5fb0b7e3b71e7a3 +SIZE (KDE/release-service/21.04.1/kubrick-21.04.1.tar.xz) = 341152 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index d086cf0f749a..7e4713aa07e6 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741481 +SHA256 (KDE/release-service/21.04.1/libkdegames-21.04.1.tar.xz) = a4efc0caf9ad877b3c01c83c69e9b3240aeda6ab14332db06e2da9f6660b4c93 +SIZE (KDE/release-service/21.04.1/libkdegames-21.04.1.tar.xz) = 6389100 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 66f40c9aac1c..8b9a771d635f 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741481 +SHA256 (KDE/release-service/21.04.1/libkmahjongg-21.04.1.tar.xz) = 5aedad50b112ddec1c98fc3b3a66d85ed40d346ca531c932581e927d133e56be +SIZE (KDE/release-service/21.04.1/libkmahjongg-21.04.1.tar.xz) = 1681088 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index c12addec566d..5a5f7b13af70 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741482 +SHA256 (KDE/release-service/21.04.1/lskat-21.04.1.tar.xz) = 0e587d23bb66f4caff5af6b55bd1f20f53bdbc9de68381aa7d9bb55975fa410b +SIZE (KDE/release-service/21.04.1/lskat-21.04.1.tar.xz) = 1222556 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index ed558ec7ce2f..1a7e43ab8e34 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741483 +SHA256 (KDE/release-service/21.04.1/palapeli-21.04.1.tar.xz) = 0165eaa8a47b25f99e7c2c8cee68d761fe0e687a255f708eb283aa27d2552820 +SIZE (KDE/release-service/21.04.1/palapeli-21.04.1.tar.xz) = 2076368 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 7ec86f59cd9d..6a93abc48ca4 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741484 +SHA256 (KDE/release-service/21.04.1/picmi-21.04.1.tar.xz) = 1ba9d037009f217c8ec267aeb6bd0385829b45351107858a876a7c3be1c1d14f +SIZE (KDE/release-service/21.04.1/picmi-21.04.1.tar.xz) = 1369176 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index ad8847e5b55e..84697f1ea6b3 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741484 +SHA256 (KDE/release-service/21.04.1/gwenview-21.04.1.tar.xz) = 675c7109c95e5a592d68e7c132afff5e48868895c54428a65c66ebeae56633c5 +SIZE (KDE/release-service/21.04.1/gwenview-21.04.1.tar.xz) = 6757668 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 1e70970d612b..d05ba631a499 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741485 +SHA256 (KDE/release-service/21.04.1/kamera-21.04.1.tar.xz) = 1c0c8aa58e933b82d358113de758f3b543f30fbdb2b06c0683937e770e8406a3 +SIZE (KDE/release-service/21.04.1/kamera-21.04.1.tar.xz) = 109776 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 54b09522ed6a..c9ee235d6457 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741486 +SHA256 (KDE/release-service/21.04.1/kcolorchooser-21.04.1.tar.xz) = 13ac1f2dee86f4b87c538656e186177cd42b95251404014595f364484e232e9f +SIZE (KDE/release-service/21.04.1/kcolorchooser-21.04.1.tar.xz) = 27720 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 7d24c3ca2623..5d27aca7569a 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741486 +SHA256 (KDE/release-service/21.04.1/kdegraphics-mobipocket-21.04.1.tar.xz) = f5746fcc53ce307a6b7c86b63116268f68b7045035b6df5638ae7083ba8bddcd +SIZE (KDE/release-service/21.04.1/kdegraphics-mobipocket-21.04.1.tar.xz) = 17096 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 40a5fb7aebb8..95f21eee8fef 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741487 +SHA256 (KDE/release-service/21.04.1/svgpart-21.04.1.tar.xz) = eb7d7041d778c880851b4cedb8dde2b336c73acaa353ace9c71db6e3749f7e18 +SIZE (KDE/release-service/21.04.1/svgpart-21.04.1.tar.xz) = 23968 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 8a01020c7b12..5eaf482c70ab 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741488 +SHA256 (KDE/release-service/21.04.1/kdegraphics-thumbnailers-21.04.1.tar.xz) = 59f0486d7d63f4f77ffe1887942576164683c39cd5b0665e18618980aaa7587e +SIZE (KDE/release-service/21.04.1/kdegraphics-thumbnailers-21.04.1.tar.xz) = 46960 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 16055c4aaec1..73826aaae9a1 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741489 +SHA256 (KDE/release-service/21.04.1/kimagemapeditor-21.04.1.tar.xz) = bd27c1695cb70cd8bd60f4012d1e473228130c9807caefea59837442f012d151 +SIZE (KDE/release-service/21.04.1/kimagemapeditor-21.04.1.tar.xz) = 1079532 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index f2eaafb29466..8d1909542edf 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741490 +SHA256 (KDE/release-service/21.04.1/kipi-plugins-21.04.1.tar.xz) = af4c744ab4e13922827745212ad34c1ea113c33a9c68911452dec1593a4ce74e +SIZE (KDE/release-service/21.04.1/kipi-plugins-21.04.1.tar.xz) = 1650832 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 46d38c042bf3..1bcaf4de5260 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741490 +SHA256 (KDE/release-service/21.04.1/kolourpaint-21.04.1.tar.xz) = aa212fc8af0c74110651579b5cad87046aadcdf99450adac596f1beb201ed074 +SIZE (KDE/release-service/21.04.1/kolourpaint-21.04.1.tar.xz) = 5691064 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 2a9977d6d656..81eb1864dbee 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741491 +SHA256 (KDE/release-service/21.04.1/kontrast-21.04.1.tar.xz) = 12c70cbf2262fdae29f4d3be1b7a4417af3f9787fd6ad5165499c45b06f10f50 +SIZE (KDE/release-service/21.04.1/kontrast-21.04.1.tar.xz) = 123064 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 03cc188e0cae..11aac2583f07 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741492 +SHA256 (KDE/release-service/21.04.1/kqtquickcharts-21.04.1.tar.xz) = 452b365626f47fe9fb51d1a202ed341493a42e375d64d09d9c13007a12ac0fff +SIZE (KDE/release-service/21.04.1/kqtquickcharts-21.04.1.tar.xz) = 29932 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index ddadd3bb60e5..d3661971fdfe 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741493 +SHA256 (KDE/release-service/21.04.1/libkdcraw-21.04.1.tar.xz) = 5dd3c38224f9b0ca8121cb81a8575dc2cf70bc1a80066925b0a8e9b138e4ab09 +SIZE (KDE/release-service/21.04.1/libkdcraw-21.04.1.tar.xz) = 37196 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index af7ea3383049..45c45490de62 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741493 +SHA256 (KDE/release-service/21.04.1/libkexiv2-21.04.1.tar.xz) = b3f1f4e2f6b30008e008dbd000d428654f46c74b146af622cf60c512bbfde092 +SIZE (KDE/release-service/21.04.1/libkexiv2-21.04.1.tar.xz) = 60272 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 4b852ebd7115..bdd94159de3d 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741494 +SHA256 (KDE/release-service/21.04.1/libkipi-21.04.1.tar.xz) = e736c0e665798a5948029a73434a834f70fe4073ac1cee8441127dead96af9cf +SIZE (KDE/release-service/21.04.1/libkipi-21.04.1.tar.xz) = 103436 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 7ca841bcf634..824abfc7b6d0 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741495 +SHA256 (KDE/release-service/21.04.1/libksane-21.04.1.tar.xz) = 33027c28e0a7f66b444d9e5d75aef1c268239d64384ce847dc69b86b9bc50af6 +SIZE (KDE/release-service/21.04.1/libksane-21.04.1.tar.xz) = 143740 diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 09df63debf25..abbf580d6103 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -1,44 +1,43 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qca qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'Share' menu PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KDEExperimentalPurpose .include diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 581a840d2bd0..8e994dc7f6f0 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741496 +SHA256 (KDE/release-service/21.04.1/okular-21.04.1.tar.xz) = 95804e90130a4d5fdeb5f88bb3bfc29b4dbe1592c5a343786779ce9b4fa11e3d +SIZE (KDE/release-service/21.04.1/okular-21.04.1.tar.xz) = 7999664 diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index 5fa9db8075d5..92890a1ce365 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -1,26 +1,25 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons doctools ecm globalaccel i18n jobwidgets kdeclarative kio \ libkipi newstuff notifications package service wayland \ widgetsaddons windowsystem xmlgui USE_QT= core concurrent dbus declarative gui network printsupport \ quickcontrols widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS .include diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 63f909d3bc65..a8cb3a562a0d 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741497 +SHA256 (KDE/release-service/21.04.1/spectacle-21.04.1.tar.xz) = 71ed0c2561b2a9e886c3f607c11e46e5b26c2b7f44871d801d08405deb463b1c +SIZE (KDE/release-service/21.04.1/spectacle-21.04.1.tar.xz) = 1168624 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 0a45fef988b5..4c189416de06 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741497 +SHA256 (KDE/release-service/21.04.1/konversation-21.04.1.tar.xz) = 61f4a59ea00d90755fc3e00a504aeff275301db7584c34d82c158901347336dd +SIZE (KDE/release-service/21.04.1/konversation-21.04.1.tar.xz) = 4230632 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index aea477b04a41..29ed94553d69 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741498 +SHA256 (KDE/release-service/21.04.1/kiten-21.04.1.tar.xz) = 37bc1ee43c58ef3e0c7a3d707099e9e92a9d5d239e788d921f14442d70f7d9ef +SIZE (KDE/release-service/21.04.1/kiten-21.04.1.tar.xz) = 11301964 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 96fb3e88069e..d3610d63ecdd 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741499 +SHA256 (KDE/release-service/21.04.1/kross-interpreters-21.04.1.tar.xz) = f5e2fb7b846dd375a8fad46137c4531ffc75066d5dd7e82da95d501c62ed77e1 +SIZE (KDE/release-service/21.04.1/kross-interpreters-21.04.1.tar.xz) = 151612 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 1047c733e56a..270a37790ee6 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741499 +SHA256 (KDE/release-service/21.04.1/kturtle-21.04.1.tar.xz) = 35fbbb78e626f678658eaccd6a4151cc3e9d17a8800395454ccb2cbe1a265912 +SIZE (KDE/release-service/21.04.1/kturtle-21.04.1.tar.xz) = 1838472 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 12d7710a2d47..6b89dad1b1e9 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741500 +SHA256 (KDE/release-service/21.04.1/analitza-21.04.1.tar.xz) = 0466fa146b427533c5c8177faf48c2a4c003b1885a02868d339191d3559b4107 +SIZE (KDE/release-service/21.04.1/analitza-21.04.1.tar.xz) = 342060 diff --git a/math/cantor/Makefile b/math/cantor/Makefile index b0c69f2aaba9..2da0ee477679 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -1,63 +1,62 @@ # TODO: ensure only ${PYTON_CMD} is pixked again PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding (should probably be an option PYTHON2, PYTHON3) CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake .include diff --git a/math/cantor/distinfo b/math/cantor/distinfo index ec7d1d98ac2e..5cf76f8c803f 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741501 +SHA256 (KDE/release-service/21.04.1/cantor-21.04.1.tar.xz) = ea5f15dd29253421e161ce9b4942c40c8704b652d606d53b655a340bb843cf8c +SIZE (KDE/release-service/21.04.1/cantor-21.04.1.tar.xz) = 9134532 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 411c070b3760..13d6f0393d9e 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741502 +SHA256 (KDE/release-service/21.04.1/kalgebra-21.04.1.tar.xz) = af43c9afcfab9dfbf155cdeedcb97797c44146b9bfb9c53bc98274ede4f3ede2 +SIZE (KDE/release-service/21.04.1/kalgebra-21.04.1.tar.xz) = 1022000 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 7466b17d78bd..7a519c45645c 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741502 +SHA256 (KDE/release-service/21.04.1/kbruch-21.04.1.tar.xz) = 2496f6d59ba7baf0f0c2392ede9b3e00ec914d087aea667ad5ef8fc4e659a763 +SIZE (KDE/release-service/21.04.1/kbruch-21.04.1.tar.xz) = 5615848 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 6c86123d2de2..8e7244e5a949 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741503 +SHA256 (KDE/release-service/21.04.1/kcalc-21.04.1.tar.xz) = 489a9efc3b402b4c18e1d72412c485180e72675c9658878b2a54bc70218fa2b2 +SIZE (KDE/release-service/21.04.1/kcalc-21.04.1.tar.xz) = 360472 diff --git a/math/kig/distinfo b/math/kig/distinfo index 55159b655c71..56d82fe9fb3b 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741504 +SHA256 (KDE/release-service/21.04.1/kig-21.04.1.tar.xz) = 11389aa2021871ac954074538f63819ce67aef8b898a431f591d9672e60c5578 +SIZE (KDE/release-service/21.04.1/kig-21.04.1.tar.xz) = 3127664 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 1bae8f8eb238..92664cc433e6 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741505 +SHA256 (KDE/release-service/21.04.1/kmplot-21.04.1.tar.xz) = 1a31af7ba8f5708f821cab0fe5081de38e4c5c36fd9f4a8114c01a17ff31e2ee +SIZE (KDE/release-service/21.04.1/kmplot-21.04.1.tar.xz) = 3010924 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 7a784ba88c84..41fa3feac13b 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741505 +SHA256 (KDE/release-service/21.04.1/rocs-21.04.1.tar.xz) = 25ef0a811a366c081ad5fe2d9cc1944cfadaf6b353f1acd75ce837fc00835375 +SIZE (KDE/release-service/21.04.1/rocs-21.04.1.tar.xz) = 1542104 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 5455396cac91..80e98e2b7ed4 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741506 +SHA256 (KDE/release-service/21.04.1/artikulate-21.04.1.tar.xz) = 6426d0e1bff304832789a0e72337c773996f39d4c9f4736192b22e4244e0155f +SIZE (KDE/release-service/21.04.1/artikulate-21.04.1.tar.xz) = 1086540 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index aeb058c21cbb..95cf1fe515c6 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741507 +SHA256 (KDE/release-service/21.04.1/kdeedu-data-21.04.1.tar.xz) = 9d509807c78768da67750c4b137a2c7929dd9942e264b9d15ac18d75bdc14b64 +SIZE (KDE/release-service/21.04.1/kdeedu-data-21.04.1.tar.xz) = 333844 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index e0c31959d403..b3c95a9497c8 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741507 +SHA256 (KDE/release-service/21.04.1/kgeography-21.04.1.tar.xz) = 6abddaaa76520d480ca6c18fc301a4781b3cd6fd2497c1d14e015b04acacb6b6 +SIZE (KDE/release-service/21.04.1/kgeography-21.04.1.tar.xz) = 10762996 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index df146fdc70cd..7375d06d682e 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741508 +SHA256 (KDE/release-service/21.04.1/klettres-21.04.1.tar.xz) = 91cefd4b9d4bf78ecf60cd1e009209e4856b802198aaa842d9738e2764ca93f2 +SIZE (KDE/release-service/21.04.1/klettres-21.04.1.tar.xz) = 47130312 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 689c3b27343d..1b032c41bec7 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741509 +SHA256 (KDE/release-service/21.04.1/ktouch-21.04.1.tar.xz) = 2286f88caa668512322d5d72f2211c6c474c909089c238113c866b73f08ed8d5 +SIZE (KDE/release-service/21.04.1/ktouch-21.04.1.tar.xz) = 4945700 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index fc3934bdbe1a..04d3d5bcc0cb 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741510 +SHA256 (KDE/release-service/21.04.1/kwordquiz-21.04.1.tar.xz) = 7b38afdcaf5ff0e42a67c019e231e7a840d50ce47cf36ebf30300cd4d8b281aa +SIZE (KDE/release-service/21.04.1/kwordquiz-21.04.1.tar.xz) = 4189588 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 0fa67cd27ca0..9faa045734bb 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741510 +SHA256 (KDE/release-service/21.04.1/libkeduvocdocument-21.04.1.tar.xz) = 5bb7318dbea9783cb14fa0c9c85c6034da4efa9ebdb6cd0a20c159ba56f31034 +SIZE (KDE/release-service/21.04.1/libkeduvocdocument-21.04.1.tar.xz) = 211336 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index fa8b24507d8c..c43f35cbbda5 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741511 +SHA256 (KDE/release-service/21.04.1/parley-21.04.1.tar.xz) = e6f234d4ad3c4265626f423fa14c8bc4522241065ccbcd8b9d31dc35e4d847d9 +SIZE (KDE/release-service/21.04.1/parley-21.04.1.tar.xz) = 8844176 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index aa4f8317fb47..0da65b2b27f7 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741512 +SHA256 (KDE/release-service/21.04.1/dragon-21.04.1.tar.xz) = e58435c57bfd85459100013e4a3b42834f39fc9b089383b31f7aa7c39b615cc6 +SIZE (KDE/release-service/21.04.1/dragon-21.04.1.tar.xz) = 1664144 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 1fd880f72487..4805e59be0f0 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741512 +SHA256 (KDE/release-service/21.04.1/kamoso-21.04.1.tar.xz) = 8e29cd82a72bec44bd3a20578f134314534ff9a0fc58ed6b7951cd78691e030c +SIZE (KDE/release-service/21.04.1/kamoso-21.04.1.tar.xz) = 212140 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 98e187021c24..657c742436c1 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741513 +SHA256 (KDE/release-service/21.04.1/ffmpegthumbs-21.04.1.tar.xz) = 992b5baf3bc4945b2a229efe56e125b777773fd89cbe2cd2b7e9acc07247a8d7 +SIZE (KDE/release-service/21.04.1/ffmpegthumbs-21.04.1.tar.xz) = 33616 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 903f5da7ae3a..19191890252c 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741514 +SHA256 (KDE/release-service/21.04.1/kdenlive-21.04.1.tar.xz) = 9c2d0bc76b86fdf83cae1ac8c40b7630afbce4b92f9fd095bcfba1186851ef41 +SIZE (KDE/release-service/21.04.1/kdenlive-21.04.1.tar.xz) = 11723048 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 8e9c901d26c3..952ca07e9a64 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741514 +SHA256 (KDE/release-service/21.04.1/kaccounts-integration-21.04.1.tar.xz) = bd4ad3e878a33ad7637a28ecb0de558445f07cb8677df679a241bb6a18b096a1 +SIZE (KDE/release-service/21.04.1/kaccounts-integration-21.04.1.tar.xz) = 84512 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index fec3e43cef4b..dfaf089ce6fb 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741515 +SHA256 (KDE/release-service/21.04.1/kaccounts-providers-21.04.1.tar.xz) = 5a6647ab78a3f8d6443986dfd95ffde3853540eb25a0af4d1be8d5c33691f472 +SIZE (KDE/release-service/21.04.1/kaccounts-providers-21.04.1.tar.xz) = 62336 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index d4aa5c9bec81..6794c9c03f6c 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741516 +SHA256 (KDE/release-service/21.04.1/kopete-21.04.1.tar.xz) = 6ddd55497906339ba2a4e9b3c0448dac2dfb8e0c2d1c3bbf9b44372c1df422a5 +SIZE (KDE/release-service/21.04.1/kopete-21.04.1.tar.xz) = 9414644 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 1c32253ebdb9..613a5f2662ff 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741517 +SHA256 (KDE/release-service/21.04.1/ktp-accounts-kcm-21.04.1.tar.xz) = e48dbcbe53189b62280496ce9be93d5b839db66212abd3376c0e41c5a2f15686 +SIZE (KDE/release-service/21.04.1/ktp-accounts-kcm-21.04.1.tar.xz) = 263972 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index 4c974fc47afb..a9f73469fd32 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741518 +SHA256 (KDE/release-service/21.04.1/ktp-approver-21.04.1.tar.xz) = 6d67f5f87f2d0320de09654c629057c2df922d0690e362c1c33b3f2f260a623c +SIZE (KDE/release-service/21.04.1/ktp-approver-21.04.1.tar.xz) = 37468 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index 121833671c3a..95832df3a592 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741518 +SHA256 (KDE/release-service/21.04.1/ktp-auth-handler-21.04.1.tar.xz) = 2a70125c02d7e2188805ce800b5bf08be361243e0a77529d20afef9ba34009f6 +SIZE (KDE/release-service/21.04.1/ktp-auth-handler-21.04.1.tar.xz) = 46720 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index ecee7264ed4a..7d0a1ef33bdb 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741519 +SHA256 (KDE/release-service/21.04.1/ktp-call-ui-21.04.1.tar.xz) = f6c3b5fffcec13f2d8298dde8e2ca50785c01a0d0231c93516882dece09beb17 +SIZE (KDE/release-service/21.04.1/ktp-call-ui-21.04.1.tar.xz) = 97504 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index d889d48ecaf2..4246e64d99a2 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741520 +SHA256 (KDE/release-service/21.04.1/ktp-common-internals-21.04.1.tar.xz) = eec6f6215738e380cf29668e404519eb4a7d6db51f97179aa8ea6af81383b711 +SIZE (KDE/release-service/21.04.1/ktp-common-internals-21.04.1.tar.xz) = 450696 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index 00d038d34cbb..ea456c2af8ab 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741521 +SHA256 (KDE/release-service/21.04.1/ktp-contact-list-21.04.1.tar.xz) = 2f57043e5677a318c9ea7abca65243fffbfcc6ea8b01bd9ed6db07a26c31076b +SIZE (KDE/release-service/21.04.1/ktp-contact-list-21.04.1.tar.xz) = 151196 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index 544741372b2f..9f5572637e25 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741521 +SHA256 (KDE/release-service/21.04.1/ktp-contact-runner-21.04.1.tar.xz) = 5798fe46dd613fdf3d0a7510acc4d4379b141390cd3e2c4f17f025cb4f29b378 +SIZE (KDE/release-service/21.04.1/ktp-contact-runner-21.04.1.tar.xz) = 43228 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 1487d44a78f7..704de2343a9a 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741522 +SHA256 (KDE/release-service/21.04.1/ktp-desktop-applets-21.04.1.tar.xz) = 251da9bb083e3fbed328cf7d6ea4c07b64c42bd517d91dbb2d58c9ff64d872c7 +SIZE (KDE/release-service/21.04.1/ktp-desktop-applets-21.04.1.tar.xz) = 43724 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index 34c03a870be0..6e605f5b8398 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741523 +SHA256 (KDE/release-service/21.04.1/ktp-filetransfer-handler-21.04.1.tar.xz) = 0259f20057c1e2fc683b4d7dabb89ee62c275ddd8c97db40ca0d4b4ea533033f +SIZE (KDE/release-service/21.04.1/ktp-filetransfer-handler-21.04.1.tar.xz) = 46420 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index 1ede4305c4d6..0b067fce76fc 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741523 +SHA256 (KDE/release-service/21.04.1/ktp-kded-module-21.04.1.tar.xz) = dfa56fcdfd31f0260ccfed8a9eed23cf4f5f32d588e17f9bac65f1cef692dc2f +SIZE (KDE/release-service/21.04.1/ktp-kded-module-21.04.1.tar.xz) = 98908 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index fef78758ac3a..9aff9a4379e0 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741524 +SHA256 (KDE/release-service/21.04.1/ktp-send-file-21.04.1.tar.xz) = c7e33581124d970c22f94aeb2e3fd04909488e844138ebfbf2bfcfdacedeace9 +SIZE (KDE/release-service/21.04.1/ktp-send-file-21.04.1.tar.xz) = 27912 diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 1c035b6e0b69..395783a5cc9b 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741525 +SHA256 (KDE/release-service/21.04.1/ktp-text-ui-21.04.1.tar.xz) = 559674b9d09102ad832795a16943354479051e0a52eee266ecc5ebc1726b1805 +SIZE (KDE/release-service/21.04.1/ktp-text-ui-21.04.1.tar.xz) = 473148 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 2cccf4127b82..5909412f0c63 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741526 +SHA256 (KDE/release-service/21.04.1/ktorrent-21.04.1.tar.xz) = 17a2118d1f41025af743f8f9de88188388724f69fe657416ec2158d98ef5b53a +SIZE (KDE/release-service/21.04.1/ktorrent-21.04.1.tar.xz) = 2072140 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 4dc2b57ed380..2dc73d5e349d 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741526 +SHA256 (KDE/release-service/21.04.1/libktorrent-21.04.1.tar.xz) = f6ee742ca5e3f64bc56e94cd65dd8b69ecbb9b2a901262f6274be69b22793e9c +SIZE (KDE/release-service/21.04.1/libktorrent-21.04.1.tar.xz) = 603656 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 78edd8878145..fd0354903185 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741527 +SHA256 (KDE/release-service/21.04.1/akonadi-calendar-21.04.1.tar.xz) = 2b90a9d37051bccbee29255f2ecbc92fc0344c7894cf08df4b9657c2772d38cc +SIZE (KDE/release-service/21.04.1/akonadi-calendar-21.04.1.tar.xz) = 348024 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index e165327af981..ded5d5b63b66 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741528 +SHA256 (KDE/release-service/21.04.1/akonadi-contacts-21.04.1.tar.xz) = 07753b84b634ebd348c6d1a00cc82ebfff8e88c1fa5bbc584c40bc6b46803633 +SIZE (KDE/release-service/21.04.1/akonadi-contacts-21.04.1.tar.xz) = 419220 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index d26b863f6e62..7109597283c1 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741528 +SHA256 (KDE/release-service/21.04.1/akonadi-mime-21.04.1.tar.xz) = 7e9a2a4bba6c39c0d6e24d8479199988e8726a229d6ff66853c943cc4dbe2d33 +SIZE (KDE/release-service/21.04.1/akonadi-mime-21.04.1.tar.xz) = 140556 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 72e380feca0b..7be508438b0b 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741529 +SHA256 (KDE/release-service/21.04.1/akonadi-notes-21.04.1.tar.xz) = 7e67facd7829397040a9c291b7ba983e1485782711df219555a8facab73a21af +SIZE (KDE/release-service/21.04.1/akonadi-notes-21.04.1.tar.xz) = 26788 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 6cf34e2bd3c3..2368d8a232d5 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741530 +SHA256 (KDE/release-service/21.04.1/akonadi-search-21.04.1.tar.xz) = b94548c6265a0bb797a47a96bda1d4f5b891226f8f920ecc1b97c7b81065fc99 +SIZE (KDE/release-service/21.04.1/akonadi-search-21.04.1.tar.xz) = 97904 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 378f0b080d29..9fb2a0f6b46d 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741530 +SHA256 (KDE/release-service/21.04.1/calendarsupport-21.04.1.tar.xz) = bdff263d1b4d07ec54817f0ad4529481a9554d3cba86813069880e02f7697fe9 +SIZE (KDE/release-service/21.04.1/calendarsupport-21.04.1.tar.xz) = 670976 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 4b3cce2f3441..1fce6420bf6d 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741531 +SHA256 (KDE/release-service/21.04.1/eventviews-21.04.1.tar.xz) = 9035a353f4191992e96e1646feb20dbe5b47303f8e6e9045e8b38ba6311fa1e0 +SIZE (KDE/release-service/21.04.1/eventviews-21.04.1.tar.xz) = 447204 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index a98bcdb1a69b..9d7b14acb1e2 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741532 +SHA256 (KDE/release-service/21.04.1/incidenceeditor-21.04.1.tar.xz) = fed1e59c7a1e47eab46947874e856d36f1becf8e4160dd48ae79521e6fa31c7e +SIZE (KDE/release-service/21.04.1/incidenceeditor-21.04.1.tar.xz) = 539912 diff --git a/net/kalarmcal/distinfo b/net/kalarmcal/distinfo index a9adffb28a0b..cd7f162a1d2e 100644 --- a/net/kalarmcal/distinfo +++ b/net/kalarmcal/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741533 +SHA256 (KDE/release-service/21.04.1/kalarmcal-21.04.1.tar.xz) = 8c349ed7934981b998c2012d6b54bc838634249b10064107252cd831dea1ac78 +SIZE (KDE/release-service/21.04.1/kalarmcal-21.04.1.tar.xz) = 579940 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index ab78adf49082..1dfc3225caf5 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741533 +SHA256 (KDE/release-service/21.04.1/kcalutils-21.04.1.tar.xz) = 2cd64365c620d7ca83d9c6a1488da8641d4cc2b97987eb09d7482130d8109b90 +SIZE (KDE/release-service/21.04.1/kcalutils-21.04.1.tar.xz) = 333740 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 7dd41c929452..fc5ae103e844 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741534 +SHA256 (KDE/release-service/21.04.1/kdenetwork-filesharing-21.04.1.tar.xz) = 894828a5fa14d05d6ea8f9d59954fb5e71b1412074305dfbb9d7477550c2c5ff +SIZE (KDE/release-service/21.04.1/kdenetwork-filesharing-21.04.1.tar.xz) = 354664 diff --git a/net/kget/distinfo b/net/kget/distinfo index 18eda959afe8..65e3e51d7e76 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741535 +SHA256 (KDE/release-service/21.04.1/kget-21.04.1.tar.xz) = 3c590d73774a444340ee106fdbc22a91045c827e610b2c2b527d252ddb587d28 +SIZE (KDE/release-service/21.04.1/kget-21.04.1.tar.xz) = 5589968 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 8cc204aa38f4..66e49993aae1 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741536 +SHA256 (KDE/release-service/21.04.1/kidentitymanagement-21.04.1.tar.xz) = d78abe162b52fea7571e49af5281ca354be82697ae2a93b923b34531d1943d4e +SIZE (KDE/release-service/21.04.1/kidentitymanagement-21.04.1.tar.xz) = 155808 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index fb5cbcbd3e08..382ddd69b59a 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741536 +SHA256 (KDE/release-service/21.04.1/kimap-21.04.1.tar.xz) = 5935203e5fc4ecd66af141b751ca08ebc061469116a879d10dc11476085dd281 +SIZE (KDE/release-service/21.04.1/kimap-21.04.1.tar.xz) = 128248 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 81895041b0b8..a2b5bfef7831 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741537 +SHA256 (KDE/release-service/21.04.1/kio-gdrive-21.04.1.tar.xz) = b97897fca895ccf3b024886f39f1ffe8f729cc2b911f50815cd417e2983e334c +SIZE (KDE/release-service/21.04.1/kio-gdrive-21.04.1.tar.xz) = 68076 diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index 032c85af9ef5..da6a60ef7d97 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -1,28 +1,27 @@ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information LICENSE= LGPL21 LIB_DEPENDS= libphonenumber.so:devel/libphonenumber \ libpoppler.so:graphics/poppler \ libZXing.so:textproc/zxing-cpp USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 tar:xz USE_GNOME= libxml2 USE_KDE= coreaddons ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index f516a61f9d3a..c89f448d2bd6 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741538 +SHA256 (KDE/release-service/21.04.1/kitinerary-21.04.1.tar.xz) = ef2f3b024e078060ecad137f57a45586b812b57de58200f90ed097d60a432785 +SIZE (KDE/release-service/21.04.1/kitinerary-21.04.1.tar.xz) = 1821620 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index aae3037e388b..e63d0e3fe4c9 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741539 +SHA256 (KDE/release-service/21.04.1/kldap-21.04.1.tar.xz) = e0c462d2b954c30935180bed906ae05c5c7a054a9f0c29ec04ed14b8fdff983b +SIZE (KDE/release-service/21.04.1/kldap-21.04.1.tar.xz) = 170728 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 0bf32a36b36c..b6656caabe73 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741539 +SHA256 (KDE/release-service/21.04.1/kmailtransport-21.04.1.tar.xz) = 8610610b615631e2b6cc24032cdcbb54a8a1afa680f459554df80bacd63fe50d +SIZE (KDE/release-service/21.04.1/kmailtransport-21.04.1.tar.xz) = 172152 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 5d1a26f8f7ec..1a58cef67baa 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741540 +SHA256 (KDE/release-service/21.04.1/kmbox-21.04.1.tar.xz) = 3d1b2d1bc5bf986c2c2f03fa5ac51a6bcfbc602bc48de56e32c5671484e1288b +SIZE (KDE/release-service/21.04.1/kmbox-21.04.1.tar.xz) = 28456 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 94d1a95d2bf2..dd5ccf12615a 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741541 +SHA256 (KDE/release-service/21.04.1/kmime-21.04.1.tar.xz) = d368a8270833910d0fadf84424a547abee46263ec2bf8dbc245d6fc7222546f8 +SIZE (KDE/release-service/21.04.1/kmime-21.04.1.tar.xz) = 153712 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 566112e47cfd..6d8640ebb816 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741541 +SHA256 (KDE/release-service/21.04.1/kontactinterface-21.04.1.tar.xz) = c9c9aee47286f26675a6cc67c987acc6970bc070ce843bddd5cc6e12a3c75899 +SIZE (KDE/release-service/21.04.1/kontactinterface-21.04.1.tar.xz) = 39956 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 9a2ebbcac4f8..f852c6463d73 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741542 +SHA256 (KDE/release-service/21.04.1/kpimtextedit-21.04.1.tar.xz) = 231cb4d59475dcd681513eb9976808c70bcad461fd8521478fe4f89a73d386b8 +SIZE (KDE/release-service/21.04.1/kpimtextedit-21.04.1.tar.xz) = 205092 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 7575797d2d7a..6b751622b787 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741543 +SHA256 (KDE/release-service/21.04.1/krdc-21.04.1.tar.xz) = 7ad822a90758d2109c6cc7b8a7055edeaf7c24567eba94f26cc911e40939adfd +SIZE (KDE/release-service/21.04.1/krdc-21.04.1.tar.xz) = 1568468 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index c7dec176c87b..db6df479dc0b 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741544 +SHA256 (KDE/release-service/21.04.1/krfb-21.04.1.tar.xz) = 25784b487aded807a85d6ebd1f71f662e189855e6f59f7de7bf0c6b9bf5412de +SIZE (KDE/release-service/21.04.1/krfb-21.04.1.tar.xz) = 1283292 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 47d23722cfe0..8ce931f68f22 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741544 +SHA256 (KDE/release-service/21.04.1/ksmtp-21.04.1.tar.xz) = 4c1dd2f39263195e8ad32d6b43bf3200fff1c1f93575e918e1b69906ccef4ad8 +SIZE (KDE/release-service/21.04.1/ksmtp-21.04.1.tar.xz) = 47104 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 15825b48287c..f7d9fa048b2d 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741545 +SHA256 (KDE/release-service/21.04.1/ktnef-21.04.1.tar.xz) = 2e122470ec8c879d2faaf31ddbf60d82732d5f34304e305a3e97dfe91f80418b +SIZE (KDE/release-service/21.04.1/ktnef-21.04.1.tar.xz) = 303712 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index e9743ddac8a6..1692b9099061 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741546 +SHA256 (KDE/release-service/21.04.1/libgravatar-21.04.1.tar.xz) = 58f89ddcf3ff95f7402596826dfbc0810f3fe91e1a8ec7bcd5a08b2544f7e01e +SIZE (KDE/release-service/21.04.1/libgravatar-21.04.1.tar.xz) = 35324 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 65e6cb30cc0d..a034a5c60a80 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741546 +SHA256 (KDE/release-service/21.04.1/libkgapi-21.04.1.tar.xz) = 1dd464db972d037fda66af2eb6445c0d72e5d148f3d7b6ddcaaa5a048f33bb33 +SIZE (KDE/release-service/21.04.1/libkgapi-21.04.1.tar.xz) = 249592 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 148dbb1b65fd..2d51bb821214 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741547 +SHA256 (KDE/release-service/21.04.1/libksieve-21.04.1.tar.xz) = 1082aa0ed0231bbc31c2031cb634bfa6991172af770fa9e9c755648d4665df46 +SIZE (KDE/release-service/21.04.1/libksieve-21.04.1.tar.xz) = 564652 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 544670685539..8a3711d25d09 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741548 +SHA256 (KDE/release-service/21.04.1/mailcommon-21.04.1.tar.xz) = 13dc5b7ef81f74463f63833876b717ed6c8a66d37a44f0cbeaa9b090362d7e71 +SIZE (KDE/release-service/21.04.1/mailcommon-21.04.1.tar.xz) = 727260 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index ee6d22ef74bb..08d657e7fabb 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741549 +SHA256 (KDE/release-service/21.04.1/mailimporter-21.04.1.tar.xz) = 983c0e13e86c6d0a553660a85acbb0492c8718a3c5bc6bfe7d0bb82232421475 +SIZE (KDE/release-service/21.04.1/mailimporter-21.04.1.tar.xz) = 552964 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index ac73af0255d2..a4a2de7a67eb 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741549 +SHA256 (KDE/release-service/21.04.1/messagelib-21.04.1.tar.xz) = 9b6a97cc1348591d0dbdf7b01f3a6216aaa86ca5c9667f8ae2b1dc398178c7ec +SIZE (KDE/release-service/21.04.1/messagelib-21.04.1.tar.xz) = 10634708 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 4842ffd7a728..157dc029435d 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,902 +1,903 @@ 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/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/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/libmessagecomposer.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 402ad1c6598a..d1d0a205858a 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741550 +SHA256 (KDE/release-service/21.04.1/pimcommon-21.04.1.tar.xz) = 7dbed3b542f7a1c8f78fa6a96b8687fa460c6264fb9cc85b372ca16c723c11ba +SIZE (KDE/release-service/21.04.1/pimcommon-21.04.1.tar.xz) = 369308 diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index c1950d9c6e66..9bf71ed4f1da 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741551 +SHA256 (KDE/release-service/21.04.1/zeroconf-ioslave-21.04.1.tar.xz) = f270de0b5012dd084f44b21eb72ed04b22d67ea8a9cfdd0065058031217586af +SIZE (KDE/release-service/21.04.1/zeroconf-ioslave-21.04.1.tar.xz) = 43340 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 2d66cd74e115..7346c7cb1415 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741551 +SHA256 (KDE/release-service/21.04.1/print-manager-21.04.1.tar.xz) = 57d40eae1dd0dd25a2eaecfada541a65534d4f1a535d143f9e1af8108d7584b3 +SIZE (KDE/release-service/21.04.1/print-manager-21.04.1.tar.xz) = 259112 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index c35306fc82a0..5786c0c66fd3 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741553 +SHA256 (KDE/release-service/21.04.1/kalzium-21.04.1.tar.xz) = 5769fde1c75b097337527b233b4c40c08e86efeeab76b1832c80fb9ecacc202a +SIZE (KDE/release-service/21.04.1/kalzium-21.04.1.tar.xz) = 24543488 diff --git a/science/step/distinfo b/science/step/distinfo index 03d436344b05..91ca4bb76b6c 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741553 +SHA256 (KDE/release-service/21.04.1/step-21.04.1.tar.xz) = 97daa2354edda714b514c91c3831d11a1b5f8b675933de926f7ffafaf06b4b78 +SIZE (KDE/release-service/21.04.1/step-21.04.1.tar.xz) = 963968 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 869133ed747b..bcfb61512b0d 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741554 +SHA256 (KDE/release-service/21.04.1/kgpg-21.04.1.tar.xz) = 03ce0e027e8cca477a34c1ad9bae74c6076044a2624a964917690aa4769ffc9f +SIZE (KDE/release-service/21.04.1/kgpg-21.04.1.tar.xz) = 2886248 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index d7ffedb365ad..327e0479221c 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741555 +SHA256 (KDE/release-service/21.04.1/kleopatra-21.04.1.tar.xz) = 21218c61f153fb7e29b654fb40dcfd80d8c49749cf7b21f4e803cf25b18c72c3 +SIZE (KDE/release-service/21.04.1/kleopatra-21.04.1.tar.xz) = 2054160 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index f733be1f9c4e..0eeb70ffed50 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741556 +SHA256 (KDE/release-service/21.04.1/kpkpass-21.04.1.tar.xz) = 5368717031967d9134f1efe3ba72119b1574db5568a6818a1fd12014b9f58cb8 +SIZE (KDE/release-service/21.04.1/kpkpass-21.04.1.tar.xz) = 27352 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 2643d6cfabfa..2a6d814ad8bc 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741556 +SHA256 (KDE/release-service/21.04.1/kwalletmanager-21.04.1.tar.xz) = ef6eeb9376e07d4d8131ea234e6b80ae32a84f9eeab125f8df70f7006671d38c +SIZE (KDE/release-service/21.04.1/kwalletmanager-21.04.1.tar.xz) = 782320 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 3ed208848340..8e947cd16129 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741557 +SHA256 (KDE/release-service/21.04.1/libkleo-21.04.1.tar.xz) = 09e080d6a3e0f1d1433a839211eb457e449fd3a36c400f128f1c373c52b65949 +SIZE (KDE/release-service/21.04.1/libkleo-21.04.1.tar.xz) = 371876 diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index 78c89879478c..ae97fa9d036d 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= 21.4.0 +KDE_APPLICATIONS_SHLIB_VER= 21.4.1 .include diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index d246e59c898c..7df67593d182 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741558 +SHA256 (KDE/release-service/21.04.1/baloo-widgets-21.04.1.tar.xz) = ea3247575b8825237b61009c9764f788e80324783f8f13cf20a5bcfabdcdd72e +SIZE (KDE/release-service/21.04.1/baloo-widgets-21.04.1.tar.xz) = 262260 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 61cdf4036bdd..1b58f326113a 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741559 +SHA256 (KDE/release-service/21.04.1/filelight-21.04.1.tar.xz) = badfc2e4130103d1237a6e535b9b3cd99b24b2091e1e61202cf81d10a99db7b7 +SIZE (KDE/release-service/21.04.1/filelight-21.04.1.tar.xz) = 678996 diff --git a/sysutils/k3b/Makefile b/sysutils/k3b/Makefile index 5585194fc148..62a9542053d8 100644 --- a/sysutils/k3b/Makefile +++ b/sysutils/k3b/Makefile @@ -1,54 +1,53 @@ PORTNAME= k3b DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils multimedia kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CD/DVD writing suite LIB_DEPENDS= libFLAC.so:audio/flac \ libKF5Cddb.so:audio/libkcddb \ libcdda_paranoia.so:audio/cdparanoia \ libdvdread.so:multimedia/libdvdread \ libmad.so:audio/libmad \ libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libtag.so:audio/taglib \ libvorbis.so:audio/libvorbis RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools USES= cmake compiler:c++11-lang desktop-file-utils gettext iconv \ kde:5 pkgconfig qt:5 shared-mime-info tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons ecm filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools_build qmake_build # The ffmpeg-plugin needs patching CMAKE_ARGS= -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=FALSE OPTIONS_DEFINE= CDRDAO CDRSKIN DVDPLUSRW EMOVIX VCDIMAGER DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CDRDAO_DESC= Burning: cdrdao CDRDAO_RUN_DEPENDS= cdrdao:sysutils/cdrdao DVDPLUSRW_DESC= Burning: DVD+RW tools (DVD+/-R(W)) DVDPLUSRW_RUN_DEPENDS= dvd+rw-format:sysutils/dvd+rw-tools EMOVIX_DESC= Burning: eMovix (bootable video CDs) EMOVIX_RUN_DEPENDS= mkmovixiso:multimedia/emovix VCDIMAGER_DESC= Burning: VCDImager (video CDs) VCDIMAGER_RUN_DEPENDS= vcdxrip:multimedia/vcdimager CDRSKIN_DESC= Burning: cdrskin (improved performance) CDRSKIN_RUN_DEPENDS= cdrskin:devel/libburn .include diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index e224a5a8034c..077f97e7b5e1 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741559 +SHA256 (KDE/release-service/21.04.1/k3b-21.04.1.tar.xz) = d316f98c9c4e7d4023c20e79e41baca011f75982c4415edd027feed94c780569 +SIZE (KDE/release-service/21.04.1/k3b-21.04.1.tar.xz) = 10708748 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 9ca03fce96eb..c769b8040e41 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741560 +SHA256 (KDE/release-service/21.04.1/kbackup-21.04.1.tar.xz) = eced358efaf30539b3bcdaae528ab709997ffd9f969eed2aa938f55eebc25093 +SIZE (KDE/release-service/21.04.1/kbackup-21.04.1.tar.xz) = 383648 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 9fcb80f321f7..073eb06f7356 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741561 +SHA256 (KDE/release-service/21.04.1/kcron-21.04.1.tar.xz) = e5cc4838b7f1d0380be64888b9e1da5e2e8625d36b19e376134a50795614cff6 +SIZE (KDE/release-service/21.04.1/kcron-21.04.1.tar.xz) = 901484 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 96ab65e601a5..4fda3d1c4039 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741562 +SHA256 (KDE/release-service/21.04.1/kdebugsettings-21.04.1.tar.xz) = efe4dd509e8df605d9ffc48c3f5f9dd33789e24de03e2748b7535ab56cc64a2b +SIZE (KDE/release-service/21.04.1/kdebugsettings-21.04.1.tar.xz) = 86564 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 6213a1821d94..025f494988b9 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741563 +SHA256 (KDE/release-service/21.04.1/kdf-21.04.1.tar.xz) = 69215c6cf7f6502ff2375eafb3f8072cd75a92f38ebab053106e071a1e03f671 +SIZE (KDE/release-service/21.04.1/kdf-21.04.1.tar.xz) = 467320 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index a9c9bac45946..68d3ab478df7 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741563 +SHA256 (KDE/release-service/21.04.1/kdialog-21.04.1.tar.xz) = a55889bc31b5c20859dd77c27904a47c4017eace6c722b0631681b02f55ae0d6 +SIZE (KDE/release-service/21.04.1/kdialog-21.04.1.tar.xz) = 109112 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 1299bc9180bb..4bd5452b2c3a 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741564 +SHA256 (KDE/release-service/21.04.1/kfloppy-21.04.1.tar.xz) = d4c83857a153c63336659829871e22de7fd52310c3bd666d68cde149fca59d72 +SIZE (KDE/release-service/21.04.1/kfloppy-21.04.1.tar.xz) = 205100 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index c675c4c36e65..db43b2caed07 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741565 +SHA256 (KDE/release-service/21.04.1/khelpcenter-21.04.1.tar.xz) = bb0a42b891298ce77b32ee70f8a5768fdefce6b3cc0cb00365cc83803ec6c736 +SIZE (KDE/release-service/21.04.1/khelpcenter-21.04.1.tar.xz) = 4269604 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 34049369acfb..b17a4d7842c5 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741566 +SHA256 (KDE/release-service/21.04.1/ksystemlog-21.04.1.tar.xz) = 8aeeeccc8d35361db170ecbcd64535e96e3a2fb4daacb276db2e14bb389458ef +SIZE (KDE/release-service/21.04.1/ksystemlog-21.04.1.tar.xz) = 1954352 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 53d253118d69..d0572c42434b 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741567 +SHA256 (KDE/release-service/21.04.1/signon-kwallet-extension-21.04.1.tar.xz) = 0db1d02237eabe9db521df34f6b76a9cc4e6790873af19c3cec782ef9039968a +SIZE (KDE/release-service/21.04.1/signon-kwallet-extension-21.04.1.tar.xz) = 10768 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index b8b72e2a0208..f0773a2121a1 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741567 +SHA256 (KDE/release-service/21.04.1/sweeper-21.04.1.tar.xz) = c4dd351519442cd7699a749176a3f633587ad7b91b7448d779305b5490ccef12 +SIZE (KDE/release-service/21.04.1/sweeper-21.04.1.tar.xz) = 371888 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 86a0b7619554..e31ae8c3d38b 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741568 +SHA256 (KDE/release-service/21.04.1/kompare-21.04.1.tar.xz) = f139f6db333ba6ec7f60d07f7e63353542c5c30d6193474ff037af3d8bdab696 +SIZE (KDE/release-service/21.04.1/kompare-21.04.1.tar.xz) = 927208 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 99d0cad38c4e..d4885c84414c 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741569 +SHA256 (KDE/release-service/21.04.1/libkomparediff2-21.04.1.tar.xz) = eced4e239b40278dcfff529db6f433c997c80da0c77faadf6a9b7c39d26ebdfe +SIZE (KDE/release-service/21.04.1/libkomparediff2-21.04.1.tar.xz) = 159348 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 1abd7fe6a78e..56bacec3524c 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741570 +SHA256 (KDE/release-service/21.04.1/markdownpart-21.04.1.tar.xz) = 4dbc67d11eb44189575aa4c4ecd424d30202d686ff0efbbe14dd4724c07a19ac +SIZE (KDE/release-service/21.04.1/markdownpart-21.04.1.tar.xz) = 27268 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 5282857bf7dd..6bb03217d8e4 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741570 +SHA256 (KDE/release-service/21.04.1/kteatime-21.04.1.tar.xz) = 8271458689a93589fd8b272e158a26a8ae2d4d5f4bd6e3ee1d5e8653a68932c0 +SIZE (KDE/release-service/21.04.1/kteatime-21.04.1.tar.xz) = 295328 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 54245dcbcf10..83b23a6acb60 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741571 +SHA256 (KDE/release-service/21.04.1/ktimer-21.04.1.tar.xz) = 16c56fec6b5adbc9ed633a2280e3bfbb8c7b985a5d562045ecfa8fde7f544c3b +SIZE (KDE/release-service/21.04.1/ktimer-21.04.1.tar.xz) = 385912 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 99c6f7bac9b3..818f974c6e18 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741572 +SHA256 (KDE/release-service/21.04.1/dolphin-21.04.1.tar.xz) = 292377aca0454189186d4046ed69785d7fda672270362c3b538a001c9daa826e +SIZE (KDE/release-service/21.04.1/dolphin-21.04.1.tar.xz) = 5163736 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 682e3da012ce..95a4aafc6c25 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741573 +SHA256 (KDE/release-service/21.04.1/konqueror-21.04.1.tar.xz) = cf1987573b4efd8510525cc88d36eab33e76e95e0c3166e11c29ad3d00dab726 +SIZE (KDE/release-service/21.04.1/konqueror-21.04.1.tar.xz) = 7256176 diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index 5a8d83951943..98802a7d3653 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -1,32 +1,28 @@ PORTNAME= konsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-applications # kde kde-applications-applications -PATCH_SITES= https://invent.kde.org/utilities/konsole/commit/ -PATCHFILES= 2b441030a745a17f76d8f010a299a74532e3f211.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE terminal emulator BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml RUN_DEPENDS= keditbookmarks:deskutils/keditbookmarks LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth attica bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons globalaccel guiaddons i18n \ iconthemes init itemmodels jobwidgets kdelibs4support kio \ newstuff notifications notifyconfig parts pty service sonnet \ textwidgets widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport script scripttools sql \ widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index b4ea5a444b15..463907958114 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1620035138 -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 -SHA256 (KDE/release-service/21.04.0/2b441030a745a17f76d8f010a299a74532e3f211.diff) = 443bfdc60fc0b152870fd7878f8ea6d20e9ba628128b4e28ccc66da5905646dc -SIZE (KDE/release-service/21.04.0/2b441030a745a17f76d8f010a299a74532e3f211.diff) = 2688 +TIMESTAMP = 1620752706 +SHA256 (KDE/release-service/21.04.1/konsole-21.04.1.tar.xz) = 46802bbddca8dd4c264107a411a58c86cc7707c9210ddfbd38d8a971ea735293 +SIZE (KDE/release-service/21.04.1/konsole-21.04.1.tar.xz) = 1277552 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index b19ec8b84f9a..ac6246bab836 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1620741574 +SHA256 (KDE/release-service/21.04.1/yakuake-21.04.1.tar.xz) = 001cfd978197e2cd6f3fb688f645785b61517b6ccc7d7c89a27d1f9111f4a04a +SIZE (KDE/release-service/21.04.1/yakuake-21.04.1.tar.xz) = 391696