Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 525395) +++ head/Mk/Uses/kde.mk (revision 525396) @@ -1,856 +1,856 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.17.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.66.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.12.1 -KDE_APPLICATIONS_SHLIB_VER?= 5.13.1 +KDE_APPLICATIONS_VERSION?= 19.12.2 +KDE_APPLICATIONS_SHLIB_VER?= 5.13.2 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 525395) +++ head/accessibility/kmag/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373823 -SHA256 (KDE/applications/19.12.1/kmag-19.12.1.tar.xz) = 59e5a59407894976574acf78e7248fd0609ce6ee222c60388a99e5576ac2061f -SIZE (KDE/applications/19.12.1/kmag-19.12.1.tar.xz) = 673956 +TIMESTAMP = 1580852909 +SHA256 (KDE/applications/19.12.2/kmag-19.12.2.tar.xz) = e53c1ff9efb3ac2754e022aa61ec17da646d1ae6ae04d6708562155fe2609b8e +SIZE (KDE/applications/19.12.2/kmag-19.12.2.tar.xz) = 674464 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 525395) +++ head/accessibility/kmousetool/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373823 -SHA256 (KDE/applications/19.12.1/kmousetool-19.12.1.tar.xz) = d056fd05ffb900f65670e3a77dc8a0c08fbc02d86f4fba1b34dd8f6b5f60c3e5 -SIZE (KDE/applications/19.12.1/kmousetool-19.12.1.tar.xz) = 113820 +TIMESTAMP = 1580852909 +SHA256 (KDE/applications/19.12.2/kmousetool-19.12.2.tar.xz) = dc882f59724037aa1c9b1490436f27b711cb672bb89d33e195ff42cedc69857b +SIZE (KDE/applications/19.12.2/kmousetool-19.12.2.tar.xz) = 113876 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 525395) +++ head/accessibility/kmouth/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373824 -SHA256 (KDE/applications/19.12.1/kmouth-19.12.1.tar.xz) = da46e472a05920225c3ae0caba21279dc817b7c8e77ae981b1ad6cf2083a49ad -SIZE (KDE/applications/19.12.1/kmouth-19.12.1.tar.xz) = 1966216 +TIMESTAMP = 1580852910 +SHA256 (KDE/applications/19.12.2/kmouth-19.12.2.tar.xz) = 2175becf93524ee202ac621cf83f8727b3351b54df824966279c37c9d423b8d3 +SIZE (KDE/applications/19.12.2/kmouth-19.12.2.tar.xz) = 1964648 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 525395) +++ head/archivers/ark/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373825 -SHA256 (KDE/applications/19.12.1/ark-19.12.1.tar.xz) = 37b9dfc0b6005ebd0f2757ecce940568839e8a5d73b3bcbc1931ce4eccbb9d0c -SIZE (KDE/applications/19.12.1/ark-19.12.1.tar.xz) = 2586724 +TIMESTAMP = 1580852898 +SHA256 (KDE/applications/19.12.2/ark-19.12.2.tar.xz) = fc70fa952b872330acd510c84ab2651258a74f370efd1f0bda6df8c4b9e6aaf1 +SIZE (KDE/applications/19.12.2/ark-19.12.2.tar.xz) = 2585848 Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 525395) +++ head/astro/libkgeomap/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373825 -SHA256 (KDE/applications/19.12.1/libkgeomap-19.12.1.tar.xz) = 68c9c5b91e77a4b4a07ca646d58e8e890975825f8f851d850c95dacb7a1d90d2 -SIZE (KDE/applications/19.12.1/libkgeomap-19.12.1.tar.xz) = 150780 +TIMESTAMP = 1580852908 +SHA256 (KDE/applications/19.12.2/libkgeomap-19.12.2.tar.xz) = a965a9e02335af086f4b8b37724413821f7b70b61fd5a3449167c1b49670ec6b +SIZE (KDE/applications/19.12.2/libkgeomap-19.12.2.tar.xz) = 151044 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 525395) +++ head/astro/marble/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578508938 -SHA256 (KDE/applications/19.12.1/marble-19.12.1.tar.xz) = 46ec0dcab4773ccfb843ae52881ae833b038a00b7690977a2e721099264dc8dd -SIZE (KDE/applications/19.12.1/marble-19.12.1.tar.xz) = 52200188 +TIMESTAMP = 1580852907 +SHA256 (KDE/applications/19.12.2/marble-19.12.2.tar.xz) = cdf3aa6dd475bd4c2f6ca9db9fe9b389458cb61a14097b62482266f528c3528c +SIZE (KDE/applications/19.12.2/marble-19.12.2.tar.xz) = 52219080 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 525395) +++ head/audio/audiocd-kio/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373827 -SHA256 (KDE/applications/19.12.1/audiocd-kio-19.12.1.tar.xz) = 3b4433bbbdd56bbafcf0418eaebb655b8fd4e03a4c29489112394393f3dc3815 -SIZE (KDE/applications/19.12.1/audiocd-kio-19.12.1.tar.xz) = 357524 +TIMESTAMP = 1580852853 +SHA256 (KDE/applications/19.12.2/audiocd-kio-19.12.2.tar.xz) = 7a2bd3e091ddb408268bd2a32ef7a943faf7def4f8106f9e136e665ee36e6b59 +SIZE (KDE/applications/19.12.2/audiocd-kio-19.12.2.tar.xz) = 357144 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 525395) +++ head/audio/audiocd-kio/pkg-plist (revision 525396) @@ -1,290 +1,292 @@ share/qlogging-categories5/kio_audiocd.categories include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/kservices5/audiocd.protocol share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/ast/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo +share/locale/ia/LC_MESSAGES/audiocd_encoder_flac.mo +share/locale/ia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/solid/actions/solid_audiocd.desktop Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 525395) +++ head/audio/juk/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373829 -SHA256 (KDE/applications/19.12.1/juk-19.12.1.tar.xz) = de1d9f3581f791ea050700b467dce4b38d9ec2dc20884b495826e479d3245edf -SIZE (KDE/applications/19.12.1/juk-19.12.1.tar.xz) = 1866084 +TIMESTAMP = 1580852855 +SHA256 (KDE/applications/19.12.2/juk-19.12.2.tar.xz) = 71f8a30679aa1d99b48fc248bf63926dd6f490952af79fa116e930ade564fb21 +SIZE (KDE/applications/19.12.2/juk-19.12.2.tar.xz) = 1865336 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 525395) +++ head/audio/kmix/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373829 -SHA256 (KDE/applications/19.12.1/kmix-19.12.1.tar.xz) = 97fff89e4a102351d01265a9659c5664b030b9b4f27fa021b997fe7ab8801ad6 -SIZE (KDE/applications/19.12.1/kmix-19.12.1.tar.xz) = 1008224 +TIMESTAMP = 1580852852 +SHA256 (KDE/applications/19.12.2/kmix-19.12.2.tar.xz) = 9be0d79b80cd14b2881dbd49ae86309dc2b32aae674669a4c025c1697f8296a5 +SIZE (KDE/applications/19.12.2/kmix-19.12.2.tar.xz) = 1006716 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 525395) +++ head/audio/kwave/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373830 -SHA256 (KDE/applications/19.12.1/kwave-19.12.1.tar.xz) = e6c336644c00a457b37820fc87668dd9b8a448d8abf84cda267b6e5cd01e0645 -SIZE (KDE/applications/19.12.1/kwave-19.12.1.tar.xz) = 6191832 +TIMESTAMP = 1580852854 +SHA256 (KDE/applications/19.12.2/kwave-19.12.2.tar.xz) = 27ea1d9abf9c944a6998270d113dde2bc0955166a30d7124ae40479996a7dcdc +SIZE (KDE/applications/19.12.2/kwave-19.12.2.tar.xz) = 6199596 Index: head/audio/kwave/pkg-plist =================================================================== --- head/audio/kwave/pkg-plist (revision 525395) +++ head/audio/kwave/pkg-plist (revision 525396) @@ -1,97 +1,98 @@ bin/kwave lib/libkwave.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkwave.so.%%KDE_APPLICATIONS_VERSION%% lib/libkwavegui.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkwavegui.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kwave/kwaveplugin_about.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_amplifyfree.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_band_pass.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_ascii.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_audiofile.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_flac.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_mp3.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_ogg.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_wav.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_debug.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_export_k3b.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_fileinfo.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_goto.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_insert_at.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_lowpass.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_newsignal.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_noise.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_normalize.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_notch_filter.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_pitch_shift.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_playback.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_record.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_reverse.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_samplerate.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_saveblocks.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_selectrange.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_sonagram.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_stringenter.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_volume.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_zero.so share/applications/org.kde.kwave.desktop share/icons/hicolor/scalable/actions/kwave_player_end.svgz share/icons/hicolor/scalable/actions/kwave_player_fwd.svgz share/icons/hicolor/scalable/actions/kwave_player_loop.svgz share/icons/hicolor/scalable/actions/kwave_player_pause.svgz share/icons/hicolor/scalable/actions/kwave_player_pause_2.svgz share/icons/hicolor/scalable/actions/kwave_player_play.svgz share/icons/hicolor/scalable/actions/kwave_player_record.svgz share/icons/hicolor/scalable/actions/kwave_player_rew.svgz share/icons/hicolor/scalable/actions/kwave_player_start.svgz share/icons/hicolor/scalable/actions/kwave_player_stop.svgz share/icons/hicolor/scalable/actions/kwave_viewmag.svgz share/icons/hicolor/scalable/actions/kwave_viewmagfit.svgz share/icons/hicolor/scalable/actions/kwave_zoom_in.svgz share/icons/hicolor/scalable/actions/kwave_zoom_original.svgz share/icons/hicolor/scalable/actions/kwave_zoom_out.svgz share/icons/hicolor/scalable/apps/kwave.svgz share/kservicetypes5/kwave-plugin.desktop %%DATADIR%%/menus.config %%DATADIR%%/pics/amplify_free.png %%DATADIR%%/pics/fade_in.png %%DATADIR%%/pics/fade_out.png %%DATADIR%%/pics/knob.xpm %%DATADIR%%/pics/kwave-splash.png %%DATADIR%%/pics/light_off.xpm %%DATADIR%%/pics/light_on.xpm %%DATADIR%%/pics/logo.xpm %%DATADIR%%/pics/noise.png %%DATADIR%%/pics/selectedknob.xpm %%DATADIR%%/pics/sound_card.png %%DATADIR%%/pics/sound_device.png %%DATADIR%%/pics/sound_note.png %%DATADIR%%/pics/sound_subdevice.png share/locale/bs/LC_MESSAGES/kwave.mo share/locale/ca/LC_MESSAGES/kwave.mo share/locale/ca@valencia/LC_MESSAGES/kwave.mo share/locale/cs/LC_MESSAGES/kwave.mo share/locale/da/LC_MESSAGES/kwave.mo share/locale/de/LC_MESSAGES/kwave.mo share/locale/el/LC_MESSAGES/kwave.mo share/locale/en_GB/LC_MESSAGES/kwave.mo share/locale/es/LC_MESSAGES/kwave.mo share/locale/et/LC_MESSAGES/kwave.mo share/locale/eu/LC_MESSAGES/kwave.mo share/locale/fi/LC_MESSAGES/kwave.mo share/locale/fr/LC_MESSAGES/kwave.mo share/locale/gl/LC_MESSAGES/kwave.mo +share/locale/ia/LC_MESSAGES/kwave.mo share/locale/it/LC_MESSAGES/kwave.mo share/locale/ja/LC_MESSAGES/kwave.mo share/locale/lt/LC_MESSAGES/kwave.mo share/locale/nl/LC_MESSAGES/kwave.mo share/locale/pl/LC_MESSAGES/kwave.mo share/locale/pt/LC_MESSAGES/kwave.mo share/locale/pt_BR/LC_MESSAGES/kwave.mo share/locale/ru/LC_MESSAGES/kwave.mo share/locale/sk/LC_MESSAGES/kwave.mo share/locale/sv/LC_MESSAGES/kwave.mo share/locale/tr/LC_MESSAGES/kwave.mo share/locale/uk/LC_MESSAGES/kwave.mo share/locale/zh_CN/LC_MESSAGES/kwave.mo share/locale/zh_TW/LC_MESSAGES/kwave.mo share/metainfo/org.kde.kwave.appdata.xml Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 525395) +++ head/audio/libkcddb/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373831 -SHA256 (KDE/applications/19.12.1/libkcddb-19.12.1.tar.xz) = 50c139aaa14a5f27b3818cec7ec6ede4b764d461b6547651b61e4edd295afe6f -SIZE (KDE/applications/19.12.1/libkcddb-19.12.1.tar.xz) = 424108 +TIMESTAMP = 1580852856 +SHA256 (KDE/applications/19.12.2/libkcddb-19.12.2.tar.xz) = 25f66a73632fca94452083a92fdd8e30eec795e2ee82d6345484c598faa3652e +SIZE (KDE/applications/19.12.2/libkcddb-19.12.2.tar.xz) = 423792 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 525395) +++ head/audio/libkcompactdisc/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373831 -SHA256 (KDE/applications/19.12.1/libkcompactdisc-19.12.1.tar.xz) = 95b14098b24a86094b01b357e36ae135fb6c85c838e8735c843d27b101cc2bd9 -SIZE (KDE/applications/19.12.1/libkcompactdisc-19.12.1.tar.xz) = 89216 +TIMESTAMP = 1580852855 +SHA256 (KDE/applications/19.12.2/libkcompactdisc-19.12.2.tar.xz) = 405cc528dc4678ef8f10985a9997c4cf8cab1e260c91e1a9e33fe893bac10499 +SIZE (KDE/applications/19.12.2/libkcompactdisc-19.12.2.tar.xz) = 88860 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 525395) +++ head/databases/akonadi/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373832 -SHA256 (KDE/applications/19.12.1/akonadi-19.12.1.tar.xz) = 991680be1b57a5335690341ab2a681fc7d8e77a4951673021f0662f3005856a3 -SIZE (KDE/applications/19.12.1/akonadi-19.12.1.tar.xz) = 1579612 +TIMESTAMP = 1580852990 +SHA256 (KDE/applications/19.12.2/akonadi-19.12.2.tar.xz) = b8c8962116c61f60da6eabf5f2ef7837844877df26306d07d49e5c6c20d660ac +SIZE (KDE/applications/19.12.2/akonadi-19.12.2.tar.xz) = 1582656 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 525395) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373833 -SHA256 (KDE/applications/19.12.1/akonadi-calendar-tools-19.12.1.tar.xz) = 0650e12b2155b08cf70cc4620f9ea3868bad66affc4668775cd050539eacbec9 -SIZE (KDE/applications/19.12.1/akonadi-calendar-tools-19.12.1.tar.xz) = 223748 +TIMESTAMP = 1580852926 +SHA256 (KDE/applications/19.12.2/akonadi-calendar-tools-19.12.2.tar.xz) = 486371fa2402768c6c07f48f5f37584a01d4a25466e04c0430b32960a1ec49e8 +SIZE (KDE/applications/19.12.2/akonadi-calendar-tools-19.12.2.tar.xz) = 224032 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 525395) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373833 -SHA256 (KDE/applications/19.12.1/akonadi-import-wizard-19.12.1.tar.xz) = a58d29407eebd9ce895d38b121cb034f92c81b85afd1b8da9c70cc3d7dc29b3d -SIZE (KDE/applications/19.12.1/akonadi-import-wizard-19.12.1.tar.xz) = 439264 +TIMESTAMP = 1580852917 +SHA256 (KDE/applications/19.12.2/akonadi-import-wizard-19.12.2.tar.xz) = 8c0891bd20b533582a29043ff41f086775b5c46a73f6f4ed6405f4b1745da61c +SIZE (KDE/applications/19.12.2/akonadi-import-wizard-19.12.2.tar.xz) = 438524 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 525395) +++ head/deskutils/akonadiconsole/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373834 -SHA256 (KDE/applications/19.12.1/akonadiconsole-19.12.1.tar.xz) = e6a755875b9ef9db4f022888b77bd011a5edf2c21667074b971d15818659dd5b -SIZE (KDE/applications/19.12.1/akonadiconsole-19.12.1.tar.xz) = 194176 +TIMESTAMP = 1580852916 +SHA256 (KDE/applications/19.12.2/akonadiconsole-19.12.2.tar.xz) = c889c1bd249c92e98f967420937103486ec66dd4b9329cc410c9b0b241ffc17d +SIZE (KDE/applications/19.12.2/akonadiconsole-19.12.2.tar.xz) = 193792 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 525395) +++ head/deskutils/akregator/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373835 -SHA256 (KDE/applications/19.12.1/akregator-19.12.1.tar.xz) = e6f00777059e5b9fe2458a7e4248a59652f08d836518bf0395aaf2ed77ef4d52 -SIZE (KDE/applications/19.12.1/akregator-19.12.1.tar.xz) = 2194456 +TIMESTAMP = 1580852925 +SHA256 (KDE/applications/19.12.2/akregator-19.12.2.tar.xz) = faea27f363b7eade806515f9426cb794d6af7ea3bc4b5def6d56d34936402b79 +SIZE (KDE/applications/19.12.2/akregator-19.12.2.tar.xz) = 2192676 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 525395) +++ head/deskutils/grantlee-editor/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373835 -SHA256 (KDE/applications/19.12.1/grantlee-editor-19.12.1.tar.xz) = 63a2571369aff6cc648b064bcbc32227eede19475cad8937cfc454984423ea0c -SIZE (KDE/applications/19.12.1/grantlee-editor-19.12.1.tar.xz) = 111644 +TIMESTAMP = 1580852919 +SHA256 (KDE/applications/19.12.2/grantlee-editor-19.12.2.tar.xz) = 1d154df004257121c31d7622fe8e74a3aeae2c245861ccda330b9147ef00da5f +SIZE (KDE/applications/19.12.2/grantlee-editor-19.12.2.tar.xz) = 111924 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 525395) +++ head/deskutils/grantleetheme/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373836 -SHA256 (KDE/applications/19.12.1/grantleetheme-19.12.1.tar.xz) = f23aaf86ff8c630a2f3498b3eebcd6533b01ee806dcf4130df7dd55e3b890ddd -SIZE (KDE/applications/19.12.1/grantleetheme-19.12.1.tar.xz) = 55232 +TIMESTAMP = 1580852925 +SHA256 (KDE/applications/19.12.2/grantleetheme-19.12.2.tar.xz) = 8670b847249254181c817f7d40c3d849ed3b7c852fb0ba2bec8f4b01f8bfe50a +SIZE (KDE/applications/19.12.2/grantleetheme-19.12.2.tar.xz) = 55156 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 525395) +++ head/deskutils/kaddressbook/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373837 -SHA256 (KDE/applications/19.12.1/kaddressbook-19.12.1.tar.xz) = 32e19973015151ac32fe7ae1f0a17e82e2834ce69ba052f31e8d197930f0be5c -SIZE (KDE/applications/19.12.1/kaddressbook-19.12.1.tar.xz) = 2399260 +TIMESTAMP = 1580852923 +SHA256 (KDE/applications/19.12.2/kaddressbook-19.12.2.tar.xz) = da588c0662e2df8c45f1105de2037bb90f063f62bcb4b939dbd43950d7ad984e +SIZE (KDE/applications/19.12.2/kaddressbook-19.12.2.tar.xz) = 2419276 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 525395) +++ head/deskutils/kalarm/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373837 -SHA256 (KDE/applications/19.12.1/kalarm-19.12.1.tar.xz) = 06a8d9544d1107ac3f2e8c4c2e9604055706dcb6b7f3b0267f0d4cb45f1caf35 -SIZE (KDE/applications/19.12.1/kalarm-19.12.1.tar.xz) = 1836264 +TIMESTAMP = 1580852923 +SHA256 (KDE/applications/19.12.2/kalarm-19.12.2.tar.xz) = fcbf0111e060afa86530d2221549792d6751fa1d0404457a49009e86663d4122 +SIZE (KDE/applications/19.12.2/kalarm-19.12.2.tar.xz) = 1835088 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 525395) +++ head/deskutils/kcharselect/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373838 -SHA256 (KDE/applications/19.12.1/kcharselect-19.12.1.tar.xz) = 5f23458974d6fa66c49d434937e7a7a31cc94e46616db866b35316025bb84b0c -SIZE (KDE/applications/19.12.1/kcharselect-19.12.1.tar.xz) = 335132 +TIMESTAMP = 1580852927 +SHA256 (KDE/applications/19.12.2/kcharselect-19.12.2.tar.xz) = 6d680217058b8d87306c298d28e0851d7d0bb88450c59935eb4d1f6c87ba92a7 +SIZE (KDE/applications/19.12.2/kcharselect-19.12.2.tar.xz) = 335312 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 525395) +++ head/deskutils/kdepim-addons/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373839 -SHA256 (KDE/applications/19.12.1/kdepim-addons-19.12.1.tar.xz) = 091e3fd007ad54cd1dcd4e2d51c4ac883a2d9e365ca78592aa91a37835c4dcf5 -SIZE (KDE/applications/19.12.1/kdepim-addons-19.12.1.tar.xz) = 2108956 +TIMESTAMP = 1580852929 +SHA256 (KDE/applications/19.12.2/kdepim-addons-19.12.2.tar.xz) = 98f933e8361237a8c06b4a783f4532e528de998f7cb185d3fc3a41fa57529670 +SIZE (KDE/applications/19.12.2/kdepim-addons-19.12.2.tar.xz) = 2111224 Index: head/deskutils/kdepim-addons/pkg-plist =================================================================== --- head/deskutils/kdepim-addons/pkg-plist (revision 525395) +++ head/deskutils/kdepim-addons/pkg-plist (revision 525396) @@ -1,992 +1,1006 @@ bin/akonadimailreader bin/coisceim bin/etm_usage bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libcoisceim_widget.so.5 lib/libcoisceim_widget.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.5 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookimportexportlibprivate.so.5 lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.5 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.5 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/coisceimpart.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/nylasmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antispamplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/kmail/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_expertplugin.so %%QT_PLUGINDIR%%/kmail/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/kmail/kmail_logactivitiesplugin.so %%QT_PLUGINDIR%%/kmail/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/kmail/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/korg_datenums.so %%QT_PLUGINDIR%%/korg_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/libksieve/regexpeditorlineeditplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_PLUGINDIR%%/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_donottrackplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/applications/org.kde.akonadimailreader.desktop share/config.kcfg/mailreader.kcfg share/kconf_update/languagetool_kmail.upd share/kconf_update/webengineurlinterceptoradblock.upd share/kservices5/coisceimpart.desktop share/kservices5/korganizer/datenums.desktop share/kservices5/korganizer/picoftheday.desktop share/kservices5/korganizer/thisdayinhistory.desktop share/kxmlgui5/akonadimailreader/akonadimailreaderui.rc share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/mailreader.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/mailreader.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/mailreader.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/mailreader.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/mailreader.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/mailreader.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/mailreader.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/mailreader.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/mailreader.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/mailreader.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/mailreader.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/mailreader.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/mailreader.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/mailreader.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/mailreader.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/mailreader.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/mailreader.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo +share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo +share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo +share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/mailreader.mo +share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo +share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/ia/LC_MESSAGES/messageviewerplugins.mo +share/locale/ia/LC_MESSAGES/pimeventsplugin.mo +share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/mailreader.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/mailreader.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/mailreader.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/mailreader.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/mailreader.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/mailreader.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/pimeventsplugin.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/mailreader.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/mailreader.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/mailreader.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/mailreader.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/mailreader.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/mailreader.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/mailreader.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/mailreader.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/mailreader.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/mailreader.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/mailreader.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/mailreader.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/mailreader.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/mailreader.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/mailreader.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/mailreader.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/mailreader.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/mailreader.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/mailreader.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/mailreader.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/mailreader.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/messageviewerplugins/externalscriptexample.desktop share/qlogging-categories5/kdepim-addons.categories share/qlogging-categories5/kdepim-addons.renamecategories share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 525395) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373839 -SHA256 (KDE/applications/19.12.1/kdepim-apps-libs-19.12.1.tar.xz) = 4ff633c98cd128f2409cb78c193dd72f1078ae29eba8db3e304248a019e17e43 -SIZE (KDE/applications/19.12.1/kdepim-apps-libs-19.12.1.tar.xz) = 82524 +TIMESTAMP = 1580852928 +SHA256 (KDE/applications/19.12.2/kdepim-apps-libs-19.12.2.tar.xz) = e3d48aa2cb4d9bae6720ddd2de9c9f2874fb84b8ea47a3aea9913c5f75bee5f9 +SIZE (KDE/applications/19.12.2/kdepim-apps-libs-19.12.2.tar.xz) = 83360 Index: head/deskutils/kdepim-apps-libs/pkg-plist =================================================================== --- head/deskutils/kdepim-apps-libs/pkg-plist (revision 525395) +++ head/deskutils/kdepim-apps-libs/pkg-plist (revision 525396) @@ -1,188 +1,189 @@ share/qlogging-categories5/kdepim-apps-lib.categories share/qlogging-categories5/kdepim-apps-lib.renamecategories include/KF5/FollowupReminder/FollowUpReminderInfo include/KF5/FollowupReminder/FollowUpReminderUtil include/KF5/KAddressBookImportExport/KAddressBookContactSelectionDialog include/KF5/KAddressBookImportExport/KAddressBookContactSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookExportSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookImportExportContactList include/KF5/KAddressBookImportExport/KAddressBookImportExportPlugin include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginInterface include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginManager include/KF5/KaddressbookGrantlee/GrantleeContactFormatter include/KF5/KaddressbookGrantlee/GrantleeContactGroupFormatter include/KF5/KaddressbookGrantlee/GrantleeContactViewer include/KF5/KaddressbookGrantlee/GrantleePrint include/KF5/KdepimDBusInterfaces/ReminderClient include/KF5/KdepimDBusInterfaces/UriHandler include/KF5/SendLater/SendLaterDialog include/KF5/SendLater/SendLaterInfo include/KF5/SendLater/SendLaterUtil include/KF5/followupreminder/followupreminder_export.h include/KF5/followupreminder/followupreminderagentsettings.h include/KF5/followupreminder/followupreminderinfo.h include/KF5/followupreminder/followupreminderutil.h include/KF5/followupreminder_version.h include/KF5/kaddressbookgrantlee/grantleecontactformatter.h include/KF5/kaddressbookgrantlee/grantleecontactgroupformatter.h include/KF5/kaddressbookgrantlee/grantleecontactviewer.h include/KF5/kaddressbookgrantlee/grantleeprint.h include/KF5/kaddressbookgrantlee/kaddressbook_grantlee_export.h include/KF5/kaddressbookgrantlee_version.h include/KF5/kaddressbookimportexport/kaddressbook_importexport_export.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectiondialog.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookexportselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactfields.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactlist.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugin.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugininterface.h include/KF5/kaddressbookimportexport/kaddressbookimportexportpluginmanager.h include/KF5/kaddressbookimportexport_version.h include/KF5/kdepimdbusinterfaces/kdepimdbusinterfaces_export.h include/KF5/kdepimdbusinterfaces/reminderclient.h include/KF5/kdepimdbusinterfaces/urihandler.h include/KF5/kdepimdbusinterfaces_version.h include/KF5/sendlater/sendlater_export.h include/KF5/sendlater/sendlateragentsettings.h include/KF5/sendlater/sendlaterdialog.h include/KF5/sendlater/sendlaterinfo.h include/KF5/sendlater/sendlaterutil.h include/KF5/sendlater_version.h lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfig.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfigVersion.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfig.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfigVersion.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfig.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfigVersion.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfig.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfigVersion.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets.cmake lib/cmake/KF5SendLater/KF5SendLaterConfig.cmake lib/cmake/KF5SendLater/KF5SendLaterConfigVersion.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets.cmake lib/libKF5FollowupReminder.so lib/libKF5FollowupReminder.so.5 lib/libKF5FollowupReminder.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookGrantlee.so lib/libKF5KaddressbookGrantlee.so.5 lib/libKF5KaddressbookGrantlee.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookImportExport.so lib/libKF5KaddressbookImportExport.so.5 lib/libKF5KaddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KdepimDBusInterfaces.so lib/libKF5KdepimDBusInterfaces.so.5 lib/libKF5KdepimDBusInterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5SendLater.so lib/libKF5SendLater.so.5 lib/libKF5SendLater.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_FollowupReminder.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookGrantlee.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookImportExport.pri %%QT_MKSPECDIR%%/modules/qt_KdepimDBusInterfaces.pri %%QT_MKSPECDIR%%/modules/qt_SendLater.pri share/locale/ar/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ar/LC_MESSAGES/libsendlater.mo share/locale/bs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/bs/LC_MESSAGES/libsendlater.mo share/locale/ca/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca/LC_MESSAGES/libsendlater.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca@valencia/LC_MESSAGES/libsendlater.mo share/locale/cs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/cs/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/cs/LC_MESSAGES/libsendlater.mo share/locale/da/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/da/LC_MESSAGES/libsendlater.mo share/locale/de/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/de/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/de/LC_MESSAGES/libsendlater.mo share/locale/el/LC_MESSAGES/libsendlater.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/en_GB/LC_MESSAGES/libsendlater.mo share/locale/es/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/es/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/es/LC_MESSAGES/libsendlater.mo share/locale/et/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/et/LC_MESSAGES/libsendlater.mo share/locale/fi/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fi/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fi/LC_MESSAGES/libsendlater.mo share/locale/fr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fr/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fr/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/gl/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/hu/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/hu/LC_MESSAGES/libsendlater.mo share/locale/ia/LC_MESSAGES/libkaddressbookgrantlee.mo +share/locale/ia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ia/LC_MESSAGES/libsendlater.mo share/locale/it/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/it/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/it/LC_MESSAGES/libsendlater.mo share/locale/ja/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ja/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ja/LC_MESSAGES/libsendlater.mo share/locale/kk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/kk/LC_MESSAGES/libsendlater.mo share/locale/ko/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ko/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ko/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/lt/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nb/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nb/LC_MESSAGES/libsendlater.mo share/locale/nds/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nds/LC_MESSAGES/libsendlater.mo share/locale/nl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nl/LC_MESSAGES/libsendlater.mo share/locale/pl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pl/LC_MESSAGES/libsendlater.mo share/locale/pt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt/LC_MESSAGES/libsendlater.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt_BR/LC_MESSAGES/libsendlater.mo share/locale/ro/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ro/LC_MESSAGES/libsendlater.mo share/locale/ru/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ru/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ru/LC_MESSAGES/libsendlater.mo share/locale/sk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sk/LC_MESSAGES/libsendlater.mo share/locale/sl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sl/LC_MESSAGES/libsendlater.mo share/locale/sr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sr/LC_MESSAGES/libsendlater.mo share/locale/sv/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sv/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sv/LC_MESSAGES/libsendlater.mo share/locale/tr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/tr/LC_MESSAGES/libsendlater.mo share/locale/ug/LC_MESSAGES/libsendlater.mo share/locale/uk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/uk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/uk/LC_MESSAGES/libsendlater.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_CN/LC_MESSAGES/libsendlater.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_TW/LC_MESSAGES/libsendlater.mo Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 525395) +++ head/deskutils/kdepim-runtime/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373840 -SHA256 (KDE/applications/19.12.1/kdepim-runtime-19.12.1.tar.xz) = 31b1fe9778723079048d0fe1750028fd3f5f5b467ee10dcfa7fab37202a6ca39 -SIZE (KDE/applications/19.12.1/kdepim-runtime-19.12.1.tar.xz) = 1739128 +TIMESTAMP = 1580852927 +SHA256 (KDE/applications/19.12.2/kdepim-runtime-19.12.2.tar.xz) = f3efe4627a5c73e0072264250dd3ec910c732c0f4c87eaab7593eb239a164129 +SIZE (KDE/applications/19.12.2/kdepim-runtime-19.12.2.tar.xz) = 1737572 Index: head/deskutils/kdepim-runtime/pkg-plist =================================================================== --- head/deskutils/kdepim-runtime/pkg-plist (revision 525395) +++ head/deskutils/kdepim-runtime/pkg-plist (revision 525396) @@ -1,1721 +1,1730 @@ 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_googlecalendar_resource bin/akonadi_googlecontacts_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 share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories 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%%/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/googlecalendarresource.desktop share/akonadi/agents/googlecontactsresource.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_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/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_googlecalendar_resource.mo share/locale/ar/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/bs/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ca/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/cs/LC_MESSAGES/akonadi_googlecontacts_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_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_googlecalendar_resource.mo share/locale/da/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/de/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/el/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/es/LC_MESSAGES/akonadi_googlecontacts_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_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_googlecalendar_resource.mo share/locale/et/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/fi/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/fr/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/ga/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/gl/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/hu/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo +share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ia/LC_MESSAGES/akonadi_googlecontacts_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/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_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/it/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/ja/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/kk/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/km/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/ko/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/lt/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/lv/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/mr/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/nb/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/nds/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nl/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pl/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pt/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/ru/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sk/LC_MESSAGES/akonadi_googlecontacts_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_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sl/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/sr/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sv/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/tr/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/ug/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/uk/LC_MESSAGES/akonadi_googlecontacts_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_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_googlecontacts_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_googlecalendar_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_googlecontacts_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 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 525395) +++ head/deskutils/keditbookmarks/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373841 -SHA256 (KDE/applications/19.12.1/keditbookmarks-19.12.1.tar.xz) = 11a950d53bc6e0b50d62a3ced2b74eaaa85c595b845ca8f2dcfa65e69d407fb0 -SIZE (KDE/applications/19.12.1/keditbookmarks-19.12.1.tar.xz) = 187688 +TIMESTAMP = 1580852928 +SHA256 (KDE/applications/19.12.2/keditbookmarks-19.12.2.tar.xz) = abace2bbcf1e26b59fc4e5207ca91c851490b6e1fbe806594f2cf0fef1eea4d8 +SIZE (KDE/applications/19.12.2/keditbookmarks-19.12.2.tar.xz) = 188168 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 525395) +++ head/deskutils/kfind/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373841 -SHA256 (KDE/applications/19.12.1/kfind-19.12.1.tar.xz) = e9f5defa7796bbb54208b28af1fa76333a38e743d7febb8dd14739cf00d376eb -SIZE (KDE/applications/19.12.1/kfind-19.12.1.tar.xz) = 270840 +TIMESTAMP = 1580852915 +SHA256 (KDE/applications/19.12.2/kfind-19.12.2.tar.xz) = 4728bf17b31dffb34b3b9fb2aa90b4e09a34d8ea1f54b96a074c0d8acd79f6c4 +SIZE (KDE/applications/19.12.2/kfind-19.12.2.tar.xz) = 270752 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 525395) +++ head/deskutils/kmail/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373842 -SHA256 (KDE/applications/19.12.1/kmail-19.12.1.tar.xz) = a8fa4a604f8f88b91beebf0f3f9bb0ac7c040671bd75ab4478d8087a21cde40c -SIZE (KDE/applications/19.12.1/kmail-19.12.1.tar.xz) = 4711040 +TIMESTAMP = 1580852919 +SHA256 (KDE/applications/19.12.2/kmail-19.12.2.tar.xz) = 1168620b9571e29218332781cddd29e642cb05d3e186f6b294589e008a417025 +SIZE (KDE/applications/19.12.2/kmail-19.12.2.tar.xz) = 4707516 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 525395) +++ head/deskutils/kmail/pkg-plist (revision 525396) @@ -1,389 +1,392 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories share/qlogging-categories5/ktnefapps.categories share/qlogging-categories5/ktnefapps.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop share/applications/org.kde.kmail-refresh-settings.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/ca@valencia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/ia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/ia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo -share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/kmail-refresh-settings.mo +share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 525395) +++ head/deskutils/kmail-account-wizard/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373843 -SHA256 (KDE/applications/19.12.1/kmail-account-wizard-19.12.1.tar.xz) = e7cbda3946b19d01f5c3a722d2c104b7be072ab411f80437a25b8200d73e7cfa -SIZE (KDE/applications/19.12.1/kmail-account-wizard-19.12.1.tar.xz) = 158220 +TIMESTAMP = 1580852914 +SHA256 (KDE/applications/19.12.2/kmail-account-wizard-19.12.2.tar.xz) = 4c0fb780e42e8764496b168e1817fee72f78aff5e0de53a57f3af2e3ec4bf260 +SIZE (KDE/applications/19.12.2/kmail-account-wizard-19.12.2.tar.xz) = 159308 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 525395) +++ head/deskutils/knotes/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373843 -SHA256 (KDE/applications/19.12.1/knotes-19.12.1.tar.xz) = e89f22ee1a918553be5241e167bd038797391502cb98c5f260c96b25017dd235 -SIZE (KDE/applications/19.12.1/knotes-19.12.1.tar.xz) = 320672 +TIMESTAMP = 1580852924 +SHA256 (KDE/applications/19.12.2/knotes-19.12.2.tar.xz) = 5a9f7f61b17dcfb4e5622151a453b9f777825768cf3c9e5b26d6803647bb11f2 +SIZE (KDE/applications/19.12.2/knotes-19.12.2.tar.xz) = 320196 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 525395) +++ head/deskutils/kontact/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373844 -SHA256 (KDE/applications/19.12.1/kontact-19.12.1.tar.xz) = e9f7911154953d58be962bd392baf7d9c310e9e665adb0c875ed5a50dcfe5e01 -SIZE (KDE/applications/19.12.1/kontact-19.12.1.tar.xz) = 795456 +TIMESTAMP = 1580852915 +SHA256 (KDE/applications/19.12.2/kontact-19.12.2.tar.xz) = a14fcdf9a9f7fc12d68b5149237d78a3614c0921644dc7d03aa7ad975e69a812 +SIZE (KDE/applications/19.12.2/kontact-19.12.2.tar.xz) = 790568 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 525395) +++ head/deskutils/korganizer/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373845 -SHA256 (KDE/applications/19.12.1/korganizer-19.12.1.tar.xz) = 8bd84dfdca4f4738152c19d336b8c516f0c79fd888f0361005bc5d6359eeb117 -SIZE (KDE/applications/19.12.1/korganizer-19.12.1.tar.xz) = 2228744 +TIMESTAMP = 1580852921 +SHA256 (KDE/applications/19.12.2/korganizer-19.12.2.tar.xz) = d8c61b38ffc60157988e707b155d3bbdacbc2a5defc906cbe435e02d1b394c03 +SIZE (KDE/applications/19.12.2/korganizer-19.12.2.tar.xz) = 2225732 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 525395) +++ head/deskutils/kruler/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373845 -SHA256 (KDE/applications/19.12.1/kruler-19.12.1.tar.xz) = 0ecbc70561c0d973866c4bd27333a5ddc904b748fb3a64f66b6b06040b30d34a -SIZE (KDE/applications/19.12.1/kruler-19.12.1.tar.xz) = 251136 +TIMESTAMP = 1580852917 +SHA256 (KDE/applications/19.12.2/kruler-19.12.2.tar.xz) = 11ac4c297f1db147f17aa6371868424ee8665b2114463ce93d4c204d72d03b2c +SIZE (KDE/applications/19.12.2/kruler-19.12.2.tar.xz) = 250384 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 525395) +++ head/deskutils/libkdepim/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373846 -SHA256 (KDE/applications/19.12.1/libkdepim-19.12.1.tar.xz) = 1d626a959a0f9fcb24c4e01c553126d40314c789db9bc80d6b52f2bb75e233cd -SIZE (KDE/applications/19.12.1/libkdepim-19.12.1.tar.xz) = 333720 +TIMESTAMP = 1580852918 +SHA256 (KDE/applications/19.12.2/libkdepim-19.12.2.tar.xz) = bd8bbd89afb3f50f2e000eb5175ac5112189b7b3939fd72194af6f0616035667 +SIZE (KDE/applications/19.12.2/libkdepim-19.12.2.tar.xz) = 332824 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 525395) +++ head/deskutils/mbox-importer/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373847 -SHA256 (KDE/applications/19.12.1/mbox-importer-19.12.1.tar.xz) = 04dd6220192095d0f7befb368b9d96a321acac7af43b3575faf25ae89d17b5f4 -SIZE (KDE/applications/19.12.1/mbox-importer-19.12.1.tar.xz) = 33328 +TIMESTAMP = 1580852921 +SHA256 (KDE/applications/19.12.2/mbox-importer-19.12.2.tar.xz) = 94ab36df72f8fb38c5b6ec140b189898e8e9a8604c24f244cfcc9fb29c582807 +SIZE (KDE/applications/19.12.2/mbox-importer-19.12.2.tar.xz) = 33624 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 525395) +++ head/deskutils/pim-data-exporter/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373847 -SHA256 (KDE/applications/19.12.1/pim-data-exporter-19.12.1.tar.xz) = 3f650c1c221826079d7c739e4070e295a7a1b1156f75e8e3100b06f878efed12 -SIZE (KDE/applications/19.12.1/pim-data-exporter-19.12.1.tar.xz) = 205616 +TIMESTAMP = 1580852922 +SHA256 (KDE/applications/19.12.2/pim-data-exporter-19.12.2.tar.xz) = 3335571c34d30201306bcad0bbbdb398be868f2e606bd7d75f3be2688b9f1286 +SIZE (KDE/applications/19.12.2/pim-data-exporter-19.12.2.tar.xz) = 205416 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 525395) +++ head/deskutils/pim-sieve-editor/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373848 -SHA256 (KDE/applications/19.12.1/pim-sieve-editor-19.12.1.tar.xz) = 3fdca7147c581dce4a014dc2d30bd7e6616c0559654cf9fee68e9292fd6ef037 -SIZE (KDE/applications/19.12.1/pim-sieve-editor-19.12.1.tar.xz) = 450896 +TIMESTAMP = 1580852920 +SHA256 (KDE/applications/19.12.2/pim-sieve-editor-19.12.2.tar.xz) = 06169b9908354e1aef1bc79bb8905756291702e233d283c6d823ae3c061b6ed5 +SIZE (KDE/applications/19.12.2/pim-sieve-editor-19.12.2.tar.xz) = 451000 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 525395) +++ head/devel/cervisia/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373849 -SHA256 (KDE/applications/19.12.1/cervisia-19.12.1.tar.xz) = 2a7d32ac0c1460c135397cedec177db8eb99117b53ec2c9652763b0e90184188 -SIZE (KDE/applications/19.12.1/cervisia-19.12.1.tar.xz) = 1896352 +TIMESTAMP = 1580852989 +SHA256 (KDE/applications/19.12.2/cervisia-19.12.2.tar.xz) = 64edfaa9e45a209418b5611bbeedacd48742e20d34009a4b698c006ffe8fe3b6 +SIZE (KDE/applications/19.12.2/cervisia-19.12.2.tar.xz) = 1893948 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 525395) +++ head/devel/dolphin-plugins/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373849 -SHA256 (KDE/applications/19.12.1/dolphin-plugins-19.12.1.tar.xz) = 9392571a7004c08aac02dcc6453f58b6d0de4716b7cd61776f78d9b1783c60e0 -SIZE (KDE/applications/19.12.1/dolphin-plugins-19.12.1.tar.xz) = 194676 +TIMESTAMP = 1580852985 +SHA256 (KDE/applications/19.12.2/dolphin-plugins-19.12.2.tar.xz) = a8ae0114554f906daad4da76d11da24706faa534894194087b085eb30ffbe480 +SIZE (KDE/applications/19.12.2/dolphin-plugins-19.12.2.tar.xz) = 195884 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 525395) +++ head/devel/kapptemplate/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373850 -SHA256 (KDE/applications/19.12.1/kapptemplate-19.12.1.tar.xz) = b2fc583125aae1968c0342063a6cfcea2dbeff21e0ef505a021b689ed3a34085 -SIZE (KDE/applications/19.12.1/kapptemplate-19.12.1.tar.xz) = 316820 +TIMESTAMP = 1580852989 +SHA256 (KDE/applications/19.12.2/kapptemplate-19.12.2.tar.xz) = daf0639403113d9335309189d85c49c478e48fe9e78f92954e2c0442def498d5 +SIZE (KDE/applications/19.12.2/kapptemplate-19.12.2.tar.xz) = 316848 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 525395) +++ head/devel/kcachegrind/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373851 -SHA256 (KDE/applications/19.12.1/kcachegrind-19.12.1.tar.xz) = 210e04441519c47d103871e52d98351abc41a04b9385c577a7839eec31a2f400 -SIZE (KDE/applications/19.12.1/kcachegrind-19.12.1.tar.xz) = 810148 +TIMESTAMP = 1580852986 +SHA256 (KDE/applications/19.12.2/kcachegrind-19.12.2.tar.xz) = 514f21080c8c138566e7ab66b84dabd601a0058dd97f0b4d00002578430d0349 +SIZE (KDE/applications/19.12.2/kcachegrind-19.12.2.tar.xz) = 811360 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 525395) +++ head/devel/kde-dev-scripts/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373851 -SHA256 (KDE/applications/19.12.1/kde-dev-scripts-19.12.1.tar.xz) = c2965dee649abea0791774ae264230dbe673af07eb0bd85bf3e8c7c6a739cea5 -SIZE (KDE/applications/19.12.1/kde-dev-scripts-19.12.1.tar.xz) = 378876 +TIMESTAMP = 1580852982 +SHA256 (KDE/applications/19.12.2/kde-dev-scripts-19.12.2.tar.xz) = eabfa6ab1f251f3ad80ca9536e339189e8055308661abc6a683a368f65f135cb +SIZE (KDE/applications/19.12.2/kde-dev-scripts-19.12.2.tar.xz) = 378784 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 525395) +++ head/devel/kde-dev-utils/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373852 -SHA256 (KDE/applications/19.12.1/kde-dev-utils-19.12.1.tar.xz) = 94f983c9b49ed3bc59b20849b23e7c26b64b7b303fbd86147c4bc823f87cda7d -SIZE (KDE/applications/19.12.1/kde-dev-utils-19.12.1.tar.xz) = 64420 +TIMESTAMP = 1580852985 +SHA256 (KDE/applications/19.12.2/kde-dev-utils-19.12.2.tar.xz) = 14d4d1f1a95042ffdc7da7aaf606d85f9581aedfe9181599d05f7b02476d7d2f +SIZE (KDE/applications/19.12.2/kde-dev-utils-19.12.2.tar.xz) = 64300 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 525395) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373852 -SHA256 (KDE/applications/19.12.1/kdesdk-thumbnailers-19.12.1.tar.xz) = 77f64ddb075407f781cf2d658af760840f9427cc171e8ec15805f47105da0e56 -SIZE (KDE/applications/19.12.1/kdesdk-thumbnailers-19.12.1.tar.xz) = 17548 +TIMESTAMP = 1580852987 +SHA256 (KDE/applications/19.12.2/kdesdk-thumbnailers-19.12.2.tar.xz) = 5d2f521e7c34f0699cc2a1ff647d81eb3f54e31bdede1f2fbd2d00c9e5772728 +SIZE (KDE/applications/19.12.2/kdesdk-thumbnailers-19.12.2.tar.xz) = 17532 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 525395) +++ head/devel/kio-extras/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373853 -SHA256 (KDE/applications/19.12.1/kio-extras-19.12.1.tar.xz) = 79b3735510c3c8da9b3e019ee5a54b115f85bb8d89f1c04dbbf16dde3007e7b6 -SIZE (KDE/applications/19.12.1/kio-extras-19.12.1.tar.xz) = 579404 +TIMESTAMP = 1580852984 +SHA256 (KDE/applications/19.12.2/kio-extras-19.12.2.tar.xz) = de6532d1298b1b5c32295292b5b7bf418bf937887d174b80cef3f3aadde15882 +SIZE (KDE/applications/19.12.2/kio-extras-19.12.2.tar.xz) = 579788 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 525395) +++ head/devel/lokalize/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373854 -SHA256 (KDE/applications/19.12.1/lokalize-19.12.1.tar.xz) = ee29cff9a513d68cde72e6ace0f893de77be5cb3fe56b4b6e0d1fa5b808b424c -SIZE (KDE/applications/19.12.1/lokalize-19.12.1.tar.xz) = 1701260 +TIMESTAMP = 1580852987 +SHA256 (KDE/applications/19.12.2/lokalize-19.12.2.tar.xz) = bb1b9ba0a3ee8bb2e2dc4997398e8e78bd86043adbb8dc4f1d4aa49f1bbaea94 +SIZE (KDE/applications/19.12.2/lokalize-19.12.2.tar.xz) = 1700824 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 525395) +++ head/devel/poxml/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373855 -SHA256 (KDE/applications/19.12.1/poxml-19.12.1.tar.xz) = f02aa4d1f7de8fb38921fe73076b3e905185979d9b75ff6345efaca8aad0ebb9 -SIZE (KDE/applications/19.12.1/poxml-19.12.1.tar.xz) = 43364 +TIMESTAMP = 1580852988 +SHA256 (KDE/applications/19.12.2/poxml-19.12.2.tar.xz) = 795ed4fdcd300a7d4d559d34cefc324cfd75f14adb9b7192638076599aebd282 +SIZE (KDE/applications/19.12.2/poxml-19.12.2.tar.xz) = 43276 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 525395) +++ head/devel/umbrello/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373856 -SHA256 (KDE/applications/19.12.1/umbrello-19.12.1.tar.xz) = 077a1b5a3dfe15d37f03ee97ca5b40a1b8e7e0f2305df2f16a966861cc79e0d6 -SIZE (KDE/applications/19.12.1/umbrello-19.12.1.tar.xz) = 3798332 +TIMESTAMP = 1580852983 +SHA256 (KDE/applications/19.12.2/umbrello-19.12.2.tar.xz) = 689236ed6bd425d275854b86a948dda2f3d696d87379e78fb87d2af4aaefdffb +SIZE (KDE/applications/19.12.2/umbrello-19.12.2.tar.xz) = 3794060 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 525395) +++ head/editors/kate/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373856 -SHA256 (KDE/applications/19.12.1/kate-19.12.1.tar.xz) = 9d2401907e5b163d5af0af5b4d28383896ef709bcde7f6ee2234e1a3adc28a47 -SIZE (KDE/applications/19.12.1/kate-19.12.1.tar.xz) = 5697944 +TIMESTAMP = 1580852944 +SHA256 (KDE/applications/19.12.2/kate-19.12.2.tar.xz) = b21ae8b2a5c3a5e1282d44ca5524fca56be809525d3d34660e5604c4ecc608a5 +SIZE (KDE/applications/19.12.2/kate-19.12.2.tar.xz) = 5733072 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 525395) +++ head/editors/kate/pkg-plist (revision 525396) @@ -1,1246 +1,1251 @@ 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/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/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/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.svgz +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/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/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/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/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/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/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/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/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/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/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/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/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/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/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/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/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/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/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/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/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/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/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/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/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-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/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/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/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/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/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/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/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/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/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/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/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/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/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/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/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/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/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/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/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/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/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 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 525395) +++ head/games/blinken/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373857 -SHA256 (KDE/applications/19.12.1/blinken-19.12.1.tar.xz) = 4a1f7c782dc236d963bc1de11b7dcbc79012d47e3e6cc5ce692ca91ecb788388 -SIZE (KDE/applications/19.12.1/blinken-19.12.1.tar.xz) = 2820888 +TIMESTAMP = 1580852876 +SHA256 (KDE/applications/19.12.2/blinken-19.12.2.tar.xz) = 5fbe805c15e128f4d5183af54582001e8a175a9e2f84c9eec9ca06a350bc3a21 +SIZE (KDE/applications/19.12.2/blinken-19.12.2.tar.xz) = 2821680 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 525395) +++ head/games/bomber/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373858 -SHA256 (KDE/applications/19.12.1/bomber-19.12.1.tar.xz) = f0007dae42d6586ab6c9da5775c835fb515cbf180698a1453a90efd2ba8f2795 -SIZE (KDE/applications/19.12.1/bomber-19.12.1.tar.xz) = 821688 +TIMESTAMP = 1580852870 +SHA256 (KDE/applications/19.12.2/bomber-19.12.2.tar.xz) = 5f85fe8bed27eb56c667567a69fdf32263843d11785344fd04180e4ac8bf9d62 +SIZE (KDE/applications/19.12.2/bomber-19.12.2.tar.xz) = 821388 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 525395) +++ head/games/bovo/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373858 -SHA256 (KDE/applications/19.12.1/bovo-19.12.1.tar.xz) = 54cee2f71e9736057187c8121313b9c73f6cadd0fa463ea2a29cf0e86969d5ae -SIZE (KDE/applications/19.12.1/bovo-19.12.1.tar.xz) = 200264 +TIMESTAMP = 1580852865 +SHA256 (KDE/applications/19.12.2/bovo-19.12.2.tar.xz) = 9659efdfa70e9235262fc9cb85b7e31edfc998658497a51f4e13b035b9a0b2b5 +SIZE (KDE/applications/19.12.2/bovo-19.12.2.tar.xz) = 200216 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 525395) +++ head/games/granatier/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373859 -SHA256 (KDE/applications/19.12.1/granatier-19.12.1.tar.xz) = 98051d292dd5a3ba3f873e8bc2bed6cdae291c9516b9cb21a64703b3135baa7f -SIZE (KDE/applications/19.12.1/granatier-19.12.1.tar.xz) = 1942664 +TIMESTAMP = 1580852879 +SHA256 (KDE/applications/19.12.2/granatier-19.12.2.tar.xz) = f51637920ddff1e7f6b74eb71c58f40e934ff666cbf9b8f5932cb8bd51410d66 +SIZE (KDE/applications/19.12.2/granatier-19.12.2.tar.xz) = 1945008 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 525395) +++ head/games/kanagram/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373860 -SHA256 (KDE/applications/19.12.1/kanagram-19.12.1.tar.xz) = 2127eada150ee3f023948b637890aa93d602874fd6c037c4bd031886a12a2fdc -SIZE (KDE/applications/19.12.1/kanagram-19.12.1.tar.xz) = 8033552 +TIMESTAMP = 1580852882 +SHA256 (KDE/applications/19.12.2/kanagram-19.12.2.tar.xz) = e0a09188e33f91b69e70944680170cbfc2b00cec8f56f53ef55dbc2d07678ab9 +SIZE (KDE/applications/19.12.2/kanagram-19.12.2.tar.xz) = 8033684 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 525395) +++ head/games/kapman/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373860 -SHA256 (KDE/applications/19.12.1/kapman-19.12.1.tar.xz) = cd5bef40c51bc6ef635adab501acd2a40c2291c989c4ba3ef6e34a1cbebe4c49 -SIZE (KDE/applications/19.12.1/kapman-19.12.1.tar.xz) = 2527020 +TIMESTAMP = 1580852861 +SHA256 (KDE/applications/19.12.2/kapman-19.12.2.tar.xz) = f7ed0d0de6b40297574eb8cf0ab9a6d240de6fff10f02fa427d6b6a8b2604630 +SIZE (KDE/applications/19.12.2/kapman-19.12.2.tar.xz) = 2526672 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 525395) +++ head/games/katomic/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373861 -SHA256 (KDE/applications/19.12.1/katomic-19.12.1.tar.xz) = bc51424757434e905b5b611a6fa634147e533e375922c03f896a093fa61e57a3 -SIZE (KDE/applications/19.12.1/katomic-19.12.1.tar.xz) = 1423324 +TIMESTAMP = 1580852867 +SHA256 (KDE/applications/19.12.2/katomic-19.12.2.tar.xz) = c0ef0f5691c5335690af5f8d5456cccfca018a2710c5c5b814554f905ba4697f +SIZE (KDE/applications/19.12.2/katomic-19.12.2.tar.xz) = 1423212 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 525395) +++ head/games/kblackbox/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373862 -SHA256 (KDE/applications/19.12.1/kblackbox-19.12.1.tar.xz) = 57901d6bf56228691b6c6436ca2f60e62542854e80f9c4fda7a60362a216e1ed -SIZE (KDE/applications/19.12.1/kblackbox-19.12.1.tar.xz) = 447776 +TIMESTAMP = 1580852861 +SHA256 (KDE/applications/19.12.2/kblackbox-19.12.2.tar.xz) = 17cbf3e5ca147ca4fb19c55caa632382f5b8fc23a3581dffcfd8eb5fd0f538c5 +SIZE (KDE/applications/19.12.2/kblackbox-19.12.2.tar.xz) = 447116 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 525395) +++ head/games/kblocks/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373862 -SHA256 (KDE/applications/19.12.1/kblocks-19.12.1.tar.xz) = 1077477910d1dfff60f1abad7b1cf937daf1f3e3a5e8b18407b7e2809b2fc3d9 -SIZE (KDE/applications/19.12.1/kblocks-19.12.1.tar.xz) = 1908028 +TIMESTAMP = 1580852864 +SHA256 (KDE/applications/19.12.2/kblocks-19.12.2.tar.xz) = 343462d73ac17efb5c1fb5a6829c2ffef1ef3326304ba19bf4247b87249f2f08 +SIZE (KDE/applications/19.12.2/kblocks-19.12.2.tar.xz) = 1906060 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 525395) +++ head/games/kbounce/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373863 -SHA256 (KDE/applications/19.12.1/kbounce-19.12.1.tar.xz) = e9e1df6f2f57e102d95707b82b0aa582f9f1a6c3e395660b5faa33ef953e7fb3 -SIZE (KDE/applications/19.12.1/kbounce-19.12.1.tar.xz) = 3467728 +TIMESTAMP = 1580852858 +SHA256 (KDE/applications/19.12.2/kbounce-19.12.2.tar.xz) = 653aa7172075fceeb0fadf15df3dd3527d3e7ac7b44f68a5ead26fb903537a1c +SIZE (KDE/applications/19.12.2/kbounce-19.12.2.tar.xz) = 3467840 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 525395) +++ head/games/kbreakout/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373864 -SHA256 (KDE/applications/19.12.1/kbreakout-19.12.1.tar.xz) = 17475a5aa80f494876fb3b91d32df4c447417e79f4dd60d46f594cfab03f489f -SIZE (KDE/applications/19.12.1/kbreakout-19.12.1.tar.xz) = 2279624 +TIMESTAMP = 1580852878 +SHA256 (KDE/applications/19.12.2/kbreakout-19.12.2.tar.xz) = 36ec1e54fb791beb725ed524aae3de46b32dc3f3a4a70a7fab314a000ea44409 +SIZE (KDE/applications/19.12.2/kbreakout-19.12.2.tar.xz) = 2276848 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 525395) +++ head/games/kdiamond/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373864 -SHA256 (KDE/applications/19.12.1/kdiamond-19.12.1.tar.xz) = 4f7770138d16bb7b91920b7f3c7024a89ef35dc330a2ac929a2fa5d4ee12b982 -SIZE (KDE/applications/19.12.1/kdiamond-19.12.1.tar.xz) = 4694472 +TIMESTAMP = 1580852859 +SHA256 (KDE/applications/19.12.2/kdiamond-19.12.2.tar.xz) = b13372bd188e3dc2b516f0e9dc870631ece7920ade46bdf1065e4b978ed15b4b +SIZE (KDE/applications/19.12.2/kdiamond-19.12.2.tar.xz) = 4694440 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 525395) +++ head/games/kfourinline/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373865 -SHA256 (KDE/applications/19.12.1/kfourinline-19.12.1.tar.xz) = 76e31b59f1b31ddb755def377324d5fa5b5a4835f1f537a30632a028bf671a3e -SIZE (KDE/applications/19.12.1/kfourinline-19.12.1.tar.xz) = 638532 +TIMESTAMP = 1580852872 +SHA256 (KDE/applications/19.12.2/kfourinline-19.12.2.tar.xz) = fa2aa0e3e4a6eb13d5fef273bdf30ebc0206094d72101dcc2dccd86c07362442 +SIZE (KDE/applications/19.12.2/kfourinline-19.12.2.tar.xz) = 638824 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 525395) +++ head/games/kgoldrunner/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373866 -SHA256 (KDE/applications/19.12.1/kgoldrunner-19.12.1.tar.xz) = 1f2044656732ab7a72117139576201ca1701666d525c93b726473d4cd9aed29c -SIZE (KDE/applications/19.12.1/kgoldrunner-19.12.1.tar.xz) = 4430896 +TIMESTAMP = 1580852873 +SHA256 (KDE/applications/19.12.2/kgoldrunner-19.12.2.tar.xz) = 2a604d3d5fc15d7e07c98b0bf3515a721f130036bdecb0d8986b514dc06b3555 +SIZE (KDE/applications/19.12.2/kgoldrunner-19.12.2.tar.xz) = 4435576 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 525395) +++ head/games/khangman/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373866 -SHA256 (KDE/applications/19.12.1/khangman-19.12.1.tar.xz) = 42fa9d9a9a72fe4b14127b12d5b662d66c00c1899eeefba6102be95136333def -SIZE (KDE/applications/19.12.1/khangman-19.12.1.tar.xz) = 7113736 +TIMESTAMP = 1580852884 +SHA256 (KDE/applications/19.12.2/khangman-19.12.2.tar.xz) = 42b96c24ce21d6ab878c9871eb85b9c6cdfbcdfa7f9dfea4040679482880e389 +SIZE (KDE/applications/19.12.2/khangman-19.12.2.tar.xz) = 7122496 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 525395) +++ head/games/kigo/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373867 -SHA256 (KDE/applications/19.12.1/kigo-19.12.1.tar.xz) = 235df9bca39b02dac6648b408d71f7b0978604f8389ea7ef5aa8e0be87fbcf9d -SIZE (KDE/applications/19.12.1/kigo-19.12.1.tar.xz) = 5227076 +TIMESTAMP = 1580852865 +SHA256 (KDE/applications/19.12.2/kigo-19.12.2.tar.xz) = 9a31a8c2019c69c48641a181d046a6a20e2b6e9677dacfe3cf0bfbf1b45c8699 +SIZE (KDE/applications/19.12.2/kigo-19.12.2.tar.xz) = 5229364 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 525395) +++ head/games/killbots/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373868 -SHA256 (KDE/applications/19.12.1/killbots-19.12.1.tar.xz) = 3d524028e7df412e4306daf4e7b1aca803d26b65985fa429c98db10cffff010f -SIZE (KDE/applications/19.12.1/killbots-19.12.1.tar.xz) = 1175168 +TIMESTAMP = 1580852880 +SHA256 (KDE/applications/19.12.2/killbots-19.12.2.tar.xz) = 04d992859632480d60bee1d95e10684291d58bbff7612a629feb3d61ae77e7cb +SIZE (KDE/applications/19.12.2/killbots-19.12.2.tar.xz) = 1175312 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 525395) +++ head/games/kiriki/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373868 -SHA256 (KDE/applications/19.12.1/kiriki-19.12.1.tar.xz) = f3079b53ed45ec46def7a95b336d441dba18151cc77c88ef8ce2d02fcf1d6375 -SIZE (KDE/applications/19.12.1/kiriki-19.12.1.tar.xz) = 373564 +TIMESTAMP = 1580852857 +SHA256 (KDE/applications/19.12.2/kiriki-19.12.2.tar.xz) = 2758d1bcea8ae921ed802b7e8890558d4c24d2e05ce8fdc8f15d1c4109678f6a +SIZE (KDE/applications/19.12.2/kiriki-19.12.2.tar.xz) = 373524 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 525395) +++ head/games/kjumpingcube/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373869 -SHA256 (KDE/applications/19.12.1/kjumpingcube-19.12.1.tar.xz) = 3e4abd57d14dccc9b39669eebdab578fc865464b8a4309c3ab8103002edc2ff0 -SIZE (KDE/applications/19.12.1/kjumpingcube-19.12.1.tar.xz) = 289164 +TIMESTAMP = 1580852863 +SHA256 (KDE/applications/19.12.2/kjumpingcube-19.12.2.tar.xz) = b271ab4127d6bd59c32b1c795f2e5ad9f2ca8a4bc2cd3cb38db260d7707b98b7 +SIZE (KDE/applications/19.12.2/kjumpingcube-19.12.2.tar.xz) = 288260 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 525395) +++ head/games/klickety/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373870 -SHA256 (KDE/applications/19.12.1/klickety-19.12.1.tar.xz) = 66cba17839023b6fe563a461da8f52a3c8a2bd4949195da2d63d780547f2e159 -SIZE (KDE/applications/19.12.1/klickety-19.12.1.tar.xz) = 1390440 +TIMESTAMP = 1580852877 +SHA256 (KDE/applications/19.12.2/klickety-19.12.2.tar.xz) = 155c897feff887a67fb555104d2972466999abaa6bc21a4dec4bbe54885fe8cb +SIZE (KDE/applications/19.12.2/klickety-19.12.2.tar.xz) = 1389944 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 525395) +++ head/games/klines/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373870 -SHA256 (KDE/applications/19.12.1/klines-19.12.1.tar.xz) = 111c4e607c4ba434a8ff593e45ba669c78e6c1fbf9e4d77d0fc5d611e733604e -SIZE (KDE/applications/19.12.1/klines-19.12.1.tar.xz) = 1782308 +TIMESTAMP = 1580852870 +SHA256 (KDE/applications/19.12.2/klines-19.12.2.tar.xz) = 0bddc69ec8a3a1b56688aeea2867c61ea6752a8b2f82e7714af55fead2c74220 +SIZE (KDE/applications/19.12.2/klines-19.12.2.tar.xz) = 1781604 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 525395) +++ head/games/kmahjongg/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373871 -SHA256 (KDE/applications/19.12.1/kmahjongg-19.12.1.tar.xz) = e157f2e603c03128fb99ac4d0b4bc3ab2002a60960c780a3907e35bb8aee9bd3 -SIZE (KDE/applications/19.12.1/kmahjongg-19.12.1.tar.xz) = 3426076 +TIMESTAMP = 1580852862 +SHA256 (KDE/applications/19.12.2/kmahjongg-19.12.2.tar.xz) = 887d71965e8b358a5c932509dd0ec8addf5d9e88480304eaf0de00e1bed1063a +SIZE (KDE/applications/19.12.2/kmahjongg-19.12.2.tar.xz) = 3426036 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 525395) +++ head/games/kmines/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373872 -SHA256 (KDE/applications/19.12.1/kmines-19.12.1.tar.xz) = 8f921aa4bda7397c0fa6265ba07a6ce68190174864d0ee16ee575be806b49539 -SIZE (KDE/applications/19.12.1/kmines-19.12.1.tar.xz) = 898180 +TIMESTAMP = 1580852883 +SHA256 (KDE/applications/19.12.2/kmines-19.12.2.tar.xz) = fd1a27b4de93cc42464707dd0a0993d376197a76f0d04c1a322e894a2cc4671f +SIZE (KDE/applications/19.12.2/kmines-19.12.2.tar.xz) = 898976 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 525395) +++ head/games/knavalbattle/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373872 -SHA256 (KDE/applications/19.12.1/knavalbattle-19.12.1.tar.xz) = 1cc2c7fec2e2edc634cb1f83cf7e433522b0bc7d76c04cbcde66bb486a832856 -SIZE (KDE/applications/19.12.1/knavalbattle-19.12.1.tar.xz) = 1280848 +TIMESTAMP = 1580852884 +SHA256 (KDE/applications/19.12.2/knavalbattle-19.12.2.tar.xz) = 6b36acd1469143a3a0a8272d88cc06b7122ee5ae0c0e107963b16c1cb01a21c2 +SIZE (KDE/applications/19.12.2/knavalbattle-19.12.2.tar.xz) = 1281752 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 525395) +++ head/games/knetwalk/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373873 -SHA256 (KDE/applications/19.12.1/knetwalk-19.12.1.tar.xz) = 95725a45c56956a2b8e8e2db36b6baedfc0271af0d6e3541d6143342e6f41ca5 -SIZE (KDE/applications/19.12.1/knetwalk-19.12.1.tar.xz) = 1041176 +TIMESTAMP = 1580852885 +SHA256 (KDE/applications/19.12.2/knetwalk-19.12.2.tar.xz) = 36e382c196387badc8863f706e1fc66ddd4568eacf9ce177768f9cf4436df072 +SIZE (KDE/applications/19.12.2/knetwalk-19.12.2.tar.xz) = 1041000 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 525395) +++ head/games/knights/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373874 -SHA256 (KDE/applications/19.12.1/knights-19.12.1.tar.xz) = 60ce0d76eb13c95ba81b0f2dfe5bd3e80ed2226319e4ef97150c3240f428d355 -SIZE (KDE/applications/19.12.1/knights-19.12.1.tar.xz) = 3516696 +TIMESTAMP = 1580852869 +SHA256 (KDE/applications/19.12.2/knights-19.12.2.tar.xz) = 77a854b35d2564c91b7d5086e08c1bcd2d471c8b5dd8ede7213c109ab97c6fa2 +SIZE (KDE/applications/19.12.2/knights-19.12.2.tar.xz) = 3517448 Index: head/games/knights/pkg-plist =================================================================== --- head/games/knights/pkg-plist (revision 525395) +++ head/games/knights/pkg-plist (revision 525396) @@ -1,75 +1,76 @@ bin/knights share/qlogging-categories5/knights.categories etc/xdg/knights.knsrc share/applications/org.kde.knights.desktop share/config.kcfg/knights.kcfg share/dbus-1/interfaces/org.kde.Knights.xml share/icons/hicolor/16x16/apps/knights.png share/icons/hicolor/32x32/apps/knights.png share/icons/hicolor/48x48/apps/knights.png share/icons/hicolor/64x64/apps/knights.png %%DATADIR%%/sounds/capture_black.ogg %%DATADIR%%/sounds/capture_white.ogg %%DATADIR%%/sounds/move_black.ogg %%DATADIR%%/sounds/move_white.ogg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/east_west.desktop %%DATADIR%%/themes/east_west.png %%DATADIR%%/themes/east_west.svgz %%DATADIR%%/themes/gray.png %%DATADIR%%/themes/gray.svgz %%DATADIR%%/themes/knights.desktop %%DATADIR%%/themes/knights.png %%DATADIR%%/themes/knights.svgz %%DATADIR%%/themes/plain.desktop %%DATADIR%%/themes/plain.png %%DATADIR%%/themes/plain.svgz %%DATADIR%%/themes/xboard2.desktop %%DATADIR%%/themes/xboard2.png %%DATADIR%%/themes/xboard2.svgz share/kxmlgui5/knights/knightsui.rc share/locale/ar/LC_MESSAGES/knights.mo share/locale/bg/LC_MESSAGES/knights.mo share/locale/bs/LC_MESSAGES/knights.mo share/locale/ca/LC_MESSAGES/knights.mo share/locale/ca@valencia/LC_MESSAGES/knights.mo share/locale/cs/LC_MESSAGES/knights.mo share/locale/da/LC_MESSAGES/knights.mo share/locale/de/LC_MESSAGES/knights.mo share/locale/el/LC_MESSAGES/knights.mo share/locale/en_GB/LC_MESSAGES/knights.mo share/locale/eo/LC_MESSAGES/knights.mo share/locale/es/LC_MESSAGES/knights.mo share/locale/et/LC_MESSAGES/knights.mo share/locale/fa/LC_MESSAGES/knights.mo share/locale/fi/LC_MESSAGES/knights.mo share/locale/fr/LC_MESSAGES/knights.mo share/locale/ga/LC_MESSAGES/knights.mo share/locale/gl/LC_MESSAGES/knights.mo share/locale/hu/LC_MESSAGES/knights.mo share/locale/id/LC_MESSAGES/knights.mo share/locale/it/LC_MESSAGES/knights.mo share/locale/ja/LC_MESSAGES/knights.mo share/locale/km/LC_MESSAGES/knights.mo +share/locale/ko/LC_MESSAGES/knights.mo share/locale/lt/LC_MESSAGES/knights.mo share/locale/ml/LC_MESSAGES/knights.mo share/locale/mr/LC_MESSAGES/knights.mo share/locale/nb/LC_MESSAGES/knights.mo share/locale/nds/LC_MESSAGES/knights.mo share/locale/nl/LC_MESSAGES/knights.mo share/locale/nn/LC_MESSAGES/knights.mo share/locale/pl/LC_MESSAGES/knights.mo share/locale/pt/LC_MESSAGES/knights.mo share/locale/pt_BR/LC_MESSAGES/knights.mo share/locale/ro/LC_MESSAGES/knights.mo share/locale/ru/LC_MESSAGES/knights.mo share/locale/sk/LC_MESSAGES/knights.mo share/locale/sl/LC_MESSAGES/knights.mo share/locale/sr/LC_MESSAGES/knights.mo share/locale/sv/LC_MESSAGES/knights.mo share/locale/tr/LC_MESSAGES/knights.mo share/locale/ug/LC_MESSAGES/knights.mo share/locale/uk/LC_MESSAGES/knights.mo share/locale/zh_CN/LC_MESSAGES/knights.mo share/locale/zh_TW/LC_MESSAGES/knights.mo share/metainfo/org.kde.knights.appdata.xml Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 525395) +++ head/games/kolf/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373874 -SHA256 (KDE/applications/19.12.1/kolf-19.12.1.tar.xz) = 78c5e74d61f8c19b31d4d08781d12a87bc6101d0105081e0c15f4506e36ef6f5 -SIZE (KDE/applications/19.12.1/kolf-19.12.1.tar.xz) = 1023372 +TIMESTAMP = 1580852860 +SHA256 (KDE/applications/19.12.2/kolf-19.12.2.tar.xz) = ad98175c578e6122d573969290fd9aaa3347377c1c49070e94556309ffa6f074 +SIZE (KDE/applications/19.12.2/kolf-19.12.2.tar.xz) = 1029968 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 525395) +++ head/games/kollision/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373875 -SHA256 (KDE/applications/19.12.1/kollision-19.12.1.tar.xz) = a48515f63c0dbcc890aa9c01e344ea5bcb123e587459879796acc39a16243c09 -SIZE (KDE/applications/19.12.1/kollision-19.12.1.tar.xz) = 281220 +TIMESTAMP = 1580852880 +SHA256 (KDE/applications/19.12.2/kollision-19.12.2.tar.xz) = 738849d80623624402a36ae418dd3b8ecd2ca01bc28ff02f237618e612679bcd +SIZE (KDE/applications/19.12.2/kollision-19.12.2.tar.xz) = 280804 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 525395) +++ head/games/konquest/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373876 -SHA256 (KDE/applications/19.12.1/konquest-19.12.1.tar.xz) = 178e42f76115f8e8b47494ea7732fb76a692debe714590c06d84f7071930b65a -SIZE (KDE/applications/19.12.1/konquest-19.12.1.tar.xz) = 658620 +TIMESTAMP = 1580852874 +SHA256 (KDE/applications/19.12.2/konquest-19.12.2.tar.xz) = 13f028fff4c636b024ec910dd49168b4f83f16fbd97d583639718a7889b0705a +SIZE (KDE/applications/19.12.2/konquest-19.12.2.tar.xz) = 658776 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 525395) +++ head/games/kpat/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373876 -SHA256 (KDE/applications/19.12.1/kpat-19.12.1.tar.xz) = cb72a256a2a6a34bd8ee05e09b28f0eedee6643f24f793c5f67a9465040c30c3 -SIZE (KDE/applications/19.12.1/kpat-19.12.1.tar.xz) = 3577416 +TIMESTAMP = 1580852863 +SHA256 (KDE/applications/19.12.2/kpat-19.12.2.tar.xz) = e1001c58639ec5380a9566004e6bf459bcd939f9e2482e5ff6e35787e338501d +SIZE (KDE/applications/19.12.2/kpat-19.12.2.tar.xz) = 3578024 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 525395) +++ head/games/kreversi/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373877 -SHA256 (KDE/applications/19.12.1/kreversi-19.12.1.tar.xz) = b81e6544ba23b0869329d734618b3bc4408b585d550985338e6d90bf2d3a17f3 -SIZE (KDE/applications/19.12.1/kreversi-19.12.1.tar.xz) = 945576 +TIMESTAMP = 1580852878 +SHA256 (KDE/applications/19.12.2/kreversi-19.12.2.tar.xz) = f37601b6efc5c00cf488b289a87062f8a56b30f4b131202126fcea00a00d8c75 +SIZE (KDE/applications/19.12.2/kreversi-19.12.2.tar.xz) = 945476 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 525395) +++ head/games/kshisen/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373878 -SHA256 (KDE/applications/19.12.1/kshisen-19.12.1.tar.xz) = a361dfc41595640287dd5b800921859ff17a45f7360e5e2fc6f520cc0e421afa -SIZE (KDE/applications/19.12.1/kshisen-19.12.1.tar.xz) = 823404 +TIMESTAMP = 1580852866 +SHA256 (KDE/applications/19.12.2/kshisen-19.12.2.tar.xz) = 9246f02933674a37a8ef1cbe0e3f4b69e6a8745a4545b4728181ad61348dfb73 +SIZE (KDE/applications/19.12.2/kshisen-19.12.2.tar.xz) = 822424 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 525395) +++ head/games/ksirk/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373878 -SHA256 (KDE/applications/19.12.1/ksirk-19.12.1.tar.xz) = 4f71e4ef3b4d2041edd48537f4b475cb505fc54e45b39b81a08c82d4eec7cc8e -SIZE (KDE/applications/19.12.1/ksirk-19.12.1.tar.xz) = 6999100 +TIMESTAMP = 1580852874 +SHA256 (KDE/applications/19.12.2/ksirk-19.12.2.tar.xz) = 2005889390e6c3b13f4c3ae1993b92e1b782d439a8874075a9316520353292a5 +SIZE (KDE/applications/19.12.2/ksirk-19.12.2.tar.xz) = 6995304 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 525395) +++ head/games/ksnakeduel/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373879 -SHA256 (KDE/applications/19.12.1/ksnakeduel-19.12.1.tar.xz) = 73e9c55cce88a6e5d00683c73382ee82db64bfe788c14c3a4eda8decf382188f -SIZE (KDE/applications/19.12.1/ksnakeduel-19.12.1.tar.xz) = 605248 +TIMESTAMP = 1580852868 +SHA256 (KDE/applications/19.12.2/ksnakeduel-19.12.2.tar.xz) = 4679268599f388c4b38e489a4be3ad30692d2cd949373c959981beb8ee081f75 +SIZE (KDE/applications/19.12.2/ksnakeduel-19.12.2.tar.xz) = 605104 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 525395) +++ head/games/kspaceduel/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373880 -SHA256 (KDE/applications/19.12.1/kspaceduel-19.12.1.tar.xz) = 0bc1f1c12bcfc9e5c778918fb9fa644f5c7ec5c3e687c015d45a7c5c31a27834 -SIZE (KDE/applications/19.12.1/kspaceduel-19.12.1.tar.xz) = 611600 +TIMESTAMP = 1580852857 +SHA256 (KDE/applications/19.12.2/kspaceduel-19.12.2.tar.xz) = 1be31f27b54d6858950437b807eb62ee04fa2c93af2b32e28b82fb2e82244a28 +SIZE (KDE/applications/19.12.2/kspaceduel-19.12.2.tar.xz) = 611224 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 525395) +++ head/games/ksquares/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373880 -SHA256 (KDE/applications/19.12.1/ksquares-19.12.1.tar.xz) = 955225b9fadbda464bdaf1b59c95c3d12310f84484a296968737e9fb87b37b46 -SIZE (KDE/applications/19.12.1/ksquares-19.12.1.tar.xz) = 261364 +TIMESTAMP = 1580852859 +SHA256 (KDE/applications/19.12.2/ksquares-19.12.2.tar.xz) = 13fc28bd4ff77497a2b1bdcee678156b8078ff4df0880042b67d4490973a1ca2 +SIZE (KDE/applications/19.12.2/ksquares-19.12.2.tar.xz) = 261108 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 525395) +++ head/games/ksudoku/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373881 -SHA256 (KDE/applications/19.12.1/ksudoku-19.12.1.tar.xz) = 4dd72a5b0bb0c951508bbe2c60ce280efcd0414899e025a2ca4d92336576ec2a -SIZE (KDE/applications/19.12.1/ksudoku-19.12.1.tar.xz) = 1649256 +TIMESTAMP = 1580852868 +SHA256 (KDE/applications/19.12.2/ksudoku-19.12.2.tar.xz) = 719b0028b491f516b56b20690181651818814265b4714b970faf7f481993311b +SIZE (KDE/applications/19.12.2/ksudoku-19.12.2.tar.xz) = 1650128 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 525395) +++ head/games/ktuberling/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373882 -SHA256 (KDE/applications/19.12.1/ktuberling-19.12.1.tar.xz) = 4c0d594ef72bd2dda5d42daf0f8b430319cbea6d28ba5c9725895b1221cdaace -SIZE (KDE/applications/19.12.1/ktuberling-19.12.1.tar.xz) = 70754024 +TIMESTAMP = 1580852882 +SHA256 (KDE/applications/19.12.2/ktuberling-19.12.2.tar.xz) = 4a8e5fc93c82e357cf08c61c9d60808adef2d120178faa0705a4a786cdaf0f82 +SIZE (KDE/applications/19.12.2/ktuberling-19.12.2.tar.xz) = 70756448 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 525395) +++ head/games/kubrick/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373883 -SHA256 (KDE/applications/19.12.1/kubrick-19.12.1.tar.xz) = 485e7e4a30b01cb2661c640214bdc71a3e0a8b61a9071c64ffbbe75e2270af3c -SIZE (KDE/applications/19.12.1/kubrick-19.12.1.tar.xz) = 317568 +TIMESTAMP = 1580852876 +SHA256 (KDE/applications/19.12.2/kubrick-19.12.2.tar.xz) = 902c833e420a973d3a82205a2fab22fcaa985d0b41ed98687bae2bfc09ad8be8 +SIZE (KDE/applications/19.12.2/kubrick-19.12.2.tar.xz) = 317604 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 525395) +++ head/games/libkdegames/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373883 -SHA256 (KDE/applications/19.12.1/libkdegames-19.12.1.tar.xz) = 317513544e08d03b2381bdb4c0bcd24c844dd8af7ccc4896569dd05933061d9c -SIZE (KDE/applications/19.12.1/libkdegames-19.12.1.tar.xz) = 6374340 +TIMESTAMP = 1580852872 +SHA256 (KDE/applications/19.12.2/libkdegames-19.12.2.tar.xz) = 270b20c902dda233f9b28f67eca582d810693d715ce768da6082bfa375248172 +SIZE (KDE/applications/19.12.2/libkdegames-19.12.2.tar.xz) = 6381648 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 525395) +++ head/games/libkmahjongg/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373884 -SHA256 (KDE/applications/19.12.1/libkmahjongg-19.12.1.tar.xz) = e6a107a32c01c654a2372fda984724b4acd59dbc2902f3f9c7a7d9e14587639c -SIZE (KDE/applications/19.12.1/libkmahjongg-19.12.1.tar.xz) = 1683948 +TIMESTAMP = 1580852875 +SHA256 (KDE/applications/19.12.2/libkmahjongg-19.12.2.tar.xz) = bb76e953fb0b56e95cf290a524a9c66b478e57551b68f37ff049f343aa311233 +SIZE (KDE/applications/19.12.2/libkmahjongg-19.12.2.tar.xz) = 1682964 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 525395) +++ head/games/lskat/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373885 -SHA256 (KDE/applications/19.12.1/lskat-19.12.1.tar.xz) = 0aa36c4cc554b708f7334b32362831537ea52db81b8480b80ffac5c27a041e8f -SIZE (KDE/applications/19.12.1/lskat-19.12.1.tar.xz) = 1219228 +TIMESTAMP = 1580852871 +SHA256 (KDE/applications/19.12.2/lskat-19.12.2.tar.xz) = 8cf875f6d16e9a391b93377271e006afee0ca68bd6f27de49c9a9b9289f79aa4 +SIZE (KDE/applications/19.12.2/lskat-19.12.2.tar.xz) = 1219188 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 525395) +++ head/games/palapeli/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373885 -SHA256 (KDE/applications/19.12.1/palapeli-19.12.1.tar.xz) = ea4d9dd576066a610444680f3e8686f242bc8be9222020423acab52ec98a185f -SIZE (KDE/applications/19.12.1/palapeli-19.12.1.tar.xz) = 2070948 +TIMESTAMP = 1580852867 +SHA256 (KDE/applications/19.12.2/palapeli-19.12.2.tar.xz) = e94892202374faa41940a402f687b97562f1d001b02f19c336d8905300521da6 +SIZE (KDE/applications/19.12.2/palapeli-19.12.2.tar.xz) = 2069756 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 525395) +++ head/games/picmi/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373886 -SHA256 (KDE/applications/19.12.1/picmi-19.12.1.tar.xz) = 5428ef9add8dd9479f319b8c08fbfefca9ee34fbf503bee1c55b04ecf82ae9f9 -SIZE (KDE/applications/19.12.1/picmi-19.12.1.tar.xz) = 1358152 +TIMESTAMP = 1580852885 +SHA256 (KDE/applications/19.12.2/picmi-19.12.2.tar.xz) = e0ba59f4accee3c0d567b33d258c4b99fdae9b76c4c6bb85ca5ce67dffd63407 +SIZE (KDE/applications/19.12.2/picmi-19.12.2.tar.xz) = 1357752 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 525395) +++ head/graphics/gwenview/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373887 -SHA256 (KDE/applications/19.12.1/gwenview-19.12.1.tar.xz) = ed36590a0193fbe22f08c1a026e58f86a3067f516b3a894f29b72aa229967c84 -SIZE (KDE/applications/19.12.1/gwenview-19.12.1.tar.xz) = 5736512 +TIMESTAMP = 1580852887 +SHA256 (KDE/applications/19.12.2/gwenview-19.12.2.tar.xz) = 149a0b08e11677398351061b764a00f8c7ba29460da808d86c04bb642f662723 +SIZE (KDE/applications/19.12.2/gwenview-19.12.2.tar.xz) = 5736880 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 525395) +++ head/graphics/kamera/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373888 -SHA256 (KDE/applications/19.12.1/kamera-19.12.1.tar.xz) = 831d7b3d7ffdc73b03116b564fb1a23c651d468cae97c1c31791f6df1a8890ac -SIZE (KDE/applications/19.12.1/kamera-19.12.1.tar.xz) = 103856 +TIMESTAMP = 1580852893 +SHA256 (KDE/applications/19.12.2/kamera-19.12.2.tar.xz) = 8ee666ed0b53cfda35344e5baa2747d36c0f6d657a8bf9582252ae97187c2f78 +SIZE (KDE/applications/19.12.2/kamera-19.12.2.tar.xz) = 103892 Index: head/graphics/kamera/pkg-plist =================================================================== --- head/graphics/kamera/pkg-plist (revision 525395) +++ head/graphics/kamera/pkg-plist (revision 525396) @@ -1,86 +1,87 @@ %%QT_PLUGINDIR%%/kcm_kamera.so %%QT_PLUGINDIR%%/kio_kamera.so share/kservices5/camera.protocol share/kservices5/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/el/LC_MESSAGES/kio5_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/et/LC_MESSAGES/kio5_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo +share/locale/ia/LC_MESSAGES/kio5_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio5_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio5_kamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/metainfo/org.kde.kamera.metainfo.xml share/solid/actions/solid_camera.desktop Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 525395) +++ head/graphics/kcolorchooser/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373889 -SHA256 (KDE/applications/19.12.1/kcolorchooser-19.12.1.tar.xz) = 713d1151f45382d8a889187ebb02f8e73ffbf28ac8abea0e03626888711d2c22 -SIZE (KDE/applications/19.12.1/kcolorchooser-19.12.1.tar.xz) = 21524 +TIMESTAMP = 1580852891 +SHA256 (KDE/applications/19.12.2/kcolorchooser-19.12.2.tar.xz) = 2769bf1bc8240a07ea5e42e59f4b97f88546668b628e6b42d0fd1fb769ee1449 +SIZE (KDE/applications/19.12.2/kcolorchooser-19.12.2.tar.xz) = 21444 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 525395) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373889 -SHA256 (KDE/applications/19.12.1/kdegraphics-mobipocket-19.12.1.tar.xz) = 546d11af89e97831cc09868051142d4180e9621cc537c2941272b42a85e71c6a -SIZE (KDE/applications/19.12.1/kdegraphics-mobipocket-19.12.1.tar.xz) = 15976 +TIMESTAMP = 1580852893 +SHA256 (KDE/applications/19.12.2/kdegraphics-mobipocket-19.12.2.tar.xz) = 3227c6157216cafe793aa66e29a4f095e673ba4f8de532dc95cd94d11b6cdf10 +SIZE (KDE/applications/19.12.2/kdegraphics-mobipocket-19.12.2.tar.xz) = 16108 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 525395) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373890 -SHA256 (KDE/applications/19.12.1/svgpart-19.12.1.tar.xz) = 6083457999121ead13b6c267211a78ea04c925d6f9f7447b31677c0b49f6898b -SIZE (KDE/applications/19.12.1/svgpart-19.12.1.tar.xz) = 21272 +TIMESTAMP = 1580852889 +SHA256 (KDE/applications/19.12.2/svgpart-19.12.2.tar.xz) = c4d6c83095d23415a3f2efc8ad9fc8b98de671d08c9e07cf6093e7553647a54e +SIZE (KDE/applications/19.12.2/svgpart-19.12.2.tar.xz) = 21188 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 525395) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373891 -SHA256 (KDE/applications/19.12.1/kdegraphics-thumbnailers-19.12.1.tar.xz) = a91335c11637a351d3ea8798f5519ac5596d655aec92266e46ed2a1bab46a299 -SIZE (KDE/applications/19.12.1/kdegraphics-thumbnailers-19.12.1.tar.xz) = 46080 +TIMESTAMP = 1580852889 +SHA256 (KDE/applications/19.12.2/kdegraphics-thumbnailers-19.12.2.tar.xz) = 0ea2e539474949b2a426714afc28a43700abbec89baea4737b0a11e82a13b6eb +SIZE (KDE/applications/19.12.2/kdegraphics-thumbnailers-19.12.2.tar.xz) = 46368 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 525395) +++ head/graphics/kimagemapeditor/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373891 -SHA256 (KDE/applications/19.12.1/kimagemapeditor-19.12.1.tar.xz) = 9869f3a060dc44f2fad0646fa9c0f1c2924d68c3cc3de5147170456f27a39e77 -SIZE (KDE/applications/19.12.1/kimagemapeditor-19.12.1.tar.xz) = 1070984 +TIMESTAMP = 1580852890 +SHA256 (KDE/applications/19.12.2/kimagemapeditor-19.12.2.tar.xz) = c86c2d11ac4754e3ba04327ef8802d573114f5534af014cd00709f5e185b948d +SIZE (KDE/applications/19.12.2/kimagemapeditor-19.12.2.tar.xz) = 1070580 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 525395) +++ head/graphics/kipi-plugins/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373892 -SHA256 (KDE/applications/19.12.1/kipi-plugins-19.12.1.tar.xz) = bcd27ab29b491f13116a156e403126d04ffbaa352b581eca7fb0904e13c5dabe -SIZE (KDE/applications/19.12.1/kipi-plugins-19.12.1.tar.xz) = 1632168 +TIMESTAMP = 1580852888 +SHA256 (KDE/applications/19.12.2/kipi-plugins-19.12.2.tar.xz) = f7e835e9e282d67bfd6aabe9f8d9482da42ee686b6d27aa736fd212cf21ce1ac +SIZE (KDE/applications/19.12.2/kipi-plugins-19.12.2.tar.xz) = 1638840 Index: head/graphics/kipi-plugins/pkg-plist =================================================================== --- head/graphics/kipi-plugins/pkg-plist (revision 525395) +++ head/graphics/kipi-plugins/pkg-plist (revision 525396) @@ -1,923 +1,942 @@ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 %%QT_PLUGINDIR%%/kipiplugin_dropbox.so %%QT_PLUGINDIR%%/kipiplugin_facebook.so %%QT_PLUGINDIR%%/kipiplugin_flashexport.so %%QT_PLUGINDIR%%/kipiplugin_flickr.so %%QT_PLUGINDIR%%/kipiplugin_googleservices.so %%QT_PLUGINDIR%%/kipiplugin_imageshack.so %%QT_PLUGINDIR%%/kipiplugin_imgur.so %%QT_PLUGINDIR%%/kipiplugin_jalbum.so %%QT_PLUGINDIR%%/kipiplugin_kmlexport.so %%QT_PLUGINDIR%%/kipiplugin_piwigo.so %%QT_PLUGINDIR%%/kipiplugin_printimages.so %%QT_PLUGINDIR%%/kipiplugin_rajce.so %%QT_PLUGINDIR%%/kipiplugin_remotestorage.so %%QT_PLUGINDIR%%/kipiplugin_sendimages.so %%QT_PLUGINDIR%%/kipiplugin_smug.so %%KVKONTAKTE%%%%QT_PLUGINDIR%%/kipiplugin_vkontakte.so %%MEDIAWIKI%%%%QT_PLUGINDIR%%/kipiplugin_wikimedia.so %%QT_PLUGINDIR%%/kipiplugin_yandexfotki.so share/applications/kipiplugins.desktop share/icons/hicolor/128x128/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-dropbox.png share/icons/hicolor/16x16/apps/kipi-facebook.png share/icons/hicolor/16x16/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-flickr.png share/icons/hicolor/16x16/apps/kipi-googledrive.png share/icons/hicolor/16x16/apps/kipi-googlephoto.png share/icons/hicolor/16x16/apps/kipi-hq.png share/icons/hicolor/16x16/apps/kipi-imgur.png share/icons/hicolor/16x16/apps/kipi-jalbum.png share/icons/hicolor/16x16/apps/kipi-piwigo.png share/icons/hicolor/16x16/apps/kipi-rajce.png share/icons/hicolor/16x16/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/16x16/apps/kipi-wikimedia.png share/icons/hicolor/22x22/apps/kipi-dropbox.png share/icons/hicolor/22x22/apps/kipi-facebook.png share/icons/hicolor/22x22/apps/kipi-flash.png share/icons/hicolor/22x22/apps/kipi-flickr.png share/icons/hicolor/22x22/apps/kipi-googledrive.png share/icons/hicolor/22x22/apps/kipi-googlephoto.png share/icons/hicolor/22x22/apps/kipi-hq.png share/icons/hicolor/22x22/apps/kipi-imgur.png share/icons/hicolor/22x22/apps/kipi-piwigo.png share/icons/hicolor/22x22/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/22x22/apps/kipi-wikimedia.png share/icons/hicolor/24x24/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-dropbox.png share/icons/hicolor/32x32/apps/kipi-facebook.png share/icons/hicolor/32x32/apps/kipi-flash.png share/icons/hicolor/32x32/apps/kipi-flickr.png share/icons/hicolor/32x32/apps/kipi-googledrive.png share/icons/hicolor/32x32/apps/kipi-googlephoto.png share/icons/hicolor/32x32/apps/kipi-hq.png share/icons/hicolor/32x32/apps/kipi-imageshack.png share/icons/hicolor/32x32/apps/kipi-imgur.png share/icons/hicolor/32x32/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-piwigo.png share/icons/hicolor/32x32/apps/kipi-rajce.png share/icons/hicolor/32x32/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/32x32/apps/kipi-wikimedia.png share/icons/hicolor/48x48/apps/kipi-dropbox.png share/icons/hicolor/48x48/apps/kipi-facebook.png share/icons/hicolor/48x48/apps/kipi-flash.png share/icons/hicolor/48x48/apps/kipi-flickr.png share/icons/hicolor/48x48/apps/kipi-googledrive.png share/icons/hicolor/48x48/apps/kipi-googlephoto.png share/icons/hicolor/48x48/apps/kipi-hq.png share/icons/hicolor/48x48/apps/kipi-imageshack.png share/icons/hicolor/48x48/apps/kipi-imgur.png share/icons/hicolor/48x48/apps/kipi-piwigo.png share/icons/hicolor/48x48/apps/kipi-rajce.png share/icons/hicolor/48x48/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/48x48/apps/kipi-wikimedia.png share/icons/hicolor/64x64/apps/kipi-imageshack.png share/icons/hicolor/64x64/apps/kipi-rajce.png share/icons/hicolor/scalable/apps/kipi-facebook.svgz share/icons/hicolor/scalable/apps/kipi-flash.svgz share/icons/hicolor/scalable/apps/kipi-flickr.svgz share/icons/hicolor/scalable/apps/kipi-googlephoto.svgz share/icons/hicolor/scalable/apps/kipi-hq.svgz share/icons/hicolor/scalable/apps/kipi-imgur.svgz share/icons/hicolor/scalable/apps/kipi-piwigo.svgz share/icons/hicolor/scalable/apps/kipi-smugmug.svgz %%MEDIAWIKI%%share/icons/hicolor/scalable/apps/kipi-wikimedia.svgz share/kipiplugin_flashexport/index.template share/kipiplugin_flashexport/index2.template share/kipiplugin_flashexport/index3.template share/kipiplugin_flashexport/index4.template share/kipiplugin_flashexport/simpleviewer_html/space.png share/kipiplugin_piwigo/pics/piwigo_logo.png share/kipiplugin_printimages/templates/1_photo_10.5x14.8cm.desktop share/kipiplugin_printimages/templates/1_photo_10x15cm.desktop share/kipiplugin_printimages/templates/1_photo_20x25cm.desktop share/kipiplugin_printimages/templates/1_photo_8x10.desktop share/kipiplugin_printimages/templates/1_photo_9x13cm.desktop share/kipiplugin_printimages/templates/2_photos_13x18cm.desktop share/kipiplugin_printimages/templates/2_photos_5x7.desktop share/kipiplugin_printimages/templates/3_photos_10x15cm.desktop share/kipiplugin_printimages/templates/3_photos_4x6.desktop share/kipiplugin_printimages/templates/4_photos_10x13.33cm.desktop share/kipiplugin_printimages/templates/4_photos_3.5x5.desktop share/kipiplugin_printimages/templates/4_photos_4.5x5cm.desktop share/kipiplugin_printimages/templates/4_photos_9x13cm.desktop share/kipiplugin_printimages/templates/4x6Album.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4.5cm.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4cm.desktop share/kipiplugin_printimages/templates/8_photos_6x9cm.desktop share/kipiplugin_printimages/templates/Album-Collage.desktop share/kipiplugin_printimages/templates/Album-Collage1.desktop share/kipiplugin_printimages/templates/Album_10x15cm.desktop share/kipiplugin_printimages/templates/Album_11.5x15cm.desktop share/kipiplugin_printimages/templates/FullPage.desktop share/kipiplugin_printimages/templates/Photoframe.desktop share/kipiplugin_printimages/templates/TEMPLATE_HOWTO share/kipiplugin_printimages/templates/Thumbnails_5x4.desktop share/kipiplugin_printimages/templates/Thumbnails_6x5.desktop share/kipiplugin_printimages/templates/templates.xml share/kservices5/kipiplugin_dropbox.desktop share/kservices5/kipiplugin_facebook.desktop share/kservices5/kipiplugin_flashexport.desktop share/kservices5/kipiplugin_flickr.desktop share/kservices5/kipiplugin_googleservices.desktop share/kservices5/kipiplugin_imageshack.desktop share/kservices5/kipiplugin_imgur.desktop share/kservices5/kipiplugin_jalbum.desktop share/kservices5/kipiplugin_kmlexport.desktop share/kservices5/kipiplugin_piwigo.desktop share/kservices5/kipiplugin_printimages.desktop share/kservices5/kipiplugin_rajce.desktop share/kservices5/kipiplugin_remotestorage.desktop share/kservices5/kipiplugin_sendimages.desktop share/kservices5/kipiplugin_smug.desktop %%KVKONTAKTE%%share/kservices5/kipiplugin_vkontakte.desktop %%MEDIAWIKI%%share/kservices5/kipiplugin_wikimedia.desktop share/kservices5/kipiplugin_yandexfotki.desktop share/kxmlgui5/kipi/kipiplugin_dropboxui.rc share/kxmlgui5/kipi/kipiplugin_facebookui.rc share/kxmlgui5/kipi/kipiplugin_flashexportui.rc share/kxmlgui5/kipi/kipiplugin_flickrui.rc share/kxmlgui5/kipi/kipiplugin_googleservicesui.rc share/kxmlgui5/kipi/kipiplugin_imageshackui.rc share/kxmlgui5/kipi/kipiplugin_imgurui.rc share/kxmlgui5/kipi/kipiplugin_jalbumui.rc share/kxmlgui5/kipi/kipiplugin_kmlexportui.rc share/kxmlgui5/kipi/kipiplugin_piwigoui.rc share/kxmlgui5/kipi/kipiplugin_printimagesui.rc share/kxmlgui5/kipi/kipiplugin_rajceui.rc share/kxmlgui5/kipi/kipiplugin_remotestorageui.rc share/kxmlgui5/kipi/kipiplugin_sendimagesui.rc share/kxmlgui5/kipi/kipiplugin_smugui.rc %%KVKONTAKTE%%share/kxmlgui5/kipi/kipiplugin_vkontakteui.rc %%MEDIAWIKI%%share/kxmlgui5/kipi/kipiplugin_wikimediaui.rc share/kxmlgui5/kipi/kipiplugin_yandexfotkiui.rc share/locale/ar/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ar/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ar/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ar/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ar/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ar/LC_MESSAGES/kipiplugins.mo share/locale/bs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bs/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/bs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/bs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/bs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/bs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/bs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/bs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/bs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/bs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_smug.mo share/locale/bs/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/bs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/bs/LC_MESSAGES/kipiplugins.mo share/locale/ca/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ca/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca/LC_MESSAGES/kipiplugins.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugins.mo share/locale/cs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/cs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/cs/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/cs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/cs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/cs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/cs/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/cs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/cs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/cs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/cs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_smug.mo share/locale/cs/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/cs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/cs/LC_MESSAGES/kipiplugins.mo share/locale/da/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/da/LC_MESSAGES/kipiplugin_facebook.mo share/locale/da/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/da/LC_MESSAGES/kipiplugin_flickr.mo share/locale/da/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/da/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/da/LC_MESSAGES/kipiplugin_imgur.mo share/locale/da/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/da/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/da/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/da/LC_MESSAGES/kipiplugin_printimages.mo share/locale/da/LC_MESSAGES/kipiplugin_rajce.mo share/locale/da/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/da/LC_MESSAGES/kipiplugin_smug.mo share/locale/da/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/da/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/da/LC_MESSAGES/kipiplugins.mo share/locale/de/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/de/LC_MESSAGES/kipiplugin_facebook.mo share/locale/de/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/de/LC_MESSAGES/kipiplugin_flickr.mo share/locale/de/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/de/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/de/LC_MESSAGES/kipiplugin_imgur.mo share/locale/de/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/de/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/de/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/de/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/de/LC_MESSAGES/kipiplugin_printimages.mo share/locale/de/LC_MESSAGES/kipiplugin_rajce.mo share/locale/de/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/de/LC_MESSAGES/kipiplugin_smug.mo share/locale/de/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/de/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/de/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/el/LC_MESSAGES/kipiplugin_facebook.mo share/locale/el/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/el/LC_MESSAGES/kipiplugin_flickr.mo share/locale/el/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/el/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/el/LC_MESSAGES/kipiplugin_imgur.mo share/locale/el/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/el/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/el/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/el/LC_MESSAGES/kipiplugin_printimages.mo share/locale/el/LC_MESSAGES/kipiplugin_rajce.mo share/locale/el/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/el/LC_MESSAGES/kipiplugin_smug.mo share/locale/el/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/el/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/el/LC_MESSAGES/kipiplugins.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_facebook.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flickr.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imgur.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_printimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_rajce.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_smug.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/en_GB/LC_MESSAGES/kipiplugins.mo share/locale/eo/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eo/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/eo/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eo/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eo/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eo/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eo/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_smug.mo share/locale/eo/LC_MESSAGES/kipiplugins.mo share/locale/es/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/es/LC_MESSAGES/kipiplugin_facebook.mo share/locale/es/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/es/LC_MESSAGES/kipiplugin_flickr.mo share/locale/es/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/es/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/es/LC_MESSAGES/kipiplugin_imgur.mo share/locale/es/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/es/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/es/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/es/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/es/LC_MESSAGES/kipiplugin_printimages.mo share/locale/es/LC_MESSAGES/kipiplugin_rajce.mo share/locale/es/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/es/LC_MESSAGES/kipiplugin_smug.mo share/locale/es/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/es/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/es/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/et/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/et/LC_MESSAGES/kipiplugin_facebook.mo share/locale/et/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/et/LC_MESSAGES/kipiplugin_flickr.mo share/locale/et/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/et/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/et/LC_MESSAGES/kipiplugin_imgur.mo share/locale/et/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/et/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/et/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/et/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/et/LC_MESSAGES/kipiplugin_printimages.mo share/locale/et/LC_MESSAGES/kipiplugin_rajce.mo share/locale/et/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/et/LC_MESSAGES/kipiplugin_smug.mo share/locale/et/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/et/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/et/LC_MESSAGES/kipiplugins.mo share/locale/eu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/eu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eu/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/eu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/eu/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/eu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/eu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/eu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_smug.mo share/locale/eu/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/eu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/eu/LC_MESSAGES/kipiplugins.mo share/locale/fi/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fi/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fi/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fi/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fi/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fi/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fi/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fi/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fi/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fi/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fi/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_smug.mo share/locale/fi/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/fi/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fi/LC_MESSAGES/kipiplugins.mo share/locale/fr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fr/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_smug.mo share/locale/fr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/fr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fr/LC_MESSAGES/kipiplugins.mo share/locale/ga/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ga/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ga/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ga/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ga/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ga/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ga/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_smug.mo share/locale/ga/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ga/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ga/LC_MESSAGES/kipiplugins.mo share/locale/gl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/gl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/gl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/gl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/gl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/gl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/gl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/gl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/gl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/gl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/gl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_smug.mo share/locale/gl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/gl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo share/locale/hi/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hi/LC_MESSAGES/kipiplugins.mo share/locale/hr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_smug.mo share/locale/hr/LC_MESSAGES/kipiplugins.mo share/locale/hu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/hu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hu/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/hu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/hu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/hu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/hu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/hu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_smug.mo share/locale/hu/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/hu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/hu/LC_MESSAGES/kipiplugins.mo +share/locale/ia/LC_MESSAGES/kipiplugin_dropbox.mo +share/locale/ia/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/ia/LC_MESSAGES/kipiplugin_flashexport.mo +share/locale/ia/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/ia/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/ia/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/ia/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/ia/LC_MESSAGES/kipiplugin_jalbum.mo +share/locale/ia/LC_MESSAGES/kipiplugin_kmlexport.mo +share/locale/ia/LC_MESSAGES/kipiplugin_mediawiki.mo +share/locale/ia/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/ia/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/ia/LC_MESSAGES/kipiplugin_rajce.mo +share/locale/ia/LC_MESSAGES/kipiplugin_remotestorage.mo +share/locale/ia/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ia/LC_MESSAGES/kipiplugin_smug.mo +share/locale/ia/LC_MESSAGES/kipiplugin_vkontakte.mo +share/locale/ia/LC_MESSAGES/kipiplugin_yandexfotki.mo +share/locale/ia/LC_MESSAGES/kipiplugins.mo share/locale/id/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/id/LC_MESSAGES/kipiplugin_facebook.mo share/locale/id/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/id/LC_MESSAGES/kipiplugin_flickr.mo share/locale/id/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/id/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/id/LC_MESSAGES/kipiplugin_imgur.mo share/locale/id/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/id/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/id/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/id/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/id/LC_MESSAGES/kipiplugin_printimages.mo share/locale/id/LC_MESSAGES/kipiplugin_rajce.mo share/locale/id/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/id/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/id/LC_MESSAGES/kipiplugin_smug.mo share/locale/id/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/id/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/id/LC_MESSAGES/kipiplugins.mo share/locale/is/LC_MESSAGES/kipiplugin_facebook.mo share/locale/is/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/is/LC_MESSAGES/kipiplugin_flickr.mo share/locale/is/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/is/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/is/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/is/LC_MESSAGES/kipiplugin_printimages.mo share/locale/is/LC_MESSAGES/kipiplugin_rajce.mo share/locale/is/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/is/LC_MESSAGES/kipiplugin_smug.mo share/locale/is/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/is/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/is/LC_MESSAGES/kipiplugins.mo share/locale/it/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/it/LC_MESSAGES/kipiplugin_facebook.mo share/locale/it/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/it/LC_MESSAGES/kipiplugin_flickr.mo share/locale/it/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/it/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/it/LC_MESSAGES/kipiplugin_imgur.mo share/locale/it/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/it/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/it/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/it/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/it/LC_MESSAGES/kipiplugin_printimages.mo share/locale/it/LC_MESSAGES/kipiplugin_rajce.mo share/locale/it/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/it/LC_MESSAGES/kipiplugin_smug.mo share/locale/it/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/it/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/it/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ja/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ja/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ja/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ja/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ja/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ja/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ja/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ja/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ja/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ja/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_smug.mo share/locale/ja/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ja/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo share/locale/km/LC_MESSAGES/kipiplugin_facebook.mo share/locale/km/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/km/LC_MESSAGES/kipiplugin_flickr.mo share/locale/km/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/km/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/km/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/km/LC_MESSAGES/kipiplugin_printimages.mo share/locale/km/LC_MESSAGES/kipiplugin_rajce.mo share/locale/km/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/km/LC_MESSAGES/kipiplugin_smug.mo share/locale/km/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/km/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/km/LC_MESSAGES/kipiplugins.mo share/locale/ko/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ko/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ko/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ko/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ko/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ko/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ko/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ko/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ko/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ko/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ko/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ko/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_smug.mo share/locale/ko/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ko/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ko/LC_MESSAGES/kipiplugins.mo share/locale/lt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/lt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/lt/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/lt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/lt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/lt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/lt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/lt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/lt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/lt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/lt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_smug.mo share/locale/lt/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/lt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/lt/LC_MESSAGES/kipiplugins.mo share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lv/LC_MESSAGES/kipiplugins.mo share/locale/mr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/mr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/mr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/mr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/mr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/mr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/mr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/mr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/mr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/mr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_smug.mo share/locale/mr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/mr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/mr/LC_MESSAGES/kipiplugins.mo share/locale/nb/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nb/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nb/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nb/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nb/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nb/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nb/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nb/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nb/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nb/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_smug.mo share/locale/nb/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nb/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nb/LC_MESSAGES/kipiplugins.mo share/locale/nds/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nds/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nds/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nds/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nds/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nds/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nds/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nds/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nds/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nds/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_smug.mo share/locale/nds/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nds/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nds/LC_MESSAGES/kipiplugins.mo share/locale/nl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_smug.mo share/locale/nl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nl/LC_MESSAGES/kipiplugins.mo share/locale/nn/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nn/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nn/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nn/LC_MESSAGES/kipiplugins.mo share/locale/pa/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pa/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pa/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pa/LC_MESSAGES/kipiplugins.mo share/locale/pl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_smug.mo share/locale/pl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pl/LC_MESSAGES/kipiplugins.mo share/locale/pt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt/LC_MESSAGES/kipiplugins.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ro/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ro/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ro/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ro/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ro/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ro/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_smug.mo share/locale/ro/LC_MESSAGES/kipiplugins.mo share/locale/ru/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ru/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ru/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ru/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ru/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ru/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ru/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ru/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ru/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ru/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ru/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_smug.mo share/locale/ru/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ru/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ru/LC_MESSAGES/kipiplugins.mo share/locale/sk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sk/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_smug.mo share/locale/sk/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sk/LC_MESSAGES/kipiplugins.mo share/locale/sl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_smug.mo share/locale/sl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sl/LC_MESSAGES/kipiplugins.mo share/locale/sv/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sv/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sv/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sv/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sv/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sv/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sv/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sv/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sv/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sv/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sv/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_smug.mo share/locale/sv/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sv/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sv/LC_MESSAGES/kipiplugins.mo share/locale/tr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/tr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/tr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/tr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/tr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/tr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/tr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/tr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/tr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/tr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_smug.mo share/locale/tr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/tr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/tr/LC_MESSAGES/kipiplugins.mo share/locale/ug/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ug/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ug/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ug/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ug/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ug/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ug/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ug/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ug/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ug/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_smug.mo share/locale/ug/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ug/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ug/LC_MESSAGES/kipiplugins.mo share/locale/uk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/uk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/uk/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/uk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/uk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/uk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/uk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/uk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/uk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/uk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/uk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_smug.mo share/locale/uk/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/uk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/uk/LC_MESSAGES/kipiplugins.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugins.mo Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 525395) +++ head/graphics/kolourpaint/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373893 -SHA256 (KDE/applications/19.12.1/kolourpaint-19.12.1.tar.xz) = a2db2312ddf79024358309da8b70cb2b9979d208372ce5f0960f662b8aab2518 -SIZE (KDE/applications/19.12.1/kolourpaint-19.12.1.tar.xz) = 5651460 +TIMESTAMP = 1580852894 +SHA256 (KDE/applications/19.12.2/kolourpaint-19.12.2.tar.xz) = ecd00b1990a143661b338ee9e63ac43ece285a1d0e06437f98420f3e949ac244 +SIZE (KDE/applications/19.12.2/kolourpaint-19.12.2.tar.xz) = 5653048 Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 525395) +++ head/graphics/kqtquickcharts/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373893 -SHA256 (KDE/applications/19.12.1/kqtquickcharts-19.12.1.tar.xz) = 641f5c993e627dd6d0778066016d20196b7502e34ab793fcf17dd6b226d08ae8 -SIZE (KDE/applications/19.12.1/kqtquickcharts-19.12.1.tar.xz) = 25624 +TIMESTAMP = 1580852853 +SHA256 (KDE/applications/19.12.2/kqtquickcharts-19.12.2.tar.xz) = acc9d924ea6267e266e1ab86d00041b324236a6e61eeef09d82b701dabed1ba9 +SIZE (KDE/applications/19.12.2/kqtquickcharts-19.12.2.tar.xz) = 25628 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 525395) +++ head/graphics/libkdcraw/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373894 -SHA256 (KDE/applications/19.12.1/libkdcraw-19.12.1.tar.xz) = bbdd5b1b9b40780b5f2be567d9ba0ab163fe7dcc7121070b788106e0fe966c1e -SIZE (KDE/applications/19.12.1/libkdcraw-19.12.1.tar.xz) = 42120 +TIMESTAMP = 1580852887 +SHA256 (KDE/applications/19.12.2/libkdcraw-19.12.2.tar.xz) = 6509df3457c370a0512063f6fdecd1e03e0e5689cacf1369632993e71904fe2e +SIZE (KDE/applications/19.12.2/libkdcraw-19.12.2.tar.xz) = 42080 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 525395) +++ head/graphics/libkexiv2/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373895 -SHA256 (KDE/applications/19.12.1/libkexiv2-19.12.1.tar.xz) = 53b9a4ecda0f76df1a5b9f7b8184b85e847838cf97e4ad3036a6c5bb719993e5 -SIZE (KDE/applications/19.12.1/libkexiv2-19.12.1.tar.xz) = 64552 +TIMESTAMP = 1580852896 +SHA256 (KDE/applications/19.12.2/libkexiv2-19.12.2.tar.xz) = 60a7efd97b47d08865043a13bc245b827bf152c85b8e0f2afed647469d95f430 +SIZE (KDE/applications/19.12.2/libkexiv2-19.12.2.tar.xz) = 64520 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 525395) +++ head/graphics/libkipi/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373895 -SHA256 (KDE/applications/19.12.1/libkipi-19.12.1.tar.xz) = 79f0a994b348467353425aea60dc4f4234c9a259cffcb55ac60d8c195bd0122c -SIZE (KDE/applications/19.12.1/libkipi-19.12.1.tar.xz) = 103284 +TIMESTAMP = 1580852895 +SHA256 (KDE/applications/19.12.2/libkipi-19.12.2.tar.xz) = d5203f66820a7d943d6121d6d594590ab6b225b8a644c0359ce96c0fcc776312 +SIZE (KDE/applications/19.12.2/libkipi-19.12.2.tar.xz) = 103208 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 525395) +++ head/graphics/libksane/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373896 -SHA256 (KDE/applications/19.12.1/libksane-19.12.1.tar.xz) = 5a5998996848e83c80589c8ed0b1a6c1fa48bb61686288d199d831ac810e1603 -SIZE (KDE/applications/19.12.1/libksane-19.12.1.tar.xz) = 138888 +TIMESTAMP = 1580852891 +SHA256 (KDE/applications/19.12.2/libksane-19.12.2.tar.xz) = 0ded753f10da81fa4e6319d5d6d95bfa87b5cd9a8561bddcec498c254cc5ef1a +SIZE (KDE/applications/19.12.2/libksane-19.12.2.tar.xz) = 139876 Index: head/graphics/libksane/pkg-plist =================================================================== --- head/graphics/libksane/pkg-plist (revision 525395) +++ head/graphics/libksane/pkg-plist (revision 525396) @@ -1,65 +1,66 @@ include/KF5/KSane/KSaneWidget include/KF5/KSane/ksane_export.h include/KF5/KSane/ksanewidget.h include/KF5/ksane_version.h lib/cmake/KF5Sane/KF5SaneConfig.cmake lib/cmake/KF5Sane/KF5SaneConfigVersion.cmake lib/cmake/KF5Sane/KF5SaneTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Sane/KF5SaneTargets.cmake lib/libKF5Sane.so lib/libKF5Sane.so.5 lib/libKF5Sane.so.5.55.0 share/icons/hicolor/16x16/actions/black-white.png share/icons/hicolor/16x16/actions/color.png share/icons/hicolor/16x16/actions/gray-scale.png share/locale/ar/LC_MESSAGES/libksane.mo share/locale/bg/LC_MESSAGES/libksane.mo share/locale/bs/LC_MESSAGES/libksane.mo share/locale/ca/LC_MESSAGES/libksane.mo share/locale/ca@valencia/LC_MESSAGES/libksane.mo share/locale/cs/LC_MESSAGES/libksane.mo share/locale/da/LC_MESSAGES/libksane.mo share/locale/de/LC_MESSAGES/libksane.mo share/locale/el/LC_MESSAGES/libksane.mo share/locale/en_GB/LC_MESSAGES/libksane.mo share/locale/eo/LC_MESSAGES/libksane.mo share/locale/es/LC_MESSAGES/libksane.mo share/locale/et/LC_MESSAGES/libksane.mo share/locale/eu/LC_MESSAGES/libksane.mo share/locale/fi/LC_MESSAGES/libksane.mo share/locale/fr/LC_MESSAGES/libksane.mo share/locale/ga/LC_MESSAGES/libksane.mo share/locale/gl/LC_MESSAGES/libksane.mo share/locale/hi/LC_MESSAGES/libksane.mo share/locale/hr/LC_MESSAGES/libksane.mo share/locale/hu/LC_MESSAGES/libksane.mo share/locale/ia/LC_MESSAGES/libksane.mo +share/locale/id/LC_MESSAGES/libksane.mo share/locale/is/LC_MESSAGES/libksane.mo share/locale/it/LC_MESSAGES/libksane.mo share/locale/ja/LC_MESSAGES/libksane.mo share/locale/kk/LC_MESSAGES/libksane.mo share/locale/km/LC_MESSAGES/libksane.mo share/locale/ko/LC_MESSAGES/libksane.mo share/locale/lt/LC_MESSAGES/libksane.mo share/locale/lv/LC_MESSAGES/libksane.mo share/locale/ml/LC_MESSAGES/libksane.mo share/locale/mr/LC_MESSAGES/libksane.mo share/locale/nb/LC_MESSAGES/libksane.mo share/locale/nds/LC_MESSAGES/libksane.mo share/locale/nl/LC_MESSAGES/libksane.mo share/locale/nn/LC_MESSAGES/libksane.mo share/locale/pa/LC_MESSAGES/libksane.mo share/locale/pl/LC_MESSAGES/libksane.mo share/locale/pt/LC_MESSAGES/libksane.mo share/locale/pt_BR/LC_MESSAGES/libksane.mo share/locale/ro/LC_MESSAGES/libksane.mo share/locale/ru/LC_MESSAGES/libksane.mo share/locale/sk/LC_MESSAGES/libksane.mo share/locale/sl/LC_MESSAGES/libksane.mo share/locale/sv/LC_MESSAGES/libksane.mo share/locale/tr/LC_MESSAGES/libksane.mo share/locale/ug/LC_MESSAGES/libksane.mo share/locale/uk/LC_MESSAGES/libksane.mo share/locale/wa/LC_MESSAGES/libksane.mo share/locale/zh_CN/LC_MESSAGES/libksane.mo share/locale/zh_TW/LC_MESSAGES/libksane.mo Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 525395) +++ head/graphics/okular/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373897 -SHA256 (KDE/applications/19.12.1/okular-19.12.1.tar.xz) = 485044127c6bbe0d4c71f1518da15050957c06b8fe36633462367d15d684d4bd -SIZE (KDE/applications/19.12.1/okular-19.12.1.tar.xz) = 7203952 +TIMESTAMP = 1580852886 +SHA256 (KDE/applications/19.12.2/okular-19.12.2.tar.xz) = 4ceaba016576bfc02af3ee50ee90379ac449ba9a1ee33ca094fd77d7a12bc392 +SIZE (KDE/applications/19.12.2/okular-19.12.2.tar.xz) = 7203480 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 525395) +++ head/graphics/spectacle/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373897 -SHA256 (KDE/applications/19.12.1/spectacle-19.12.1.tar.xz) = 140f388c531043eeefff8d639eb468d1ed33397925021c6809c0c8a799bb25c9 -SIZE (KDE/applications/19.12.1/spectacle-19.12.1.tar.xz) = 651628 +TIMESTAMP = 1580852892 +SHA256 (KDE/applications/19.12.2/spectacle-19.12.2.tar.xz) = 546a3205b1a9ac436dedb5625ad1a6bd4f2c8c40d2d1785a44a9e655bb623f7a +SIZE (KDE/applications/19.12.2/spectacle-19.12.2.tar.xz) = 652680 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 525395) +++ head/japanese/kiten/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373898 -SHA256 (KDE/applications/19.12.1/kiten-19.12.1.tar.xz) = abee050c05b54fae25562237b91a14156dabcb26ea142c714b5ec9e1907f54f3 -SIZE (KDE/applications/19.12.1/kiten-19.12.1.tar.xz) = 11288524 +TIMESTAMP = 1580852898 +SHA256 (KDE/applications/19.12.2/kiten-19.12.2.tar.xz) = 277188b3fb6e7305e35a33298377d9aab701fdc7d3d930e17bbd1a75d6a869a0 +SIZE (KDE/applications/19.12.2/kiten-19.12.2.tar.xz) = 11285732 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 525395) +++ head/lang/kross-interpreters/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373899 -SHA256 (KDE/applications/19.12.1/kross-interpreters-19.12.1.tar.xz) = c5ec40971befd1d214d80c8c2ced3e30aaadfd2d4000ea782751f769783f8130 -SIZE (KDE/applications/19.12.1/kross-interpreters-19.12.1.tar.xz) = 151816 +TIMESTAMP = 1580852896 +SHA256 (KDE/applications/19.12.2/kross-interpreters-19.12.2.tar.xz) = fa76f189145e54bcb501da005ffd7136e0389ba97e005d5204ee3bffa283fa10 +SIZE (KDE/applications/19.12.2/kross-interpreters-19.12.2.tar.xz) = 151384 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 525395) +++ head/lang/kturtle/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373899 -SHA256 (KDE/applications/19.12.1/kturtle-19.12.1.tar.xz) = de10ea1ee142aea6fba8dee0d27d2e431aa806c6d7be4f5b5727cba8984e8d51 -SIZE (KDE/applications/19.12.1/kturtle-19.12.1.tar.xz) = 1828692 +TIMESTAMP = 1580852897 +SHA256 (KDE/applications/19.12.2/kturtle-19.12.2.tar.xz) = 1eeeb9964009c79dd4edf4794402a5806f6a2de5f26acc00090d3f94eb0bf81f +SIZE (KDE/applications/19.12.2/kturtle-19.12.2.tar.xz) = 1830004 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 525395) +++ head/math/analitza/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373900 -SHA256 (KDE/applications/19.12.1/analitza-19.12.1.tar.xz) = 0c6c4ee1b4546ab84eb9503220ca0aa09f80cdd7cea3b89201db1d5aac2c4ce5 -SIZE (KDE/applications/19.12.1/analitza-19.12.1.tar.xz) = 333156 +TIMESTAMP = 1580852901 +SHA256 (KDE/applications/19.12.2/analitza-19.12.2.tar.xz) = b64025efd028f1968a3081970d3195d5a3378bc4550b92ef93c149bc2a5bbfe1 +SIZE (KDE/applications/19.12.2/analitza-19.12.2.tar.xz) = 332136 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 525395) +++ head/math/cantor/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373901 -SHA256 (KDE/applications/19.12.1/cantor-19.12.1.tar.xz) = 509ebe0bc173124d28e29483effa07985eef24cdd989e5e4e1fc233632cdf568 -SIZE (KDE/applications/19.12.1/cantor-19.12.1.tar.xz) = 9011172 +TIMESTAMP = 1580852902 +SHA256 (KDE/applications/19.12.2/cantor-19.12.2.tar.xz) = afd25e633372fe829fe2ebe8270060574ca37b11473112da56041bdaed495531 +SIZE (KDE/applications/19.12.2/cantor-19.12.2.tar.xz) = 9010060 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 525395) +++ head/math/kalgebra/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373902 -SHA256 (KDE/applications/19.12.1/kalgebra-19.12.1.tar.xz) = 49d623186800eb8f6fbb91eb43fb14dff78e112624c9cda6b331d494d610b16a -SIZE (KDE/applications/19.12.1/kalgebra-19.12.1.tar.xz) = 1156408 +TIMESTAMP = 1580852906 +SHA256 (KDE/applications/19.12.2/kalgebra-19.12.2.tar.xz) = 0e269eb69c4839a85e60f7d2fc7470073f235805c2f8fefb1831b5946cc0ee53 +SIZE (KDE/applications/19.12.2/kalgebra-19.12.2.tar.xz) = 1156024 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 525395) +++ head/math/kbruch/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373902 -SHA256 (KDE/applications/19.12.1/kbruch-19.12.1.tar.xz) = 94f9951c0ee3b4aea6d649f971f2d946d462b916a76e4e76ddafa809ce7e5550 -SIZE (KDE/applications/19.12.1/kbruch-19.12.1.tar.xz) = 5605632 +TIMESTAMP = 1580852905 +SHA256 (KDE/applications/19.12.2/kbruch-19.12.2.tar.xz) = 83d8a3f3763444341e1fb24707266cc0f8839801d4d00cf3c4e7b5641c5c06cf +SIZE (KDE/applications/19.12.2/kbruch-19.12.2.tar.xz) = 5604600 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 525395) +++ head/math/kcalc/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373903 -SHA256 (KDE/applications/19.12.1/kcalc-19.12.1.tar.xz) = 51630cd5c6d7ebbf35fb91419acfe9b2d2719ebfcdc2fff8358dbfaa2cecda57 -SIZE (KDE/applications/19.12.1/kcalc-19.12.1.tar.xz) = 374860 +TIMESTAMP = 1580852903 +SHA256 (KDE/applications/19.12.2/kcalc-19.12.2.tar.xz) = 80a02f574fa6e81ccf0999b724d65a646eae43df3f7a44297112093cc2d64e44 +SIZE (KDE/applications/19.12.2/kcalc-19.12.2.tar.xz) = 374060 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 525395) +++ head/math/kig/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578509038 -SHA256 (KDE/applications/19.12.1/kig-19.12.1.tar.xz) = 507d89cddc0e128ab398ce0f551af22af0ba1583a4419574296cfefb96d944ee -SIZE (KDE/applications/19.12.1/kig-19.12.1.tar.xz) = 3501216 +TIMESTAMP = 1580852906 +SHA256 (KDE/applications/19.12.2/kig-19.12.2.tar.xz) = 5820eef5e3b28f642ba4f7fef8dc07a3bdf075079cea64de1482041bc18f42c7 +SIZE (KDE/applications/19.12.2/kig-19.12.2.tar.xz) = 3501276 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 525395) +++ head/math/kmplot/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373904 -SHA256 (KDE/applications/19.12.1/kmplot-19.12.1.tar.xz) = b82d9f9d4f3d3447e9125b42918819fe8effd5658d9a385da79e81e12f7466cf -SIZE (KDE/applications/19.12.1/kmplot-19.12.1.tar.xz) = 3054948 +TIMESTAMP = 1580852904 +SHA256 (KDE/applications/19.12.2/kmplot-19.12.2.tar.xz) = 8ba0a386dbc5282f5d104a738f8b73330810ca82de805f0d7ea6cde0845fdea0 +SIZE (KDE/applications/19.12.2/kmplot-19.12.2.tar.xz) = 3055296 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 525395) +++ head/math/rocs/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373905 -SHA256 (KDE/applications/19.12.1/rocs-19.12.1.tar.xz) = cc9ff080b05bd6c48ee438c968917d8eb6f6eccb45ca70b45c5e53dce396bb45 -SIZE (KDE/applications/19.12.1/rocs-19.12.1.tar.xz) = 1523004 +TIMESTAMP = 1580852904 +SHA256 (KDE/applications/19.12.2/rocs-19.12.2.tar.xz) = 767c5dfae8a908432174eafdf33180734470b7cceea1b62a6b4ade375e0c5036 +SIZE (KDE/applications/19.12.2/rocs-19.12.2.tar.xz) = 1516624 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 525395) +++ head/misc/artikulate/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373906 -SHA256 (KDE/applications/19.12.1/artikulate-19.12.1.tar.xz) = 407f72193c7c4ec3f8ac7fa93889803f2ec6523aebb59bdf9a9210e9fac0ee7d -SIZE (KDE/applications/19.12.1/artikulate-19.12.1.tar.xz) = 4004664 +TIMESTAMP = 1580852971 +SHA256 (KDE/applications/19.12.2/artikulate-19.12.2.tar.xz) = 5fc13da43213d6200c43dbcb67990b8db2da751e1268e64ca1fc1794869070ab +SIZE (KDE/applications/19.12.2/artikulate-19.12.2.tar.xz) = 4001912 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 525395) +++ head/misc/kdeedu-data/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373906 -SHA256 (KDE/applications/19.12.1/kdeedu-data-19.12.1.tar.xz) = d140f048e1ca8bd777b4a431904b3313a86446a5fd04e1f9c4e1fb4641a09b15 -SIZE (KDE/applications/19.12.1/kdeedu-data-19.12.1.tar.xz) = 327120 +TIMESTAMP = 1580852972 +SHA256 (KDE/applications/19.12.2/kdeedu-data-19.12.2.tar.xz) = 19ed768b5e18ff4e4751f5d0faad67f06536f1d8d27be253e92226e76924d261 +SIZE (KDE/applications/19.12.2/kdeedu-data-19.12.2.tar.xz) = 328612 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 525395) +++ head/misc/kgeography/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373907 -SHA256 (KDE/applications/19.12.1/kgeography-19.12.1.tar.xz) = 47f809fdb6da503c0b00f5d2052f9def3af0964ace45325e683227a1971c3a1b -SIZE (KDE/applications/19.12.1/kgeography-19.12.1.tar.xz) = 10913756 +TIMESTAMP = 1580852970 +SHA256 (KDE/applications/19.12.2/kgeography-19.12.2.tar.xz) = 904b3d950ea021d58b64d211879085bccb703ef39eb17dc66ab0199845c823f7 +SIZE (KDE/applications/19.12.2/kgeography-19.12.2.tar.xz) = 10855660 Index: head/misc/kgeography/pkg-plist =================================================================== --- head/misc/kgeography/pkg-plist (revision 525395) +++ head/misc/kgeography/pkg-plist (revision 525396) @@ -1,1078 +1,1071 @@ bin/kgeography share/applications/org.kde.kgeography.desktop share/config.kcfg/kgeography.kcfg share/icons/hicolor/128x128/apps/kgeography.png share/icons/hicolor/16x16/apps/kgeography.png share/icons/hicolor/22x22/apps/kgeography.png share/icons/hicolor/32x32/apps/kgeography.png share/icons/hicolor/48x48/apps/kgeography.png share/icons/hicolor/64x64/apps/kgeography.png share/icons/hicolor/scalable/apps/kgeography.svgz %%DATADIR%%/afghanistan.kgm %%DATADIR%%/afghanistan.png %%DATADIR%%/africa.kgm %%DATADIR%%/africa.png %%DATADIR%%/albania_districts.kgm %%DATADIR%%/albania_districts.png %%DATADIR%%/albania_prefectures.kgm %%DATADIR%%/albania_prefectures.png %%DATADIR%%/algeria.kgm %%DATADIR%%/algeria.png %%DATADIR%%/andhrapradesh.kgm %%DATADIR%%/andhrapradesh.png %%DATADIR%%/andorra.kgm %%DATADIR%%/andorra.png %%DATADIR%%/angola_provinces.kgm %%DATADIR%%/angola_provinces.png %%DATADIR%%/argentina.kgm %%DATADIR%%/argentina.png %%DATADIR%%/armenia.kgm %%DATADIR%%/armenia.png %%DATADIR%%/arunachalpradesh.kgm %%DATADIR%%/arunachalpradesh.png %%DATADIR%%/asia.kgm %%DATADIR%%/asia.png %%DATADIR%%/assam-district-map.png %%DATADIR%%/assam.kgm %%DATADIR%%/australia.kgm %%DATADIR%%/australia.png %%DATADIR%%/austria.kgm %%DATADIR%%/austria.png %%DATADIR%%/azerbaijan.kgm %%DATADIR%%/azerbaijan.png %%DATADIR%%/bangladesh.kgm %%DATADIR%%/bangladesh.png %%DATADIR%%/belarus.kgm %%DATADIR%%/belarus.png %%DATADIR%%/belgium.kgm %%DATADIR%%/belgium.png %%DATADIR%%/belize.kgm %%DATADIR%%/belize.png %%DATADIR%%/bhutan.kgm %%DATADIR%%/bhutan.png %%DATADIR%%/bihar-map.png %%DATADIR%%/bihar.kgm %%DATADIR%%/bolivia.kgm %%DATADIR%%/bolivia.png %%DATADIR%%/bosnia-herzegovina.kgm %%DATADIR%%/bosnia-herzegovina.png %%DATADIR%%/botswana.kgm %%DATADIR%%/botswana.png %%DATADIR%%/brazil.kgm %%DATADIR%%/brazil.png %%DATADIR%%/bulgaria.kgm %%DATADIR%%/bulgaria.png %%DATADIR%%/burkina_provinces.kgm %%DATADIR%%/burkina_provinces.png %%DATADIR%%/burkina_regions.kgm %%DATADIR%%/burkina_regions.png %%DATADIR%%/burma.kgm %%DATADIR%%/burma.png %%DATADIR%%/cameroon_departments.kgm %%DATADIR%%/cameroon_departments.png %%DATADIR%%/cameroon_provinces.kgm %%DATADIR%%/cameroon_provinces.png %%DATADIR%%/canada.kgm %%DATADIR%%/canada.png %%DATADIR%%/caribbean.kgm %%DATADIR%%/caribbean.png %%DATADIR%%/catalonia_comarques.kgm %%DATADIR%%/catalonia_comarques.png %%DATADIR%%/chhattisgarh.kgm %%DATADIR%%/chhattisgarh.png %%DATADIR%%/chile.kgm %%DATADIR%%/chile.png %%DATADIR%%/china.kgm %%DATADIR%%/china.png %%DATADIR%%/colombia.kgm %%DATADIR%%/colombia.png %%DATADIR%%/costa_rica.kgm %%DATADIR%%/costa_rica.png %%DATADIR%%/cuba.kgm %%DATADIR%%/cuba.png %%DATADIR%%/cyprus.kgm %%DATADIR%%/cyprus.png %%DATADIR%%/czech.kgm %%DATADIR%%/czech.png %%DATADIR%%/denmark_counties.kgm %%DATADIR%%/denmark_counties.png %%DATADIR%%/dominican_republic.kgm %%DATADIR%%/dominican_republic.png %%DATADIR%%/ecuador.kgm %%DATADIR%%/ecuador.png %%DATADIR%%/egypt.kgm %%DATADIR%%/egypt.png %%DATADIR%%/el_salvador.kgm %%DATADIR%%/el_salvador.png %%DATADIR%%/emirates.kgm %%DATADIR%%/emirates.png %%DATADIR%%/estonia.kgm %%DATADIR%%/estonia.png %%DATADIR%%/europe.kgm %%DATADIR%%/europe.png %%DATADIR%%/finland_regions.kgm %%DATADIR%%/finland_regions.png %%DATADIR%%/flags/Monaco.png %%DATADIR%%/flags/SriLanka.png %%DATADIR%%/flags/Vatican.png %%DATADIR%%/flags/afghanistan.png %%DATADIR%%/flags/albania.png %%DATADIR%%/flags/algeria.png %%DATADIR%%/flags/american_samoa.png %%DATADIR%%/flags/andorra.png %%DATADIR%%/flags/angola.png %%DATADIR%%/flags/anguilla.png %%DATADIR%%/flags/antigua.png %%DATADIR%%/flags/argentina.png %%DATADIR%%/flags/armenia.png %%DATADIR%%/flags/aruba.png %%DATADIR%%/flags/australia.png %%DATADIR%%/flags/australia/australian_capital_territory.png %%DATADIR%%/flags/australia/new_south_wales.png %%DATADIR%%/flags/australia/northern_territory.png %%DATADIR%%/flags/australia/queensland.png %%DATADIR%%/flags/australia/south_australia.png %%DATADIR%%/flags/australia/tasmania.png %%DATADIR%%/flags/australia/victoria.png %%DATADIR%%/flags/australia/western_australia.png %%DATADIR%%/flags/austria.png %%DATADIR%%/flags/azerbaijan.png %%DATADIR%%/flags/bahamas.png %%DATADIR%%/flags/bahrain.png %%DATADIR%%/flags/bangladesh.png %%DATADIR%%/flags/barbados.png %%DATADIR%%/flags/belarus.png %%DATADIR%%/flags/belarus/Brest.png %%DATADIR%%/flags/belarus/Homyel.png %%DATADIR%%/flags/belarus/Hrodna.png %%DATADIR%%/flags/belarus/Mahilyow.png %%DATADIR%%/flags/belarus/Minsk.png %%DATADIR%%/flags/belarus/Minsk_vobl.png %%DATADIR%%/flags/belarus/Vitebsk.png %%DATADIR%%/flags/belgium.png %%DATADIR%%/flags/belgium/antwerp.png %%DATADIR%%/flags/belgium/brussels.png %%DATADIR%%/flags/belgium/east_flanders.png %%DATADIR%%/flags/belgium/flemish_brabant.png %%DATADIR%%/flags/belgium/hainaut.png %%DATADIR%%/flags/belgium/liege.png %%DATADIR%%/flags/belgium/limburg.png %%DATADIR%%/flags/belgium/luxembourg.png %%DATADIR%%/flags/belgium/namur.png %%DATADIR%%/flags/belgium/walloon_brabant.png %%DATADIR%%/flags/belgium/west_flanders.png %%DATADIR%%/flags/belize.png %%DATADIR%%/flags/benin.png %%DATADIR%%/flags/bhutan.png %%DATADIR%%/flags/bolivia.png %%DATADIR%%/flags/bosnia_herzegovina.png %%DATADIR%%/flags/botswana.png %%DATADIR%%/flags/brazil.png %%DATADIR%%/flags/brazil/br_AC.png %%DATADIR%%/flags/brazil/br_AL.png %%DATADIR%%/flags/brazil/br_AM.png %%DATADIR%%/flags/brazil/br_AP.png %%DATADIR%%/flags/brazil/br_BA.png %%DATADIR%%/flags/brazil/br_CE.png %%DATADIR%%/flags/brazil/br_DF.png %%DATADIR%%/flags/brazil/br_ES.png %%DATADIR%%/flags/brazil/br_GO.png %%DATADIR%%/flags/brazil/br_MA.png %%DATADIR%%/flags/brazil/br_MG.png %%DATADIR%%/flags/brazil/br_MS.png %%DATADIR%%/flags/brazil/br_MT.png %%DATADIR%%/flags/brazil/br_PA.png %%DATADIR%%/flags/brazil/br_PE.png %%DATADIR%%/flags/brazil/br_PI.png %%DATADIR%%/flags/brazil/br_PN.png %%DATADIR%%/flags/brazil/br_PR.png %%DATADIR%%/flags/brazil/br_RJ.png %%DATADIR%%/flags/brazil/br_RN.png %%DATADIR%%/flags/brazil/br_RO.png %%DATADIR%%/flags/brazil/br_RR.png %%DATADIR%%/flags/brazil/br_RS.png %%DATADIR%%/flags/brazil/br_SC.png %%DATADIR%%/flags/brazil/br_SE.png %%DATADIR%%/flags/brazil/br_SP.png %%DATADIR%%/flags/brazil/br_TO.png %%DATADIR%%/flags/british_virgin_islands.png %%DATADIR%%/flags/brunei.png %%DATADIR%%/flags/bulgaria.png %%DATADIR%%/flags/burkina.png %%DATADIR%%/flags/burundi.png %%DATADIR%%/flags/cambodia.png %%DATADIR%%/flags/cameroon.png %%DATADIR%%/flags/canada.png %%DATADIR%%/flags/canada/alberta.png %%DATADIR%%/flags/canada/bc.png %%DATADIR%%/flags/canada/manitoba.png %%DATADIR%%/flags/canada/newbrunswick.png %%DATADIR%%/flags/canada/newfoundland.png %%DATADIR%%/flags/canada/novascotia.png %%DATADIR%%/flags/canada/nunavut.png %%DATADIR%%/flags/canada/nwterritories.png %%DATADIR%%/flags/canada/ontario.png %%DATADIR%%/flags/canada/pei.png %%DATADIR%%/flags/canada/quebec.png %%DATADIR%%/flags/canada/saskatchewan.png %%DATADIR%%/flags/canada/yukon.png %%DATADIR%%/flags/cape_verde.png %%DATADIR%%/flags/cayman_islands.png %%DATADIR%%/flags/central_african_republic.png %%DATADIR%%/flags/chad.png %%DATADIR%%/flags/chile.png %%DATADIR%%/flags/china.png %%DATADIR%%/flags/colombia.png %%DATADIR%%/flags/colombia/amazonas.png %%DATADIR%%/flags/colombia/antioquia.png %%DATADIR%%/flags/colombia/arauca.png %%DATADIR%%/flags/colombia/atlantico.png %%DATADIR%%/flags/colombia/bolivar.png %%DATADIR%%/flags/colombia/boyaca.png %%DATADIR%%/flags/colombia/caldas.png %%DATADIR%%/flags/colombia/caqueta.png %%DATADIR%%/flags/colombia/casanare.png %%DATADIR%%/flags/colombia/cauca.png %%DATADIR%%/flags/colombia/cesar.png %%DATADIR%%/flags/colombia/choco.png %%DATADIR%%/flags/colombia/cordoba.png %%DATADIR%%/flags/colombia/cundinamarca.png %%DATADIR%%/flags/colombia/dc.png %%DATADIR%%/flags/colombia/guainia.png %%DATADIR%%/flags/colombia/guajira.png %%DATADIR%%/flags/colombia/guaviare.png %%DATADIR%%/flags/colombia/huila.png %%DATADIR%%/flags/colombia/magdalena.png %%DATADIR%%/flags/colombia/meta.png %%DATADIR%%/flags/colombia/narinyo.png %%DATADIR%%/flags/colombia/nsantander.png %%DATADIR%%/flags/colombia/putumayo.png %%DATADIR%%/flags/colombia/quindio.png %%DATADIR%%/flags/colombia/risaralda.png %%DATADIR%%/flags/colombia/santander.png %%DATADIR%%/flags/colombia/standrew.png %%DATADIR%%/flags/colombia/sucre.png %%DATADIR%%/flags/colombia/tolima.png %%DATADIR%%/flags/colombia/valle.png %%DATADIR%%/flags/colombia/vaupes.png %%DATADIR%%/flags/colombia/vichada.png %%DATADIR%%/flags/comoros.png %%DATADIR%%/flags/congo_brazzaville.png %%DATADIR%%/flags/congo_kinshasa.png %%DATADIR%%/flags/cook_islands.png %%DATADIR%%/flags/costa_rica.png %%DATADIR%%/flags/cote_divoire.png %%DATADIR%%/flags/croatia.png %%DATADIR%%/flags/cuba_3x2.png %%DATADIR%%/flags/cyprus_4x3.png %%DATADIR%%/flags/czech.png %%DATADIR%%/flags/denmark.png %%DATADIR%%/flags/djibouti.png %%DATADIR%%/flags/dominica.png %%DATADIR%%/flags/dominicanrepublic.png %%DATADIR%%/flags/dutch_antilles.png %%DATADIR%%/flags/easter_island.png %%DATADIR%%/flags/easttimor.png %%DATADIR%%/flags/ecuador.png %%DATADIR%%/flags/egypt.png %%DATADIR%%/flags/el_salvador.png %%DATADIR%%/flags/equatorial_guinea.png %%DATADIR%%/flags/eritrea.png %%DATADIR%%/flags/estonia.png %%DATADIR%%/flags/estonia/Harjumaa_flag.png %%DATADIR%%/flags/estonia/Hiiumaa_flag.png %%DATADIR%%/flags/estonia/Ida-Virumaa_flag.png %%DATADIR%%/flags/estonia/Jarvamaa_flag.png %%DATADIR%%/flags/estonia/Jogevamaa_flag.png %%DATADIR%%/flags/estonia/Laane-Virumaa_flag.png %%DATADIR%%/flags/estonia/Laanemaa_flag.png %%DATADIR%%/flags/estonia/Parnumaa_flag.png %%DATADIR%%/flags/estonia/Polvamaa_flag.png %%DATADIR%%/flags/estonia/Raplamaa_flag.png %%DATADIR%%/flags/estonia/Saaremaa_flag.png %%DATADIR%%/flags/estonia/Tartumaa_flag.png %%DATADIR%%/flags/estonia/Valgamaa_flag.png %%DATADIR%%/flags/estonia/Viljandimaa_flag.png %%DATADIR%%/flags/estonia/Vorumaa_flag.png %%DATADIR%%/flags/ethiopia.png %%DATADIR%%/flags/fiji.png %%DATADIR%%/flags/finland.png %%DATADIR%%/flags/france.png %%DATADIR%%/flags/france/alsace.png %%DATADIR%%/flags/france/aquitaine.png %%DATADIR%%/flags/france/auvergne.png %%DATADIR%%/flags/france/basse_normandie.png %%DATADIR%%/flags/france/bourgogne.png %%DATADIR%%/flags/france/bretagne.png %%DATADIR%%/flags/france/centre_val_de_loire.png %%DATADIR%%/flags/france/champagne-ardennes.png %%DATADIR%%/flags/france/corse.png %%DATADIR%%/flags/france/franche_comte.png %%DATADIR%%/flags/france/haute_normandie.png %%DATADIR%%/flags/france/ile_de_france.png %%DATADIR%%/flags/france/languedoc_roussillon.png %%DATADIR%%/flags/france/limousin.png %%DATADIR%%/flags/france/lorraine.png %%DATADIR%%/flags/france/midi_pyrenees.png %%DATADIR%%/flags/france/nord-pas_de_calais.png %%DATADIR%%/flags/france/pays_de_la_loire.png %%DATADIR%%/flags/france/picardie.png %%DATADIR%%/flags/france/poitou_charentes.png %%DATADIR%%/flags/france/provence_alpes_cote_d_azur.png %%DATADIR%%/flags/france/rhone_alpes.png %%DATADIR%%/flags/french_polynesia.png %%DATADIR%%/flags/gabon.png %%DATADIR%%/flags/gambia.png %%DATADIR%%/flags/georgia.png %%DATADIR%%/flags/germany.png %%DATADIR%%/flags/germany/baden_wurttemberg.png %%DATADIR%%/flags/germany/bavaria.png %%DATADIR%%/flags/germany/berlin.png %%DATADIR%%/flags/germany/brandenburg.png %%DATADIR%%/flags/germany/bremen.png %%DATADIR%%/flags/germany/hamburg.png %%DATADIR%%/flags/germany/hesse.png %%DATADIR%%/flags/germany/lower_saxony.png %%DATADIR%%/flags/germany/mecklenburg_western_pomerania.png %%DATADIR%%/flags/germany/north_rhine_westphalia.png %%DATADIR%%/flags/germany/rhineland_palatinate.png %%DATADIR%%/flags/germany/saarland.png %%DATADIR%%/flags/germany/saxony.png %%DATADIR%%/flags/germany/saxony_anhalt.png %%DATADIR%%/flags/germany/schleswig_holstein.png %%DATADIR%%/flags/germany/thuringia.png %%DATADIR%%/flags/ghana.png %%DATADIR%%/flags/ghana/ashanti.png %%DATADIR%%/flags/ghana/brongahafo.png %%DATADIR%%/flags/ghana/central.png %%DATADIR%%/flags/ghana/eastern.png %%DATADIR%%/flags/ghana/greateraccra.png %%DATADIR%%/flags/ghana/volta.png %%DATADIR%%/flags/ghana/western.png %%DATADIR%%/flags/greece.png %%DATADIR%%/flags/greenland.png %%DATADIR%%/flags/grenada.png %%DATADIR%%/flags/guam.png %%DATADIR%%/flags/guatemala.png %%DATADIR%%/flags/guinea.png %%DATADIR%%/flags/guineabissau.png %%DATADIR%%/flags/guyana.png %%DATADIR%%/flags/haiti.png %%DATADIR%%/flags/honduras.png %%DATADIR%%/flags/hungary.png %%DATADIR%%/flags/iceland.png %%DATADIR%%/flags/india.png %%DATADIR%%/flags/indonesia.png %%DATADIR%%/flags/iran.png %%DATADIR%%/flags/iraq.png %%DATADIR%%/flags/ireland.png %%DATADIR%%/flags/ireland/connacht.png %%DATADIR%%/flags/ireland/leinster.png %%DATADIR%%/flags/ireland/munster.png %%DATADIR%%/flags/ireland/ulster.png %%DATADIR%%/flags/israel.png %%DATADIR%%/flags/italy.png %%DATADIR%%/flags/italy/it-abr200.png %%DATADIR%%/flags/italy/it-aos200.png %%DATADIR%%/flags/italy/it-bas200.png %%DATADIR%%/flags/italy/it-cal200.png %%DATADIR%%/flags/italy/it-cam200.png %%DATADIR%%/flags/italy/it-emi200.png %%DATADIR%%/flags/italy/it-fri200.png %%DATADIR%%/flags/italy/it-lat200.png %%DATADIR%%/flags/italy/it-lig200.png %%DATADIR%%/flags/italy/it-lom200.png %%DATADIR%%/flags/italy/it-mar200.png %%DATADIR%%/flags/italy/it-mol200.png %%DATADIR%%/flags/italy/it-pie200.png %%DATADIR%%/flags/italy/it-pug200.png %%DATADIR%%/flags/italy/it-sar200.png %%DATADIR%%/flags/italy/it-sic200.png %%DATADIR%%/flags/italy/it-tre200.png %%DATADIR%%/flags/italy/it-tus200.png %%DATADIR%%/flags/italy/it-umb200.png %%DATADIR%%/flags/italy/it-ven200.png %%DATADIR%%/flags/jamaica.png %%DATADIR%%/flags/japan.png %%DATADIR%%/flags/japan/jp-aichi.png %%DATADIR%%/flags/japan/jp-akita.png %%DATADIR%%/flags/japan/jp-aomori.png %%DATADIR%%/flags/japan/jp-chiba.png %%DATADIR%%/flags/japan/jp-ehime.png %%DATADIR%%/flags/japan/jp-fukui.png %%DATADIR%%/flags/japan/jp-fukuoka.png %%DATADIR%%/flags/japan/jp-fukushima.png %%DATADIR%%/flags/japan/jp-gifu.png %%DATADIR%%/flags/japan/jp-gunma.png %%DATADIR%%/flags/japan/jp-hiroshima.png %%DATADIR%%/flags/japan/jp-hokkaido.png %%DATADIR%%/flags/japan/jp-hyogo.png %%DATADIR%%/flags/japan/jp-ibaraki.png %%DATADIR%%/flags/japan/jp-ishikawa.png %%DATADIR%%/flags/japan/jp-iwate.png %%DATADIR%%/flags/japan/jp-kagawa.png %%DATADIR%%/flags/japan/jp-kagoshima.png %%DATADIR%%/flags/japan/jp-kanagawa.png %%DATADIR%%/flags/japan/jp-kochi.png %%DATADIR%%/flags/japan/jp-kumamoto.png %%DATADIR%%/flags/japan/jp-kyoto.png %%DATADIR%%/flags/japan/jp-mie.png %%DATADIR%%/flags/japan/jp-miyagi.png %%DATADIR%%/flags/japan/jp-miyazaki.png %%DATADIR%%/flags/japan/jp-nagano.png %%DATADIR%%/flags/japan/jp-nagasaki.png %%DATADIR%%/flags/japan/jp-nara.png %%DATADIR%%/flags/japan/jp-niigata.png %%DATADIR%%/flags/japan/jp-oita.png %%DATADIR%%/flags/japan/jp-okayama.png %%DATADIR%%/flags/japan/jp-okinawa.png %%DATADIR%%/flags/japan/jp-osaka.png %%DATADIR%%/flags/japan/jp-saga.png %%DATADIR%%/flags/japan/jp-saitama.png %%DATADIR%%/flags/japan/jp-shiga.png %%DATADIR%%/flags/japan/jp-shimane.png %%DATADIR%%/flags/japan/jp-shizuoka.png %%DATADIR%%/flags/japan/jp-tochigi.png %%DATADIR%%/flags/japan/jp-tokushima.png %%DATADIR%%/flags/japan/jp-tokyo.png %%DATADIR%%/flags/japan/jp-tottori.png %%DATADIR%%/flags/japan/jp-toyama.png %%DATADIR%%/flags/japan/jp-wakayama.png %%DATADIR%%/flags/japan/jp-yamagata.png %%DATADIR%%/flags/japan/jp-yamaguchi.png %%DATADIR%%/flags/japan/jp-yamanashi.png %%DATADIR%%/flags/jordan.png %%DATADIR%%/flags/kazakhstan.png %%DATADIR%%/flags/kenya.png %%DATADIR%%/flags/kiribati.png %%DATADIR%%/flags/kuwait.png %%DATADIR%%/flags/kyrgyzstan.png %%DATADIR%%/flags/laos.png %%DATADIR%%/flags/latvia.png %%DATADIR%%/flags/lebanon.png %%DATADIR%%/flags/lesotho.png %%DATADIR%%/flags/liberia.png %%DATADIR%%/flags/libya.png %%DATADIR%%/flags/liechtenstein.png %%DATADIR%%/flags/lithuania.png %%DATADIR%%/flags/luxembourg.png %%DATADIR%%/flags/macedonia.png %%DATADIR%%/flags/madagascar.png %%DATADIR%%/flags/madeira.png %%DATADIR%%/flags/malawi.png %%DATADIR%%/flags/malaysia.png %%DATADIR%%/flags/mali.png %%DATADIR%%/flags/malta.png %%DATADIR%%/flags/marshall_islands.png %%DATADIR%%/flags/martinique.png %%DATADIR%%/flags/mauritania.png %%DATADIR%%/flags/mauritius.png %%DATADIR%%/flags/mexico.png %%DATADIR%%/flags/micronesia.png %%DATADIR%%/flags/moldova.png %%DATADIR%%/flags/mongolia.png %%DATADIR%%/flags/montenegro.png %%DATADIR%%/flags/montserrat.png %%DATADIR%%/flags/morocco.png %%DATADIR%%/flags/mozambique.png %%DATADIR%%/flags/myanmar.png %%DATADIR%%/flags/namibia.png %%DATADIR%%/flags/nauru.png %%DATADIR%%/flags/nepal.png %%DATADIR%%/flags/netherlands.png %%DATADIR%%/flags/new_caledonia.png %%DATADIR%%/flags/new_zealand.png %%DATADIR%%/flags/nicaragua.png %%DATADIR%%/flags/niger.png %%DATADIR%%/flags/nigeria.png %%DATADIR%%/flags/niue.png %%DATADIR%%/flags/nkorea.png %%DATADIR%%/flags/norfolk_island.png %%DATADIR%%/flags/northern_mariana_islands.png -%%DATADIR%%/flags/norway/akershus.png -%%DATADIR%%/flags/norway/aust-agder.png -%%DATADIR%%/flags/norway/buskerud.png -%%DATADIR%%/flags/norway/finnmark.png -%%DATADIR%%/flags/norway/hedmark.png -%%DATADIR%%/flags/norway/hordaland.png +%%DATADIR%%/flags/norway.png +%%DATADIR%%/flags/norway/agder.png +%%DATADIR%%/flags/norway/innlandet.png %%DATADIR%%/flags/norway/more_og_romsdal.png %%DATADIR%%/flags/norway/nordland.png -%%DATADIR%%/flags/norway/oppland.png %%DATADIR%%/flags/norway/oslo.png -%%DATADIR%%/flags/norway/ostfold.png %%DATADIR%%/flags/norway/rogaland.png -%%DATADIR%%/flags/norway/sogn_og_fjordane.png -%%DATADIR%%/flags/norway/telemark.png -%%DATADIR%%/flags/norway/troms.png +%%DATADIR%%/flags/norway/troms_og_finnmark.png %%DATADIR%%/flags/norway/trondelag.png -%%DATADIR%%/flags/norway/vest-agder.png -%%DATADIR%%/flags/norway/vestfold.png -%%DATADIR%%/flags/norway.png +%%DATADIR%%/flags/norway/vestfold_og_telemark.png +%%DATADIR%%/flags/norway/vestland.png +%%DATADIR%%/flags/norway/viken.png %%DATADIR%%/flags/oman.png %%DATADIR%%/flags/pakistan.png %%DATADIR%%/flags/palau.png %%DATADIR%%/flags/panama.png %%DATADIR%%/flags/papua_new_guinea.png %%DATADIR%%/flags/paraguay.png %%DATADIR%%/flags/peru.png %%DATADIR%%/flags/peru/amazonas.png %%DATADIR%%/flags/peru/ancash.png %%DATADIR%%/flags/peru/apurimac.png %%DATADIR%%/flags/peru/arequipa.png %%DATADIR%%/flags/peru/ayacucho.png %%DATADIR%%/flags/peru/cajamarca.png %%DATADIR%%/flags/peru/cusco.png %%DATADIR%%/flags/peru/huancavelica.png %%DATADIR%%/flags/peru/huanuco.png %%DATADIR%%/flags/peru/ica.png %%DATADIR%%/flags/peru/junin.png %%DATADIR%%/flags/peru/la_libertad.png %%DATADIR%%/flags/peru/lambayeque.png %%DATADIR%%/flags/peru/lima.png %%DATADIR%%/flags/peru/loreto.png %%DATADIR%%/flags/peru/madre_de_dios.png %%DATADIR%%/flags/peru/moquegua.png %%DATADIR%%/flags/peru/pasco.png %%DATADIR%%/flags/peru/piura.png %%DATADIR%%/flags/peru/puno.png %%DATADIR%%/flags/peru/san_martin.png %%DATADIR%%/flags/peru/tacna.png %%DATADIR%%/flags/peru/tumbes.png %%DATADIR%%/flags/peru/ucayali.png %%DATADIR%%/flags/philippines.png %%DATADIR%%/flags/pitcairn_islands.png %%DATADIR%%/flags/poland.png %%DATADIR%%/flags/portugal.png %%DATADIR%%/flags/portugal/aveiro.png %%DATADIR%%/flags/portugal/azores.png %%DATADIR%%/flags/portugal/beja.png %%DATADIR%%/flags/portugal/braga.png %%DATADIR%%/flags/portugal/braganca.png %%DATADIR%%/flags/portugal/castelo_branco.png %%DATADIR%%/flags/portugal/coimbra.png %%DATADIR%%/flags/portugal/evora.png %%DATADIR%%/flags/portugal/faro.png %%DATADIR%%/flags/portugal/guarda.png %%DATADIR%%/flags/portugal/leiria.png %%DATADIR%%/flags/portugal/lisboa.png %%DATADIR%%/flags/portugal/madeira.png %%DATADIR%%/flags/portugal/portalegre.png %%DATADIR%%/flags/portugal/porto.png %%DATADIR%%/flags/portugal/santarem.png %%DATADIR%%/flags/portugal/setubal.png %%DATADIR%%/flags/portugal/viana_do_castelo.png %%DATADIR%%/flags/portugal/vila_real.png %%DATADIR%%/flags/portugal/viseu.png %%DATADIR%%/flags/puerto_rico.png %%DATADIR%%/flags/qatar.png %%DATADIR%%/flags/romania.png %%DATADIR%%/flags/russia.png %%DATADIR%%/flags/russia/adygeya.png %%DATADIR%%/flags/russia/altai_krai.png %%DATADIR%%/flags/russia/altai_republic.png %%DATADIR%%/flags/russia/amur_oblast.png %%DATADIR%%/flags/russia/arkhangelsk_oblast.png %%DATADIR%%/flags/russia/astrakhan_oblast.png %%DATADIR%%/flags/russia/bashkortostan.png %%DATADIR%%/flags/russia/belgorod_oblast.png %%DATADIR%%/flags/russia/bryansk_oblast.png %%DATADIR%%/flags/russia/buryatia.png %%DATADIR%%/flags/russia/chechen_republic.png %%DATADIR%%/flags/russia/chelyabinsk_oblast.png %%DATADIR%%/flags/russia/chukotka.png %%DATADIR%%/flags/russia/chuvashia.png %%DATADIR%%/flags/russia/dagestan.png %%DATADIR%%/flags/russia/ingushetia.png %%DATADIR%%/flags/russia/irkutsk_oblast.png %%DATADIR%%/flags/russia/ivanovo_oblast.png %%DATADIR%%/flags/russia/jewish_autonomous_oblast.png %%DATADIR%%/flags/russia/kabardino-balkaria.png %%DATADIR%%/flags/russia/kaliningrad_oblast.png %%DATADIR%%/flags/russia/kalmykia.png %%DATADIR%%/flags/russia/kaluga_oblast.png %%DATADIR%%/flags/russia/kamchatka_krai.png %%DATADIR%%/flags/russia/karachay-cherkessia.png %%DATADIR%%/flags/russia/karelia.png %%DATADIR%%/flags/russia/kemerovo_oblast.png %%DATADIR%%/flags/russia/khabarovsk_krai.png %%DATADIR%%/flags/russia/khakassia.png %%DATADIR%%/flags/russia/khantia-mansia.png %%DATADIR%%/flags/russia/kirov_oblast.png %%DATADIR%%/flags/russia/komi.png %%DATADIR%%/flags/russia/kostroma_oblast.png %%DATADIR%%/flags/russia/krasnodar_krai.png %%DATADIR%%/flags/russia/krasnoyarsk_krai.png %%DATADIR%%/flags/russia/kurgan_oblast.png %%DATADIR%%/flags/russia/kursk_oblast.png %%DATADIR%%/flags/russia/leningrad_oblast.png %%DATADIR%%/flags/russia/lipetsk_oblast.png %%DATADIR%%/flags/russia/magadan_oblast.png %%DATADIR%%/flags/russia/mari_el.png %%DATADIR%%/flags/russia/mordovia.png %%DATADIR%%/flags/russia/moscow.png %%DATADIR%%/flags/russia/moscow_oblast.png %%DATADIR%%/flags/russia/murmansk_oblast.png %%DATADIR%%/flags/russia/nenets_autonomous_district.png %%DATADIR%%/flags/russia/nizhny_novgorod_oblast.png %%DATADIR%%/flags/russia/north_ossetia.png %%DATADIR%%/flags/russia/novgorod_oblast.png %%DATADIR%%/flags/russia/novosibirsk_oblast.png %%DATADIR%%/flags/russia/omsk_oblast.png %%DATADIR%%/flags/russia/orenburg_oblast.png %%DATADIR%%/flags/russia/oryol_oblast.png %%DATADIR%%/flags/russia/penza_oblast.png %%DATADIR%%/flags/russia/perm_krai.png %%DATADIR%%/flags/russia/primorsky_krai.png %%DATADIR%%/flags/russia/rostov_oblast.png %%DATADIR%%/flags/russia/ryazan_oblast.png %%DATADIR%%/flags/russia/saint_petersburg.png %%DATADIR%%/flags/russia/sakha.png %%DATADIR%%/flags/russia/sakhalin_oblast.png %%DATADIR%%/flags/russia/samara_oblast.png %%DATADIR%%/flags/russia/saratov_oblast.png %%DATADIR%%/flags/russia/smolensk_oblast.png %%DATADIR%%/flags/russia/stavropol_krai.png %%DATADIR%%/flags/russia/sverdlovsk_oblast.png %%DATADIR%%/flags/russia/tambov_oblast.png %%DATADIR%%/flags/russia/tatarstan.png %%DATADIR%%/flags/russia/tomsk_oblast.png %%DATADIR%%/flags/russia/tula_oblast.png %%DATADIR%%/flags/russia/tuva.png %%DATADIR%%/flags/russia/tver_oblast.png %%DATADIR%%/flags/russia/tyumen_oblast.png %%DATADIR%%/flags/russia/udmurtia.png %%DATADIR%%/flags/russia/ulyanovsk_oblast.png %%DATADIR%%/flags/russia/vladimir_oblast.png %%DATADIR%%/flags/russia/volgograd_oblast.png %%DATADIR%%/flags/russia/vologda_oblast.png %%DATADIR%%/flags/russia/voronezh_oblast.png %%DATADIR%%/flags/russia/yamal-nenets_autonomous_district.png %%DATADIR%%/flags/russia/yaroslavl_oblast.png %%DATADIR%%/flags/russia/zabaykalsky_krai.png %%DATADIR%%/flags/rwanda.png %%DATADIR%%/flags/saint_lucia.png %%DATADIR%%/flags/samoa.png %%DATADIR%%/flags/san_marino.png %%DATADIR%%/flags/sao_tome_and_principe.png %%DATADIR%%/flags/saudiarabia.png %%DATADIR%%/flags/senegal.png %%DATADIR%%/flags/serbia.png %%DATADIR%%/flags/seychelles.png %%DATADIR%%/flags/sierra_leone.png %%DATADIR%%/flags/singapore.png %%DATADIR%%/flags/skorea.png %%DATADIR%%/flags/slovakia.png %%DATADIR%%/flags/slovakia/Banskobystricky_vlajka.png %%DATADIR%%/flags/slovakia/Bratislavsky_vlajka.png %%DATADIR%%/flags/slovakia/Kosicky_vlajka.png %%DATADIR%%/flags/slovakia/Nitriansky_vlajka.png %%DATADIR%%/flags/slovakia/Presovsky_vlajka.png %%DATADIR%%/flags/slovakia/Trenciansky_vlajka.png %%DATADIR%%/flags/slovakia/Trnavsky_vlajka.png %%DATADIR%%/flags/slovakia/Zilinsky_vlajka.png %%DATADIR%%/flags/slovenia.png %%DATADIR%%/flags/solomon_islands.png %%DATADIR%%/flags/somalia.png %%DATADIR%%/flags/southafrica.png %%DATADIR%%/flags/southsudan.png %%DATADIR%%/flags/spain.png %%DATADIR%%/flags/spain/andalucia.png %%DATADIR%%/flags/spain/aragon.png %%DATADIR%%/flags/spain/asturias.png %%DATADIR%%/flags/spain/balearic_islands.png %%DATADIR%%/flags/spain/basque_country.png %%DATADIR%%/flags/spain/canary_islands.png %%DATADIR%%/flags/spain/cantabria.png %%DATADIR%%/flags/spain/castilla_la_mancha.png %%DATADIR%%/flags/spain/castilla_y_leon.png %%DATADIR%%/flags/spain/catalonia.png %%DATADIR%%/flags/spain/extremadura.png %%DATADIR%%/flags/spain/galicia.png %%DATADIR%%/flags/spain/la_rioja.png %%DATADIR%%/flags/spain/madrid.png %%DATADIR%%/flags/spain/murcia.png %%DATADIR%%/flags/spain/navarre.png %%DATADIR%%/flags/spain/valencia.png %%DATADIR%%/flags/st_helena.png %%DATADIR%%/flags/st_kitts_and_nevis.png %%DATADIR%%/flags/st_vincent_and_grenadines.png %%DATADIR%%/flags/sudan.png %%DATADIR%%/flags/suriname.png %%DATADIR%%/flags/swaziland.png %%DATADIR%%/flags/sweden.png %%DATADIR%%/flags/switzerland.png %%DATADIR%%/flags/syria.png %%DATADIR%%/flags/taiwan.png %%DATADIR%%/flags/tajikistan.png %%DATADIR%%/flags/tanzania.png %%DATADIR%%/flags/thailand.png %%DATADIR%%/flags/togo.png %%DATADIR%%/flags/tokelau.png %%DATADIR%%/flags/tonga.png %%DATADIR%%/flags/trinidad_tobago.png %%DATADIR%%/flags/tunisia.png %%DATADIR%%/flags/turk_and_caicos_islands.png %%DATADIR%%/flags/turkey.png %%DATADIR%%/flags/turkmenistan.png %%DATADIR%%/flags/tuvalu.png %%DATADIR%%/flags/uae.png %%DATADIR%%/flags/uganda.png %%DATADIR%%/flags/uk.png %%DATADIR%%/flags/ukraine.png %%DATADIR%%/flags/ukraine/Cherkasy.png %%DATADIR%%/flags/ukraine/Chernigiv.png %%DATADIR%%/flags/ukraine/Chernivtsi.png %%DATADIR%%/flags/ukraine/Crimea.png %%DATADIR%%/flags/ukraine/Dnipopetrovsk.png %%DATADIR%%/flags/ukraine/Donetsk.png %%DATADIR%%/flags/ukraine/Ivano-Frankivsk.png %%DATADIR%%/flags/ukraine/Kharkiv.png %%DATADIR%%/flags/ukraine/Kherson.png %%DATADIR%%/flags/ukraine/Khmelnitsky.png %%DATADIR%%/flags/ukraine/Kirovohrad.png %%DATADIR%%/flags/ukraine/Kyiv-city.png %%DATADIR%%/flags/ukraine/Kyiv.png %%DATADIR%%/flags/ukraine/Lugansk.png %%DATADIR%%/flags/ukraine/Lviv.png %%DATADIR%%/flags/ukraine/Mykolayiv.png %%DATADIR%%/flags/ukraine/Odesa.png %%DATADIR%%/flags/ukraine/Poltava.png %%DATADIR%%/flags/ukraine/Rivne.png %%DATADIR%%/flags/ukraine/Sevastopol-city.png %%DATADIR%%/flags/ukraine/Sumi.png %%DATADIR%%/flags/ukraine/Ternopil.png %%DATADIR%%/flags/ukraine/Vinnytsa.png %%DATADIR%%/flags/ukraine/Volyn.png %%DATADIR%%/flags/ukraine/Zakarpatya.png %%DATADIR%%/flags/ukraine/Zaporizhya.png %%DATADIR%%/flags/ukraine/Zhitomir.png %%DATADIR%%/flags/uruguay.png %%DATADIR%%/flags/us_virgin_islands.png %%DATADIR%%/flags/usa.png %%DATADIR%%/flags/usa_alabama.png %%DATADIR%%/flags/usa_alaska.png %%DATADIR%%/flags/usa_arizona.png %%DATADIR%%/flags/usa_arkansas.png %%DATADIR%%/flags/usa_california.png %%DATADIR%%/flags/usa_colorado.png %%DATADIR%%/flags/usa_connecticut.png %%DATADIR%%/flags/usa_delaware.png %%DATADIR%%/flags/usa_district_of_columbia.png %%DATADIR%%/flags/usa_florida.png %%DATADIR%%/flags/usa_georgia.png %%DATADIR%%/flags/usa_hawaii.png %%DATADIR%%/flags/usa_idaho.png %%DATADIR%%/flags/usa_illinois.png %%DATADIR%%/flags/usa_indiana.png %%DATADIR%%/flags/usa_iowa.png %%DATADIR%%/flags/usa_kansas.png %%DATADIR%%/flags/usa_kentucky.png %%DATADIR%%/flags/usa_louisiana.png %%DATADIR%%/flags/usa_maine.png %%DATADIR%%/flags/usa_maryland.png %%DATADIR%%/flags/usa_massachusetts.png %%DATADIR%%/flags/usa_michigan.png %%DATADIR%%/flags/usa_minnesota.png %%DATADIR%%/flags/usa_mississippi.png %%DATADIR%%/flags/usa_missouri.png %%DATADIR%%/flags/usa_montana.png %%DATADIR%%/flags/usa_nebraska.png %%DATADIR%%/flags/usa_nevada.png %%DATADIR%%/flags/usa_new_hampshire.png %%DATADIR%%/flags/usa_new_jersey.png %%DATADIR%%/flags/usa_new_mexico.png %%DATADIR%%/flags/usa_new_york.png %%DATADIR%%/flags/usa_north_carolina.png %%DATADIR%%/flags/usa_north_dakota.png %%DATADIR%%/flags/usa_ohio.png %%DATADIR%%/flags/usa_oklahoma.png %%DATADIR%%/flags/usa_oregon.png %%DATADIR%%/flags/usa_pennsylvania.png %%DATADIR%%/flags/usa_rhode_island.png %%DATADIR%%/flags/usa_south_carolina.png %%DATADIR%%/flags/usa_south_dakota.png %%DATADIR%%/flags/usa_tennessee.png %%DATADIR%%/flags/usa_texas.png %%DATADIR%%/flags/usa_utah.png %%DATADIR%%/flags/usa_vermont.png %%DATADIR%%/flags/usa_virginia.png %%DATADIR%%/flags/usa_washington.png %%DATADIR%%/flags/usa_west_virginia.png %%DATADIR%%/flags/usa_wisconsin.png %%DATADIR%%/flags/usa_wyoming.png %%DATADIR%%/flags/uzbekistan.png %%DATADIR%%/flags/vanuatu.png %%DATADIR%%/flags/venezuela.png %%DATADIR%%/flags/vietnam.png %%DATADIR%%/flags/wallis_and_futuna.png %%DATADIR%%/flags/western_sahara.png %%DATADIR%%/flags/yemen.png %%DATADIR%%/flags/zambia.png %%DATADIR%%/flags/zimbabwe.png %%DATADIR%%/france.kgm %%DATADIR%%/france.png %%DATADIR%%/france_regions.kgm %%DATADIR%%/france_regions.png %%DATADIR%%/georgia.kgm %%DATADIR%%/georgia.png %%DATADIR%%/germany.kgm %%DATADIR%%/germany.png %%DATADIR%%/ghana.kgm %%DATADIR%%/ghana.png %%DATADIR%%/goa.kgm %%DATADIR%%/goa.png %%DATADIR%%/great-britain_counties.kgm %%DATADIR%%/great-britain_counties.png %%DATADIR%%/greece.kgm %%DATADIR%%/greece.png %%DATADIR%%/greece_peripheries.kgm %%DATADIR%%/greece_peripheries.png %%DATADIR%%/greece_prefectures.kgm %%DATADIR%%/greece_prefectures.png %%DATADIR%%/guatemala.kgm %%DATADIR%%/guatemala.png %%DATADIR%%/gujarat.kgm %%DATADIR%%/gujarat.png %%DATADIR%%/guyana.kgm %%DATADIR%%/guyana.png %%DATADIR%%/haiti.kgm %%DATADIR%%/haiti.png %%DATADIR%%/haryana.kgm %%DATADIR%%/haryana.png %%DATADIR%%/himachal_pradesh.kgm %%DATADIR%%/himachal_pradesh.png %%DATADIR%%/honduras.kgm %%DATADIR%%/honduras.png %%DATADIR%%/hungary.kgm %%DATADIR%%/hungary.png %%DATADIR%%/hungary_regions.kgm %%DATADIR%%/hungary_regions.png %%DATADIR%%/iceland_regions.kgm %%DATADIR%%/iceland_regions.png %%DATADIR%%/india.kgm %%DATADIR%%/india.png %%DATADIR%%/indonesia.kgm %%DATADIR%%/indonesia.png %%DATADIR%%/iran.kgm %%DATADIR%%/iran.png %%DATADIR%%/iraq.kgm %%DATADIR%%/iraq.png %%DATADIR%%/ireland_provinces.kgm %%DATADIR%%/ireland_provinces.png %%DATADIR%%/israel.kgm %%DATADIR%%/israel.png %%DATADIR%%/italy.kgm %%DATADIR%%/italy.png %%DATADIR%%/italyprovince.kgm %%DATADIR%%/italyprovince.png %%DATADIR%%/jamaica.kgm %%DATADIR%%/jamaica.png %%DATADIR%%/japan.kgm %%DATADIR%%/japan.png %%DATADIR%%/jharkhand-map.png %%DATADIR%%/jharkhand.kgm %%DATADIR%%/kazakhstan.kgm %%DATADIR%%/kazakhstan.png %%DATADIR%%/kyrgyzstan.kgm %%DATADIR%%/kyrgyzstan.png %%DATADIR%%/latvia.kgm %%DATADIR%%/latvia.png %%DATADIR%%/liechtenstein.kgm %%DATADIR%%/liechtenstein.png %%DATADIR%%/lithuania_municipalities.kgm %%DATADIR%%/lithuania_municipalities.png %%DATADIR%%/luxembourg_cantons.kgm %%DATADIR%%/luxembourg_cantons.png %%DATADIR%%/malaysia.kgm %%DATADIR%%/malaysia.png %%DATADIR%%/manipur.kgm %%DATADIR%%/manipur.png %%DATADIR%%/mexico_states.kgm %%DATADIR%%/mexico_states.png %%DATADIR%%/mongolia.kgm %%DATADIR%%/mongolia.png %%DATADIR%%/ncamerica.kgm %%DATADIR%%/ncamerica.png %%DATADIR%%/nepal_zones.kgm %%DATADIR%%/nepal_zones.png %%DATADIR%%/netherlands.kgm %%DATADIR%%/netherlands.png %%DATADIR%%/new-zealand.kgm %%DATADIR%%/new-zealand.png %%DATADIR%%/nicaragua.kgm %%DATADIR%%/nicaragua.png %%DATADIR%%/north_korea.kgm %%DATADIR%%/north_korea.png %%DATADIR%%/norway.kgm %%DATADIR%%/norway.png %%DATADIR%%/oceania.kgm %%DATADIR%%/oceania.png %%DATADIR%%/oman.kgm %%DATADIR%%/oman.png %%DATADIR%%/pakistan.kgm %%DATADIR%%/pakistan.png %%DATADIR%%/panama.kgm %%DATADIR%%/panama.png %%DATADIR%%/paraguay.kgm %%DATADIR%%/paraguay.png %%DATADIR%%/peru.kgm %%DATADIR%%/peru.png %%DATADIR%%/philippines.kgm %%DATADIR%%/philippines.png %%DATADIR%%/poland.kgm %%DATADIR%%/poland.png %%DATADIR%%/portugal_districts.kgm %%DATADIR%%/portugal_districts.png %%DATADIR%%/portugal_provinces.kgm %%DATADIR%%/portugal_provinces.png %%DATADIR%%/portugal_regions.kgm %%DATADIR%%/portugal_regions.png %%DATADIR%%/puertorico.kgm %%DATADIR%%/puertorico.png %%DATADIR%%/republic_of_ireland.kgm %%DATADIR%%/republic_of_ireland.png %%DATADIR%%/romania.kgm %%DATADIR%%/romania.png %%DATADIR%%/russia_districts.kgm %%DATADIR%%/russia_districts.png %%DATADIR%%/russia_subjects.kgm %%DATADIR%%/russia_subjects.png %%DATADIR%%/san-marino.kgm %%DATADIR%%/san-marino.png %%DATADIR%%/saudi_arabia.kgm %%DATADIR%%/saudi_arabia.png %%DATADIR%%/sikkim.kgm %%DATADIR%%/sikkim.png %%DATADIR%%/slovakia.kgm %%DATADIR%%/slovakia.png %%DATADIR%%/slovenia_traditional.kgm %%DATADIR%%/slovenia_traditional.png %%DATADIR%%/south_africa.kgm %%DATADIR%%/south_africa.png %%DATADIR%%/southamerica.kgm %%DATADIR%%/southamerica.png %%DATADIR%%/southkorea.kgm %%DATADIR%%/southkorea.png %%DATADIR%%/spain.kgm %%DATADIR%%/spain.png %%DATADIR%%/spain_provinces.kgm %%DATADIR%%/spain_provinces.png %%DATADIR%%/sri-lanka.kgm %%DATADIR%%/sri-lanka.png %%DATADIR%%/sudan.kgm %%DATADIR%%/sudan.png %%DATADIR%%/suriname.kgm %%DATADIR%%/suriname.png %%DATADIR%%/sweden.kgm %%DATADIR%%/sweden.png %%DATADIR%%/switzerland.kgm %%DATADIR%%/switzerland.png %%DATADIR%%/tajikistan.kgm %%DATADIR%%/tajikistan.png %%DATADIR%%/tamilnadu.kgm %%DATADIR%%/tamilnadu.png %%DATADIR%%/thailand.kgm %%DATADIR%%/thailand.png %%DATADIR%%/tripura.kgm %%DATADIR%%/tripura.png %%DATADIR%%/turkey.kgm %%DATADIR%%/turkey.png %%DATADIR%%/turkmenistan.kgm %%DATADIR%%/turkmenistan.png %%DATADIR%%/ukraine.kgm %%DATADIR%%/ukraine.png %%DATADIR%%/uruguay.kgm %%DATADIR%%/uruguay.png %%DATADIR%%/usa.kgm %%DATADIR%%/usa.png %%DATADIR%%/uzbekistan.kgm %%DATADIR%%/uzbekistan.png %%DATADIR%%/venezuela.kgm %%DATADIR%%/venezuela.png %%DATADIR%%/vietnam.kgm %%DATADIR%%/vietnam.png %%DATADIR%%/waters_world-class.kgm %%DATADIR%%/waters_world-class.png %%DATADIR%%/westbengal.kgm %%DATADIR%%/westbengal.png %%DATADIR%%/world.kgm %%DATADIR%%/world.png %%DATADIR%%/world_continents.kgm %%DATADIR%%/world_continents.png %%DATADIR%%/yemen.kgm %%DATADIR%%/yemen.png %%DATADIR%%/zaire2006.kgm %%DATADIR%%/zaire2006.png %%DATADIR%%/zambia_districts.kgm %%DATADIR%%/zambia_districts.png %%DATADIR%%/zambia_provinces.kgm %%DATADIR%%/zambia_provinces.png %%DATADIR%%/zimbabwe.kgm %%DATADIR%%/zimbabwe.png %%DATADIR%%/zimbabwe_districts.kgm %%DATADIR%%/zimbabwe_districts.png share/kxmlgui5/kgeography/kgeographyui.rc share/locale/ar/LC_MESSAGES/kgeography.mo share/locale/bg/LC_MESSAGES/kgeography.mo share/locale/bs/LC_MESSAGES/kgeography.mo share/locale/ca/LC_MESSAGES/kgeography.mo share/locale/ca@valencia/LC_MESSAGES/kgeography.mo share/locale/cs/LC_MESSAGES/kgeography.mo share/locale/da/LC_MESSAGES/kgeography.mo share/locale/de/LC_MESSAGES/kgeography.mo share/locale/el/LC_MESSAGES/kgeography.mo share/locale/en_GB/LC_MESSAGES/kgeography.mo share/locale/eo/LC_MESSAGES/kgeography.mo share/locale/es/LC_MESSAGES/kgeography.mo share/locale/et/LC_MESSAGES/kgeography.mo share/locale/eu/LC_MESSAGES/kgeography.mo share/locale/fa/LC_MESSAGES/kgeography.mo share/locale/fi/LC_MESSAGES/kgeography.mo share/locale/fi/LC_SCRIPTS/kgeography/kgeography.js share/locale/fi/LC_SCRIPTS/kgeography/kgeography.pmap share/locale/fi/LC_SCRIPTS/kgeography/kgeography.pmapc share/locale/fr/LC_MESSAGES/kgeography.mo share/locale/fr/LC_SCRIPTS/kgeography/kgeography.js share/locale/ga/LC_MESSAGES/kgeography.mo share/locale/gl/LC_MESSAGES/kgeography.mo share/locale/he/LC_MESSAGES/kgeography.mo share/locale/hi/LC_MESSAGES/kgeography.mo share/locale/hr/LC_MESSAGES/kgeography.mo share/locale/hu/LC_MESSAGES/kgeography.mo share/locale/is/LC_MESSAGES/kgeography.mo share/locale/it/LC_MESSAGES/kgeography.mo share/locale/ja/LC_MESSAGES/kgeography.mo share/locale/ja/LC_SCRIPTS/kgeography/kgeography.js share/locale/kk/LC_MESSAGES/kgeography.mo share/locale/km/LC_MESSAGES/kgeography.mo share/locale/ko/LC_MESSAGES/kgeography.mo share/locale/lt/LC_MESSAGES/kgeography.mo share/locale/lv/LC_MESSAGES/kgeography.mo share/locale/ml/LC_MESSAGES/kgeography.mo share/locale/ml/LC_SCRIPTS/kgeography/kgeography.js share/locale/mr/LC_MESSAGES/kgeography.mo share/locale/nb/LC_MESSAGES/kgeography.mo share/locale/nds/LC_MESSAGES/kgeography.mo share/locale/nl/LC_MESSAGES/kgeography.mo share/locale/nn/LC_MESSAGES/kgeography.mo share/locale/pa/LC_MESSAGES/kgeography.mo share/locale/pl/LC_MESSAGES/kgeography.mo share/locale/pl/LC_SCRIPTS/kgeography/general.pmap share/locale/pl/LC_SCRIPTS/kgeography/general.pmapc share/locale/pl/LC_SCRIPTS/kgeography/kgeography.js share/locale/pt/LC_MESSAGES/kgeography.mo share/locale/pt_BR/LC_MESSAGES/kgeography.mo share/locale/ro/LC_MESSAGES/kgeography.mo share/locale/ru/LC_MESSAGES/kgeography.mo share/locale/sk/LC_MESSAGES/kgeography.mo share/locale/sl/LC_MESSAGES/kgeography.mo share/locale/sv/LC_MESSAGES/kgeography.mo share/locale/tr/LC_MESSAGES/kgeography.mo share/locale/ug/LC_MESSAGES/kgeography.mo share/locale/uk/LC_MESSAGES/kgeography.mo share/locale/uk/LC_SCRIPTS/kgeography/general.pmap share/locale/uk/LC_SCRIPTS/kgeography/general.pmapc share/locale/uk/LC_SCRIPTS/kgeography/kgeography.js share/locale/zh_CN/LC_MESSAGES/kgeography.mo share/locale/zh_TW/LC_MESSAGES/kgeography.mo share/metainfo/org.kde.kgeography.appdata.xml Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 525395) +++ head/misc/klettres/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373908 -SHA256 (KDE/applications/19.12.1/klettres-19.12.1.tar.xz) = 4f103d85918d40e0a3ffc451bf3862c45b37b8bd2453e6ee7d21d4c738967c36 -SIZE (KDE/applications/19.12.1/klettres-19.12.1.tar.xz) = 40136336 +TIMESTAMP = 1580852969 +SHA256 (KDE/applications/19.12.2/klettres-19.12.2.tar.xz) = 7e9cf472598f8032830687e166583b671d377bfe89f599dfd8a5f9616e67e4b0 +SIZE (KDE/applications/19.12.2/klettres-19.12.2.tar.xz) = 40138220 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 525395) +++ head/misc/ktouch/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373908 -SHA256 (KDE/applications/19.12.1/ktouch-19.12.1.tar.xz) = 64b8a025f82b951c69c3be7aa7d3c23f14ccef9ed5e900776eb01462cff9a99f -SIZE (KDE/applications/19.12.1/ktouch-19.12.1.tar.xz) = 4932928 +TIMESTAMP = 1580852969 +SHA256 (KDE/applications/19.12.2/ktouch-19.12.2.tar.xz) = 85789491cb04b3fe7c9eae2e1bc8e606847cf3b6a61a45d969e7f97318c29472 +SIZE (KDE/applications/19.12.2/ktouch-19.12.2.tar.xz) = 4931148 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 525395) +++ head/misc/kwordquiz/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373909 -SHA256 (KDE/applications/19.12.1/kwordquiz-19.12.1.tar.xz) = 8ee204de56fe2bf33e11d19b9c0c21d7e3dcf26bf550f9dffa79b22a3082659f -SIZE (KDE/applications/19.12.1/kwordquiz-19.12.1.tar.xz) = 4171084 +TIMESTAMP = 1580852972 +SHA256 (KDE/applications/19.12.2/kwordquiz-19.12.2.tar.xz) = 8476fe28dbea4b892377d5b78502c317b6df9d9c59b2696538f7d4fe69d665b6 +SIZE (KDE/applications/19.12.2/kwordquiz-19.12.2.tar.xz) = 4175340 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 525395) +++ head/misc/libkeduvocdocument/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373910 -SHA256 (KDE/applications/19.12.1/libkeduvocdocument-19.12.1.tar.xz) = a0e3921dab9d892d5efcddfbca548f230b508fc81ab4d7735c7610a710791816 -SIZE (KDE/applications/19.12.1/libkeduvocdocument-19.12.1.tar.xz) = 211248 +TIMESTAMP = 1580852971 +SHA256 (KDE/applications/19.12.2/libkeduvocdocument-19.12.2.tar.xz) = 74422fecf2e8fdb4b03b6722b5c33b4c72d27548aa8f4b75d8939d473bba8629 +SIZE (KDE/applications/19.12.2/libkeduvocdocument-19.12.2.tar.xz) = 206624 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 525395) +++ head/misc/parley/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373910 -SHA256 (KDE/applications/19.12.1/parley-19.12.1.tar.xz) = 54b91178a9bd1ff9c1817bd0df69a3a4bb9e4f3488f052034dd45e729f1325b6 -SIZE (KDE/applications/19.12.1/parley-19.12.1.tar.xz) = 8833140 +TIMESTAMP = 1580852970 +SHA256 (KDE/applications/19.12.2/parley-19.12.2.tar.xz) = 31c2c693ca4adc6ce93eb88b294bd74377adc25a8993fc20d6cdad171c1dbc04 +SIZE (KDE/applications/19.12.2/parley-19.12.2.tar.xz) = 8828756 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 525395) +++ head/multimedia/dragon/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373911 -SHA256 (KDE/applications/19.12.1/dragon-19.12.1.tar.xz) = a804ae2089c0e96700e91d90ba2100d9a42a81a128a3fdbb037ed94c31f380cd -SIZE (KDE/applications/19.12.1/dragon-19.12.1.tar.xz) = 1351124 +TIMESTAMP = 1580852943 +SHA256 (KDE/applications/19.12.2/dragon-19.12.2.tar.xz) = 3fc3cb73acd54455198396dbce0ba8997b40acf7d914feb286b5bb931e21aa7b +SIZE (KDE/applications/19.12.2/dragon-19.12.2.tar.xz) = 1351196 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 525395) +++ head/multimedia/kamoso/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373911 -SHA256 (KDE/applications/19.12.1/kamoso-19.12.1.tar.xz) = c1776bf7f8eafd9f4c501aabc0df30035a0f1d40951e525312aa257e67cf74a7 -SIZE (KDE/applications/19.12.1/kamoso-19.12.1.tar.xz) = 202588 +TIMESTAMP = 1580852942 +SHA256 (KDE/applications/19.12.2/kamoso-19.12.2.tar.xz) = 60248c41355a3580aa85872ceccb5b98f1f0a8dd5dafd471223d384827dd91c5 +SIZE (KDE/applications/19.12.2/kamoso-19.12.2.tar.xz) = 202036 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 525395) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373912 -SHA256 (KDE/applications/19.12.1/ffmpegthumbs-19.12.1.tar.xz) = 5f7853788c07d409bc2dd2fd7c9afab4cd847f3d2dc6db4dc30cfd78e762bdbd -SIZE (KDE/applications/19.12.1/ffmpegthumbs-19.12.1.tar.xz) = 27016 +TIMESTAMP = 1580852942 +SHA256 (KDE/applications/19.12.2/ffmpegthumbs-19.12.2.tar.xz) = 3715f86bf6eb21579f2d993417db82de08bdbe5449577776638a136a99775492 +SIZE (KDE/applications/19.12.2/ffmpegthumbs-19.12.2.tar.xz) = 27168 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 525395) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 525396) @@ -1,29 +1,30 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg share/kservices5/ffmpegthumbs.desktop share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo share/locale/ca@valencia/LC_MESSAGES/ffmpegthumbs.mo share/locale/cs/LC_MESSAGES/ffmpegthumbs.mo share/locale/de/LC_MESSAGES/ffmpegthumbs.mo share/locale/el/LC_MESSAGES/ffmpegthumbs.mo share/locale/en_GB/LC_MESSAGES/ffmpegthumbs.mo share/locale/es/LC_MESSAGES/ffmpegthumbs.mo share/locale/eu/LC_MESSAGES/ffmpegthumbs.mo share/locale/fi/LC_MESSAGES/ffmpegthumbs.mo share/locale/fr/LC_MESSAGES/ffmpegthumbs.mo share/locale/gl/LC_MESSAGES/ffmpegthumbs.mo +share/locale/ia/LC_MESSAGES/ffmpegthumbs.mo share/locale/it/LC_MESSAGES/ffmpegthumbs.mo share/locale/ja/LC_MESSAGES/ffmpegthumbs.mo share/locale/ko/LC_MESSAGES/ffmpegthumbs.mo share/locale/lt/LC_MESSAGES/ffmpegthumbs.mo share/locale/nl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt_BR/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/LC_MESSAGES/ffmpegthumbs.mo share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_CN/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo share/metainfo/org.kde.ffmpegthumbs.metainfo.xml Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 525395) +++ head/multimedia/kdenlive/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373913 -SHA256 (KDE/applications/19.12.1/kdenlive-19.12.1.tar.xz) = fccf34a4660ce8a78ceefe8a4b9dd93d104f6871976d991ceec769366627dc77 -SIZE (KDE/applications/19.12.1/kdenlive-19.12.1.tar.xz) = 11415280 +TIMESTAMP = 1580852941 +SHA256 (KDE/applications/19.12.2/kdenlive-19.12.2.tar.xz) = 8f035c91120c44a33ddd099ea68972ad9f18d1797b532c2a2b4353f1faa863d9 +SIZE (KDE/applications/19.12.2/kdenlive-19.12.2.tar.xz) = 11441780 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 525395) +++ head/net/akonadi-calendar/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373923 -SHA256 (KDE/applications/19.12.1/akonadi-calendar-19.12.1.tar.xz) = 4bec3252bd1a32874a22b28dcb82a2aed533b31e1955ca68803ddf076dbbd5be -SIZE (KDE/applications/19.12.1/akonadi-calendar-19.12.1.tar.xz) = 332620 +TIMESTAMP = 1580852960 +SHA256 (KDE/applications/19.12.2/akonadi-calendar-19.12.2.tar.xz) = e514be63c53a499958260a346cfa6af67446cda9ee442b8a38dab6053f3dcbf1 +SIZE (KDE/applications/19.12.2/akonadi-calendar-19.12.2.tar.xz) = 332076 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 525395) +++ head/net/akonadi-contacts/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373924 -SHA256 (KDE/applications/19.12.1/akonadi-contacts-19.12.1.tar.xz) = 0fbca91b3251d57291629e441ecf5cdd9b71a56f74f05f6c55a428402d3b4c91 -SIZE (KDE/applications/19.12.1/akonadi-contacts-19.12.1.tar.xz) = 394300 +TIMESTAMP = 1580852966 +SHA256 (KDE/applications/19.12.2/akonadi-contacts-19.12.2.tar.xz) = 2ffb88875661756476939c2145af731274b13f986f6c66a7fd3eafcd05eb4f8b +SIZE (KDE/applications/19.12.2/akonadi-contacts-19.12.2.tar.xz) = 392752 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 525395) +++ head/net/akonadi-mime/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373925 -SHA256 (KDE/applications/19.12.1/akonadi-mime-19.12.1.tar.xz) = 9ca3794a36e31a5dd759b741e91420f4910f05b0d726f6e803d365b8ab058f5b -SIZE (KDE/applications/19.12.1/akonadi-mime-19.12.1.tar.xz) = 132600 +TIMESTAMP = 1580852946 +SHA256 (KDE/applications/19.12.2/akonadi-mime-19.12.2.tar.xz) = 380ccb050ab83125da8cd09f162c023ac6a870b614bf35b20d58d323a196bcd6 +SIZE (KDE/applications/19.12.2/akonadi-mime-19.12.2.tar.xz) = 131992 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 525395) +++ head/net/akonadi-notes/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373925 -SHA256 (KDE/applications/19.12.1/akonadi-notes-19.12.1.tar.xz) = cf8059cb14eca880c09fc83285576b4d03a8edf0799cebdf42d59084bb6904ca -SIZE (KDE/applications/19.12.1/akonadi-notes-19.12.1.tar.xz) = 24596 +TIMESTAMP = 1580852954 +SHA256 (KDE/applications/19.12.2/akonadi-notes-19.12.2.tar.xz) = 2ddb9d52b14b73f1aec1bdb3bc0263f886c4e54e90fb77eb07cd416e925632b0 +SIZE (KDE/applications/19.12.2/akonadi-notes-19.12.2.tar.xz) = 24520 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 525395) +++ head/net/akonadi-search/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373926 -SHA256 (KDE/applications/19.12.1/akonadi-search-19.12.1.tar.xz) = 78a0feaa41d4b474a2e90c74230bc5196349e1c4e72ad46fe341a1cb6e51a5b8 -SIZE (KDE/applications/19.12.1/akonadi-search-19.12.1.tar.xz) = 83184 +TIMESTAMP = 1580852962 +SHA256 (KDE/applications/19.12.2/akonadi-search-19.12.2.tar.xz) = bf08eac2ada3bc01a501c35e31b01fb4de9a456b3c877cbb10d8529880e9f753 +SIZE (KDE/applications/19.12.2/akonadi-search-19.12.2.tar.xz) = 83156 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 525395) +++ head/net/calendarsupport/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373927 -SHA256 (KDE/applications/19.12.1/calendarsupport-19.12.1.tar.xz) = 6f5e3282ff385044061320b7ccb4bef80a1848fa890afcbd12e16bd2524a4189 -SIZE (KDE/applications/19.12.1/calendarsupport-19.12.1.tar.xz) = 646696 +TIMESTAMP = 1580852968 +SHA256 (KDE/applications/19.12.2/calendarsupport-19.12.2.tar.xz) = e75b32ac174faa711c3ce463aabae6fef1de6c4a3baacf5a02045b769c515839 +SIZE (KDE/applications/19.12.2/calendarsupport-19.12.2.tar.xz) = 647368 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 525395) +++ head/net/eventviews/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373927 -SHA256 (KDE/applications/19.12.1/eventviews-19.12.1.tar.xz) = 5eb73fb2c541a6b073ad231a28abe6affc0cad92f5fd4d36a4b58aba8a46193c -SIZE (KDE/applications/19.12.1/eventviews-19.12.1.tar.xz) = 443808 +TIMESTAMP = 1580852963 +SHA256 (KDE/applications/19.12.2/eventviews-19.12.2.tar.xz) = b1c4bcccef60b0ccae11bad5723536e2b1bc98824c8e26ce6632733c00e427ee +SIZE (KDE/applications/19.12.2/eventviews-19.12.2.tar.xz) = 443504 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 525395) +++ head/net/incidenceeditor/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373928 -SHA256 (KDE/applications/19.12.1/incidenceeditor-19.12.1.tar.xz) = 1f1345db2e518bfe9405df5fa441ece3af1093cbc75066673d252a0760262484 -SIZE (KDE/applications/19.12.1/incidenceeditor-19.12.1.tar.xz) = 550660 +TIMESTAMP = 1580852950 +SHA256 (KDE/applications/19.12.2/incidenceeditor-19.12.2.tar.xz) = 416a2d9c10574f7c23682cc55b295db871c374962e00936427611c692fde1680 +SIZE (KDE/applications/19.12.2/incidenceeditor-19.12.2.tar.xz) = 548740 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 525395) +++ head/net/kalarmcal/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373929 -SHA256 (KDE/applications/19.12.1/kalarmcal-19.12.1.tar.xz) = 18644d5cbc61b414675de66dd25d9a1dd30b0e93851f6223292f052d30a365e6 -SIZE (KDE/applications/19.12.1/kalarmcal-19.12.1.tar.xz) = 574488 +TIMESTAMP = 1580852965 +SHA256 (KDE/applications/19.12.2/kalarmcal-19.12.2.tar.xz) = 826e409a8956f1ea3308f1e3138749050fd75a6d37e7b3e1d6918a06f4d2e534 +SIZE (KDE/applications/19.12.2/kalarmcal-19.12.2.tar.xz) = 574796 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 525395) +++ head/net/kblog/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373929 -SHA256 (KDE/applications/19.12.1/kblog-19.12.1.tar.xz) = 6385ecfc024cf554a55e2840c3faf6b9e6ee81eb3536d5632899d32aecd54b9f -SIZE (KDE/applications/19.12.1/kblog-19.12.1.tar.xz) = 73080 +TIMESTAMP = 1580852961 +SHA256 (KDE/applications/19.12.2/kblog-19.12.2.tar.xz) = d72c6ff9463aa5fdb4d7ea408870eaa43831b49b13b4510e8c9f63feffab4751 +SIZE (KDE/applications/19.12.2/kblog-19.12.2.tar.xz) = 72696 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 525395) +++ head/net/kcalutils/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373930 -SHA256 (KDE/applications/19.12.1/kcalutils-19.12.1.tar.xz) = 0298e92d84d9f4b612ea1a27abee1368bc624af2bc5bc4b5eb1053a27575ea04 -SIZE (KDE/applications/19.12.1/kcalutils-19.12.1.tar.xz) = 322252 +TIMESTAMP = 1580852945 +SHA256 (KDE/applications/19.12.2/kcalutils-19.12.2.tar.xz) = 03ae6af365f6c7b4d33286b1a34131648e43ec9e881135b03b0fb3f755cacc39 +SIZE (KDE/applications/19.12.2/kcalutils-19.12.2.tar.xz) = 321072 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 525395) +++ head/net/kdav/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373931 -SHA256 (KDE/applications/19.12.1/kdav-19.12.1.tar.xz) = 5059a295f3ecd9046da6f5ecadab596b3e47c75c5090650a1d6cd1f86a8b7498 -SIZE (KDE/applications/19.12.1/kdav-19.12.1.tar.xz) = 54336 +TIMESTAMP = 1580852946 +SHA256 (KDE/applications/19.12.2/kdav-19.12.2.tar.xz) = 9c322636b1d3fcfa0ff4a9b003a621ba3a457d51e340c2d5f2fa0a8037c1da57 +SIZE (KDE/applications/19.12.2/kdav-19.12.2.tar.xz) = 54636 Index: head/net/kdav/pkg-plist =================================================================== --- head/net/kdav/pkg-plist (revision 525395) +++ head/net/kdav/pkg-plist (revision 525396) @@ -1,77 +1,78 @@ share/qlogging-categories5/kdav.categories include/KPim/KDAV/DavCollection include/KPim/KDAV/DavCollectionDeleteJob include/KPim/KDAV/DavCollectionModifyJob include/KPim/KDAV/DavCollectionsFetchJob include/KPim/KDAV/DavCollectionsMultiFetchJob include/KPim/KDAV/DavError include/KPim/KDAV/DavItem include/KPim/KDAV/DavItemCreateJob include/KPim/KDAV/DavItemDeleteJob include/KPim/KDAV/DavItemFetchJob include/KPim/KDAV/DavItemModifyJob include/KPim/KDAV/DavItemsFetchJob include/KPim/KDAV/DavItemsListJob include/KPim/KDAV/DavJobBase include/KPim/KDAV/DavPrincipalHomesetsFetchJob include/KPim/KDAV/DavPrincipalSearchJob include/KPim/KDAV/DavUrl include/KPim/KDAV/Enums include/KPim/KDAV/EtagCache include/KPim/KDAV/ProtocolInfo include/KPim/kdav/davcollection.h include/KPim/kdav/davcollectiondeletejob.h include/KPim/kdav/davcollectionmodifyjob.h include/KPim/kdav/davcollectionsfetchjob.h include/KPim/kdav/davcollectionsmultifetchjob.h include/KPim/kdav/daverror.h include/KPim/kdav/davitem.h include/KPim/kdav/davitemcreatejob.h include/KPim/kdav/davitemdeletejob.h include/KPim/kdav/davitemfetchjob.h include/KPim/kdav/davitemmodifyjob.h include/KPim/kdav/davitemsfetchjob.h include/KPim/kdav/davitemslistjob.h include/KPim/kdav/davjobbase.h include/KPim/kdav/davprincipalhomesetsfetchjob.h include/KPim/kdav/davprincipalsearchjob.h include/KPim/kdav/davurl.h include/KPim/kdav/enums.h include/KPim/kdav/etagcache.h include/KPim/kdav/kpimkdav_export.h include/KPim/kdav/protocolinfo.h include/KPim/kpimkdav_version.h lib/cmake/KPimKDAV/KPimKDAVConfig.cmake lib/cmake/KPimKDAV/KPimKDAVConfigVersion.cmake lib/cmake/KPimKDAV/KPimKDAVTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimKDAV/KPimKDAVTargets.cmake lib/libKPimKDAV.so lib/libKPimKDAV.so.5 lib/libKPimKDAV.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_kdav.pri share/locale/ar/LC_MESSAGES/libkdav.mo share/locale/ca/LC_MESSAGES/libkdav.mo share/locale/ca@valencia/LC_MESSAGES/libkdav.mo share/locale/cs/LC_MESSAGES/libkdav.mo share/locale/de/LC_MESSAGES/libkdav.mo share/locale/en_GB/LC_MESSAGES/libkdav.mo share/locale/es/LC_MESSAGES/libkdav.mo share/locale/fi/LC_MESSAGES/libkdav.mo share/locale/fr/LC_MESSAGES/libkdav.mo share/locale/gl/LC_MESSAGES/libkdav.mo +share/locale/ia/LC_MESSAGES/libkdav.mo share/locale/it/LC_MESSAGES/libkdav.mo share/locale/ja/LC_MESSAGES/libkdav.mo share/locale/ko/LC_MESSAGES/libkdav.mo share/locale/lt/LC_MESSAGES/libkdav.mo share/locale/nb/LC_MESSAGES/libkdav.mo share/locale/nl/LC_MESSAGES/libkdav.mo share/locale/pl/LC_MESSAGES/libkdav.mo share/locale/pt/LC_MESSAGES/libkdav.mo share/locale/pt_BR/LC_MESSAGES/libkdav.mo share/locale/ru/LC_MESSAGES/libkdav.mo share/locale/sk/LC_MESSAGES/libkdav.mo share/locale/sr/LC_MESSAGES/libkdav.mo share/locale/sv/LC_MESSAGES/libkdav.mo share/locale/uk/LC_MESSAGES/libkdav.mo share/locale/zh_CN/LC_MESSAGES/libkdav.mo share/locale/zh_TW/LC_MESSAGES/libkdav.mo Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 525395) +++ head/net/kdenetwork-filesharing/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373931 -SHA256 (KDE/applications/19.12.1/kdenetwork-filesharing-19.12.1.tar.xz) = 823e31424998e96084eeb909dfb7ee6a8e8e6d33b5d2a57ada7d583350967684 -SIZE (KDE/applications/19.12.1/kdenetwork-filesharing-19.12.1.tar.xz) = 317620 +TIMESTAMP = 1580852960 +SHA256 (KDE/applications/19.12.2/kdenetwork-filesharing-19.12.2.tar.xz) = 639e71ff742c8d4960084d44b92d656b09ec1eb2afd1be17f2e4340001a491cf +SIZE (KDE/applications/19.12.2/kdenetwork-filesharing-19.12.2.tar.xz) = 319016 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 525395) +++ head/net/kget/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373932 -SHA256 (KDE/applications/19.12.1/kget-19.12.1.tar.xz) = 33b043857b3d1c55d877d1c3af2bcc46feefe15019b7af40a9951c16e288658c -SIZE (KDE/applications/19.12.1/kget-19.12.1.tar.xz) = 5239972 +TIMESTAMP = 1580852956 +SHA256 (KDE/applications/19.12.2/kget-19.12.2.tar.xz) = 84a31cd4a0eee52a3f06acc181c0443d5daf8c3086116e98e2228bd461e133d0 +SIZE (KDE/applications/19.12.2/kget-19.12.2.tar.xz) = 5239916 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 525395) +++ head/net/kidentitymanagement/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373933 -SHA256 (KDE/applications/19.12.1/kidentitymanagement-19.12.1.tar.xz) = 7df38592610e0ed74c55baf6670331d07b2df0c98484d5f8cf8f135b6d229702 -SIZE (KDE/applications/19.12.1/kidentitymanagement-19.12.1.tar.xz) = 149320 +TIMESTAMP = 1580852949 +SHA256 (KDE/applications/19.12.2/kidentitymanagement-19.12.2.tar.xz) = b9319c0e600ec1273ab8308275651306325e9699512e78c6b99c89587d299307 +SIZE (KDE/applications/19.12.2/kidentitymanagement-19.12.2.tar.xz) = 149424 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 525395) +++ head/net/kimap/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373933 -SHA256 (KDE/applications/19.12.1/kimap-19.12.1.tar.xz) = 898e1f3b233b3631ffc74859d54bf402d36f0c5bae7f792e97d3fa5116d8bd0e -SIZE (KDE/applications/19.12.1/kimap-19.12.1.tar.xz) = 119540 +TIMESTAMP = 1580852955 +SHA256 (KDE/applications/19.12.2/kimap-19.12.2.tar.xz) = d3d54c036dc0b7f11938fc9b0e5bcbbe010b5036911218a1770d610b4719ae5b +SIZE (KDE/applications/19.12.2/kimap-19.12.2.tar.xz) = 119808 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 525395) +++ head/net/kitinerary/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373934 -SHA256 (KDE/applications/19.12.1/kitinerary-19.12.1.tar.xz) = 6497469e9966c9c21c2810a1f21c2633b89e54dafb74d5689aa24382e3824926 -SIZE (KDE/applications/19.12.1/kitinerary-19.12.1.tar.xz) = 1179336 +TIMESTAMP = 1580852963 +SHA256 (KDE/applications/19.12.2/kitinerary-19.12.2.tar.xz) = ecee10bb1e6f06cd76ae58703835db20869597a8653aaaf3cfa7de99aba29171 +SIZE (KDE/applications/19.12.2/kitinerary-19.12.2.tar.xz) = 1182776 Index: head/net/kitinerary/pkg-plist =================================================================== --- head/net/kitinerary/pkg-plist (revision 525395) +++ head/net/kitinerary/pkg-plist (revision 525396) @@ -1,119 +1,122 @@ include/KPim/KItinerary/Action include/KPim/KItinerary/AlphaId include/KPim/KItinerary/BarcodeDecoder include/KPim/KItinerary/Brand include/KPim/KItinerary/BusTrip include/KPim/KItinerary/CalendarHandler include/KPim/KItinerary/CountryDb include/KPim/KItinerary/CreativeWork include/KPim/KItinerary/Datatypes include/KPim/KItinerary/DocumentUtil include/KPim/KItinerary/Event include/KPim/KItinerary/Extractor +include/KPim/KItinerary/ExtractorCapabilities include/KPim/KItinerary/ExtractorEngine include/KPim/KItinerary/ExtractorFilter include/KPim/KItinerary/ExtractorInput include/KPim/KItinerary/ExtractorPostprocessor include/KPim/KItinerary/ExtractorRepository include/KPim/KItinerary/File include/KPim/KItinerary/Flight include/KPim/KItinerary/HtmlDocument include/KPim/KItinerary/IataBcbpParser include/KPim/KItinerary/JsonLdDocument include/KPim/KItinerary/KnowledgeDb include/KPim/KItinerary/LocationUtil include/KPim/KItinerary/MergeUtil include/KPim/KItinerary/Organization include/KPim/KItinerary/PdfDocument include/KPim/KItinerary/PdfImage include/KPim/KItinerary/Person include/KPim/KItinerary/Place include/KPim/KItinerary/Rct2Ticket include/KPim/KItinerary/RentalCar include/KPim/KItinerary/Reservation include/KPim/KItinerary/SortUtil include/KPim/KItinerary/Taxi include/KPim/KItinerary/Ticket include/KPim/KItinerary/TrainTrip include/KPim/KItinerary/Uic9183Block include/KPim/KItinerary/Uic9183Parser include/KPim/KItinerary/Uic9183TicketLayout include/KPim/KItinerary/Vendor0080Block include/KPim/KItinerary/Visit include/KPim/kitinerary/action.h include/KPim/kitinerary/alphaid.h include/KPim/kitinerary/barcodedecoder.h include/KPim/kitinerary/brand.h include/KPim/kitinerary/bustrip.h include/KPim/kitinerary/calendarhandler.h include/KPim/kitinerary/countrydb.h include/KPim/kitinerary/creativework.h include/KPim/kitinerary/datatypes.h include/KPim/kitinerary/documentutil.h include/KPim/kitinerary/event.h include/KPim/kitinerary/extractor.h +include/KPim/kitinerary/extractorcapabilities.h include/KPim/kitinerary/extractorengine.h include/KPim/kitinerary/extractorfilter.h include/KPim/kitinerary/extractorinput.h include/KPim/kitinerary/extractorpostprocessor.h include/KPim/kitinerary/extractorrepository.h include/KPim/kitinerary/file.h include/KPim/kitinerary/flight.h include/KPim/kitinerary/htmldocument.h include/KPim/kitinerary/iatabcbpparser.h include/KPim/kitinerary/jsonlddocument.h include/KPim/kitinerary/kitinerary_export.h include/KPim/kitinerary/knowledgedb.h include/KPim/kitinerary/locationutil.h include/KPim/kitinerary/mergeutil.h include/KPim/kitinerary/organization.h include/KPim/kitinerary/pdfdocument.h include/KPim/kitinerary/pdfimage.h include/KPim/kitinerary/person.h include/KPim/kitinerary/place.h include/KPim/kitinerary/rct2ticket.h include/KPim/kitinerary/rentalcar.h include/KPim/kitinerary/reservation.h include/KPim/kitinerary/sortutil.h include/KPim/kitinerary/taxi.h include/KPim/kitinerary/ticket.h include/KPim/kitinerary/traintrip.h include/KPim/kitinerary/uic9183block.h include/KPim/kitinerary/uic9183parser.h include/KPim/kitinerary/uic9183ticketlayout.h include/KPim/kitinerary/vendor0080block.h include/KPim/kitinerary/visit.h lib/cmake/KPimItinerary/KPimItineraryConfig.cmake lib/cmake/KPimItinerary/KPimItineraryConfigVersion.cmake lib/cmake/KPimItinerary/KPimItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimItinerary/KPimItineraryTargets.cmake lib/libexec/kf5/kitinerary-extractor lib/libKPimItinerary.so lib/libKPimItinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimItinerary.so.5 share/locale/ar/LC_MESSAGES/kitinerary.mo share/locale/ca/LC_MESSAGES/kitinerary.mo share/locale/ca@valencia/LC_MESSAGES/kitinerary.mo share/locale/cs/LC_MESSAGES/kitinerary.mo share/locale/de/LC_MESSAGES/kitinerary.mo share/locale/en_GB/LC_MESSAGES/kitinerary.mo share/locale/es/LC_MESSAGES/kitinerary.mo share/locale/fi/LC_MESSAGES/kitinerary.mo share/locale/fr/LC_MESSAGES/kitinerary.mo share/locale/gl/LC_MESSAGES/kitinerary.mo +share/locale/ia/LC_MESSAGES/kitinerary.mo share/locale/it/LC_MESSAGES/kitinerary.mo share/locale/ja/LC_MESSAGES/kitinerary.mo share/locale/ko/LC_MESSAGES/kitinerary.mo share/locale/lt/LC_MESSAGES/kitinerary.mo share/locale/nl/LC_MESSAGES/kitinerary.mo share/locale/pl/LC_MESSAGES/kitinerary.mo share/locale/pt/LC_MESSAGES/kitinerary.mo share/locale/pt_BR/LC_MESSAGES/kitinerary.mo share/locale/ru/LC_MESSAGES/kitinerary.mo share/locale/sk/LC_MESSAGES/kitinerary.mo share/locale/sv/LC_MESSAGES/kitinerary.mo share/locale/uk/LC_MESSAGES/kitinerary.mo share/locale/zh_CN/LC_MESSAGES/kitinerary.mo share/locale/zh_TW/LC_MESSAGES/kitinerary.mo share/mime/packages/application-vnd-kde-itinerary.xml share/qlogging-categories5/org_kde_kitinerary.categories Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 525395) +++ head/net/kldap/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373935 -SHA256 (KDE/applications/19.12.1/kldap-19.12.1.tar.xz) = 5595f840c2b97e96f265ffd91fb007f4beb198aaf67a0dbfd941108acbcb9aa3 -SIZE (KDE/applications/19.12.1/kldap-19.12.1.tar.xz) = 155468 +TIMESTAMP = 1580852953 +SHA256 (KDE/applications/19.12.2/kldap-19.12.2.tar.xz) = 8e5f48a22a99868a9ad16eb072d9075d125877d013cefab79e571910d36c8e92 +SIZE (KDE/applications/19.12.2/kldap-19.12.2.tar.xz) = 155096 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 525395) +++ head/net/kmailtransport/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373935 -SHA256 (KDE/applications/19.12.1/kmailtransport-19.12.1.tar.xz) = 1a46563c441a7d09e6cc2bf98a628b724944193e0df88607d5d867f4fa65c1a4 -SIZE (KDE/applications/19.12.1/kmailtransport-19.12.1.tar.xz) = 166340 +TIMESTAMP = 1580852948 +SHA256 (KDE/applications/19.12.2/kmailtransport-19.12.2.tar.xz) = 83fe706da597122b055eb9eb0f7e427eaa9755da564b3f855f277eddb229bc30 +SIZE (KDE/applications/19.12.2/kmailtransport-19.12.2.tar.xz) = 166984 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 525395) +++ head/net/kmbox/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373936 -SHA256 (KDE/applications/19.12.1/kmbox-19.12.1.tar.xz) = 7442fd3a421a917a3f27e47259a7da7e08ff6191290a0e9e67c67005c82c606a -SIZE (KDE/applications/19.12.1/kmbox-19.12.1.tar.xz) = 24592 +TIMESTAMP = 1580852951 +SHA256 (KDE/applications/19.12.2/kmbox-19.12.2.tar.xz) = 909ea0c7d4dbea0a92f2272984fb66e7abc332498f02bcbaf275bf225ddb2e23 +SIZE (KDE/applications/19.12.2/kmbox-19.12.2.tar.xz) = 24688 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 525395) +++ head/net/kmime/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373937 -SHA256 (KDE/applications/19.12.1/kmime-19.12.1.tar.xz) = 4d6db5d59b239b884bf8811f3ea616520ab1f69224a809cef3f79023b2563085 -SIZE (KDE/applications/19.12.1/kmime-19.12.1.tar.xz) = 146976 +TIMESTAMP = 1580852959 +SHA256 (KDE/applications/19.12.2/kmime-19.12.2.tar.xz) = a80fb1086c1e4212e5fde71941b68e8327e400de62900c8f268187834e5b533f +SIZE (KDE/applications/19.12.2/kmime-19.12.2.tar.xz) = 146628 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 525395) +++ head/net/kontactinterface/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373937 -SHA256 (KDE/applications/19.12.1/kontactinterface-19.12.1.tar.xz) = a88b782b495d662920fd5f51c287c472c107c577af92431b4470787a78866b2c -SIZE (KDE/applications/19.12.1/kontactinterface-19.12.1.tar.xz) = 33352 +TIMESTAMP = 1580852956 +SHA256 (KDE/applications/19.12.2/kontactinterface-19.12.2.tar.xz) = 3161e31476b4a6e870fd4134d20b2fbbfef075ec58a02f27830c9c5ea7dffa78 +SIZE (KDE/applications/19.12.2/kontactinterface-19.12.2.tar.xz) = 33268 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 525395) +++ head/net/kpimtextedit/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373938 -SHA256 (KDE/applications/19.12.1/kpimtextedit-19.12.1.tar.xz) = 253ded44f3ccb7de1a0a8879e45cc361c14dda2924619aeb04f4286c917f5475 -SIZE (KDE/applications/19.12.1/kpimtextedit-19.12.1.tar.xz) = 167340 +TIMESTAMP = 1580852948 +SHA256 (KDE/applications/19.12.2/kpimtextedit-19.12.2.tar.xz) = d2f4e5425ba1409871417fd4f02a1a0125e87e7363168eb26400c91c0d097bce +SIZE (KDE/applications/19.12.2/kpimtextedit-19.12.2.tar.xz) = 167624 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 525395) +++ head/net/krdc/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373939 -SHA256 (KDE/applications/19.12.1/krdc-19.12.1.tar.xz) = b3d9b9c43bfe5801d807be08172ca4c773ff6fc2d846cf5b2456c3360ca21824 -SIZE (KDE/applications/19.12.1/krdc-19.12.1.tar.xz) = 1424920 +TIMESTAMP = 1580852957 +SHA256 (KDE/applications/19.12.2/krdc-19.12.2.tar.xz) = f34416d8dd2e08a49d05c5290236d86b2779685b6a66c64739fae797ec5c0204 +SIZE (KDE/applications/19.12.2/krdc-19.12.2.tar.xz) = 1424844 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 525395) +++ head/net/krfb/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373939 -SHA256 (KDE/applications/19.12.1/krfb-19.12.1.tar.xz) = 7f25790480ac3a8db8a8bd847d80937a0ab763f6c5c12fa2ce704c4b24810287 -SIZE (KDE/applications/19.12.1/krfb-19.12.1.tar.xz) = 1278880 +TIMESTAMP = 1580852954 +SHA256 (KDE/applications/19.12.2/krfb-19.12.2.tar.xz) = ffe511a0b6fd77b760175a52edf13841ce931e9cd3d750829bbd5ce5f5505b66 +SIZE (KDE/applications/19.12.2/krfb-19.12.2.tar.xz) = 1276620 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 525395) +++ head/net/ksmtp/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373940 -SHA256 (KDE/applications/19.12.1/ksmtp-19.12.1.tar.xz) = 6c7d6ce91d65d7430cb31fb4a1fd44a600a5a459b3956807ee3180b5822dbac0 -SIZE (KDE/applications/19.12.1/ksmtp-19.12.1.tar.xz) = 40856 +TIMESTAMP = 1580852952 +SHA256 (KDE/applications/19.12.2/ksmtp-19.12.2.tar.xz) = 6d577a37b54a70986c9ed93b33ac70753f4c97c46160efdc3538d686fbd8d60f +SIZE (KDE/applications/19.12.2/ksmtp-19.12.2.tar.xz) = 40800 Index: head/net/ksmtp/pkg-plist =================================================================== --- head/net/ksmtp/pkg-plist (revision 525395) +++ head/net/ksmtp/pkg-plist (revision 525396) @@ -1,57 +1,58 @@ share/qlogging-categories5/ksmtp.categories include/KPim/KSMTP/KSMTP/Job include/KPim/KSMTP/KSMTP/LoginJob include/KPim/KSMTP/KSMTP/SendJob include/KPim/KSMTP/KSMTP/Session include/KPim/KSMTP/KSMTP/SessionUiProxy include/KPim/KSMTP/ksmtp/job.h include/KPim/KSMTP/ksmtp/ksmtp_export.h include/KPim/KSMTP/ksmtp/loginjob.h include/KPim/KSMTP/ksmtp/sendjob.h include/KPim/KSMTP/ksmtp/session.h include/KPim/KSMTP/ksmtp/sessionuiproxy.h include/KPim/ksmtp_version.h lib/cmake/KPimSMTP/KPimSMTPConfig.cmake lib/cmake/KPimSMTP/KPimSMTPConfigVersion.cmake lib/cmake/KPimSMTP/KPimSMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimSMTP/KPimSMTPTargets.cmake lib/libKPimSMTP.so lib/libKPimSMTP.so.5 lib/libKPimSMTP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KSMTP.pri share/locale/ar/LC_MESSAGES/libksmtp5.mo share/locale/bs/LC_MESSAGES/libksmtp5.mo share/locale/ca/LC_MESSAGES/libksmtp5.mo share/locale/ca@valencia/LC_MESSAGES/libksmtp5.mo share/locale/cs/LC_MESSAGES/libksmtp5.mo share/locale/de/LC_MESSAGES/libksmtp5.mo share/locale/en_GB/LC_MESSAGES/libksmtp5.mo share/locale/es/LC_MESSAGES/libksmtp5.mo share/locale/et/LC_MESSAGES/libksmtp5.mo share/locale/fi/LC_MESSAGES/libksmtp5.mo share/locale/fr/LC_MESSAGES/libksmtp5.mo share/locale/ga/LC_MESSAGES/libksmtp5.mo share/locale/gl/LC_MESSAGES/libksmtp5.mo share/locale/hu/LC_MESSAGES/libksmtp5.mo +share/locale/ia/LC_MESSAGES/libksmtp5.mo share/locale/it/LC_MESSAGES/libksmtp5.mo share/locale/ja/LC_MESSAGES/libksmtp5.mo share/locale/km/LC_MESSAGES/libksmtp5.mo share/locale/ko/LC_MESSAGES/libksmtp5.mo share/locale/lt/LC_MESSAGES/libksmtp5.mo share/locale/mr/LC_MESSAGES/libksmtp5.mo share/locale/nds/LC_MESSAGES/libksmtp5.mo share/locale/nl/LC_MESSAGES/libksmtp5.mo share/locale/nn/LC_MESSAGES/libksmtp5.mo share/locale/pl/LC_MESSAGES/libksmtp5.mo share/locale/pt/LC_MESSAGES/libksmtp5.mo share/locale/pt_BR/LC_MESSAGES/libksmtp5.mo share/locale/ru/LC_MESSAGES/libksmtp5.mo share/locale/sk/LC_MESSAGES/libksmtp5.mo share/locale/sl/LC_MESSAGES/libksmtp5.mo share/locale/sr/LC_MESSAGES/libksmtp5.mo share/locale/sv/LC_MESSAGES/libksmtp5.mo share/locale/tr/LC_MESSAGES/libksmtp5.mo share/locale/ug/LC_MESSAGES/libksmtp5.mo share/locale/uk/LC_MESSAGES/libksmtp5.mo share/locale/zh_CN/LC_MESSAGES/libksmtp5.mo share/locale/zh_TW/LC_MESSAGES/libksmtp5.mo Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 525395) +++ head/net/ktnef/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373941 -SHA256 (KDE/applications/19.12.1/ktnef-19.12.1.tar.xz) = 2fce576e517e6ae9001ade6f07a51fcfa899a6569bc4b8c3948827adfc0af20c -SIZE (KDE/applications/19.12.1/ktnef-19.12.1.tar.xz) = 299712 +TIMESTAMP = 1580852967 +SHA256 (KDE/applications/19.12.2/ktnef-19.12.2.tar.xz) = 8668458e8fa5fb40867ce917f5056c420d112bdb4e3676a44e7b07767075b312 +SIZE (KDE/applications/19.12.2/ktnef-19.12.2.tar.xz) = 299940 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 525395) +++ head/net/libgravatar/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373941 -SHA256 (KDE/applications/19.12.1/libgravatar-19.12.1.tar.xz) = 84525db5f24c04cfa2bb44376a3bd64368e9d9478a160cf862c695052f3fc254 -SIZE (KDE/applications/19.12.1/libgravatar-19.12.1.tar.xz) = 31136 +TIMESTAMP = 1580852966 +SHA256 (KDE/applications/19.12.2/libgravatar-19.12.2.tar.xz) = b56444707dec9fabe3ad57bfaaff73aea4ee3edb3c7e7eeb2414d3b9b3129a06 +SIZE (KDE/applications/19.12.2/libgravatar-19.12.2.tar.xz) = 31148 Index: head/net/libgravatar/pkg-plist =================================================================== --- head/net/libgravatar/pkg-plist (revision 525395) +++ head/net/libgravatar/pkg-plist (revision 525396) @@ -1,54 +1,55 @@ share/qlogging-categories5/libgravatar.categories share/qlogging-categories5/libgravatar.renamecategories include/KF5/Gravatar/GravatarCache include/KF5/Gravatar/GravatarConfigWidget include/KF5/Gravatar/GravatarConfigureSettingsDialog include/KF5/Gravatar/GravatarConfigureSettingsWidget include/KF5/Gravatar/GravatarDownloadPixmapWidget include/KF5/Gravatar/GravatarResolvUrlJob include/KF5/gravatar/gravatar_export.h include/KF5/gravatar/gravatarcache.h include/KF5/gravatar/gravatarconfiguresettingsdialog.h include/KF5/gravatar/gravatarconfiguresettingswidget.h include/KF5/gravatar/gravatarconfigwidget.h include/KF5/gravatar/gravatardownloadpixmapwidget.h include/KF5/gravatar/gravatarresolvurljob.h include/KF5/gravatar/gravatarsettings.h include/KF5/gravatar_version.h lib/cmake/KF5Gravatar/KF5GravatarConfig.cmake lib/cmake/KF5Gravatar/KF5GravatarConfigVersion.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets.cmake lib/libKF5Gravatar.so lib/libKF5Gravatar.so.5 lib/libKF5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Gravatar.pri share/locale/ar/LC_MESSAGES/libgravatar.mo share/locale/ca/LC_MESSAGES/libgravatar.mo share/locale/ca@valencia/LC_MESSAGES/libgravatar.mo share/locale/cs/LC_MESSAGES/libgravatar.mo share/locale/da/LC_MESSAGES/libgravatar.mo share/locale/de/LC_MESSAGES/libgravatar.mo share/locale/en_GB/LC_MESSAGES/libgravatar.mo share/locale/es/LC_MESSAGES/libgravatar.mo share/locale/et/LC_MESSAGES/libgravatar.mo share/locale/fi/LC_MESSAGES/libgravatar.mo share/locale/fr/LC_MESSAGES/libgravatar.mo share/locale/gl/LC_MESSAGES/libgravatar.mo +share/locale/ia/LC_MESSAGES/libgravatar.mo share/locale/it/LC_MESSAGES/libgravatar.mo share/locale/ja/LC_MESSAGES/libgravatar.mo share/locale/ko/LC_MESSAGES/libgravatar.mo share/locale/lt/LC_MESSAGES/libgravatar.mo share/locale/nl/LC_MESSAGES/libgravatar.mo share/locale/pl/LC_MESSAGES/libgravatar.mo share/locale/pt/LC_MESSAGES/libgravatar.mo share/locale/pt_BR/LC_MESSAGES/libgravatar.mo share/locale/ru/LC_MESSAGES/libgravatar.mo share/locale/sk/LC_MESSAGES/libgravatar.mo share/locale/sl/LC_MESSAGES/libgravatar.mo share/locale/sr/LC_MESSAGES/libgravatar.mo share/locale/sv/LC_MESSAGES/libgravatar.mo share/locale/tr/LC_MESSAGES/libgravatar.mo share/locale/uk/LC_MESSAGES/libgravatar.mo share/locale/zh_CN/LC_MESSAGES/libgravatar.mo share/locale/zh_TW/LC_MESSAGES/libgravatar.mo Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 525395) +++ head/net/libkgapi/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373942 -SHA256 (KDE/applications/19.12.1/libkgapi-19.12.1.tar.xz) = 8bfa16ab76b0042e2a0b827cf251b1155c0e693db39ffcb2805613d3393389cf -SIZE (KDE/applications/19.12.1/libkgapi-19.12.1.tar.xz) = 238208 +TIMESTAMP = 1580852947 +SHA256 (KDE/applications/19.12.2/libkgapi-19.12.2.tar.xz) = 4a85bd68cd47e1ba77eb0f12a876e038af4db6559c4ea4c00261380a11ecdcd8 +SIZE (KDE/applications/19.12.2/libkgapi-19.12.2.tar.xz) = 238256 Index: head/net/libkgapi/pkg-plist =================================================================== --- head/net/libkgapi/pkg-plist (revision 525395) +++ head/net/libkgapi/pkg-plist (revision 525396) @@ -1,352 +1,353 @@ share/qlogging-categories5/libkgapi.categories include/KPim/KGAPI/KGAPI/Account include/KPim/KGAPI/KGAPI/AccountInfo include/KPim/KGAPI/KGAPI/AccountInfoFetchJob include/KPim/KGAPI/KGAPI/AccountManager include/KPim/KGAPI/KGAPI/AuthJob include/KPim/KGAPI/KGAPI/AuthWidget include/KPim/KGAPI/KGAPI/Blogger/Blog include/KPim/KGAPI/KGAPI/Blogger/BlogFetchJob include/KPim/KGAPI/KGAPI/Blogger/Comment include/KPim/KGAPI/KGAPI/Blogger/CommentApproveJob include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteContentJob include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteJob include/KPim/KGAPI/KGAPI/Blogger/CommentFetchJob include/KPim/KGAPI/KGAPI/Blogger/Page include/KPim/KGAPI/KGAPI/Blogger/PageCreateJob include/KPim/KGAPI/KGAPI/Blogger/PageDeleteJob include/KPim/KGAPI/KGAPI/Blogger/PageFetchJob include/KPim/KGAPI/KGAPI/Blogger/PageModifyJob include/KPim/KGAPI/KGAPI/Blogger/Post include/KPim/KGAPI/KGAPI/Blogger/PostCreateJob include/KPim/KGAPI/KGAPI/Blogger/PostDeleteJob include/KPim/KGAPI/KGAPI/Blogger/PostFetchJob include/KPim/KGAPI/KGAPI/Blogger/PostModifyJob include/KPim/KGAPI/KGAPI/Blogger/PostPublishJob include/KPim/KGAPI/KGAPI/Blogger/PostSearchJob include/KPim/KGAPI/KGAPI/Calendar/Calendar include/KPim/KGAPI/KGAPI/Calendar/CalendarCreateJob include/KPim/KGAPI/KGAPI/Calendar/CalendarDeleteJob include/KPim/KGAPI/KGAPI/Calendar/CalendarFetchJob include/KPim/KGAPI/KGAPI/Calendar/CalendarModifyJob include/KPim/KGAPI/KGAPI/Calendar/Enums include/KPim/KGAPI/KGAPI/Calendar/Event include/KPim/KGAPI/KGAPI/Calendar/EventCreateJob include/KPim/KGAPI/KGAPI/Calendar/EventDeleteJob include/KPim/KGAPI/KGAPI/Calendar/EventFetchJob include/KPim/KGAPI/KGAPI/Calendar/EventModifyJob include/KPim/KGAPI/KGAPI/Calendar/EventMoveJob include/KPim/KGAPI/KGAPI/Calendar/FreeBusyQueryJob include/KPim/KGAPI/KGAPI/Calendar/Reminder include/KPim/KGAPI/KGAPI/Contacts/Contact include/KPim/KGAPI/KGAPI/Contacts/ContactCreateJob include/KPim/KGAPI/KGAPI/Contacts/ContactDeleteJob include/KPim/KGAPI/KGAPI/Contacts/ContactFetchJob include/KPim/KGAPI/KGAPI/Contacts/ContactFetchPhotoJob include/KPim/KGAPI/KGAPI/Contacts/ContactModifyJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroup include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupCreateJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupDeleteJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupFetchJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupModifyJob include/KPim/KGAPI/KGAPI/CreateJob include/KPim/KGAPI/KGAPI/DeleteJob include/KPim/KGAPI/KGAPI/Drive/About include/KPim/KGAPI/KGAPI/Drive/AboutFetchJob include/KPim/KGAPI/KGAPI/Drive/App include/KPim/KGAPI/KGAPI/Drive/AppFetchJob include/KPim/KGAPI/KGAPI/Drive/Change include/KPim/KGAPI/KGAPI/Drive/ChangeFetchJob include/KPim/KGAPI/KGAPI/Drive/ChildReference include/KPim/KGAPI/KGAPI/Drive/ChildReferenceCreateJob include/KPim/KGAPI/KGAPI/Drive/ChildReferenceDeleteJob include/KPim/KGAPI/KGAPI/Drive/ChildReferenceFetchJob include/KPim/KGAPI/KGAPI/Drive/Drives include/KPim/KGAPI/KGAPI/Drive/DrivesCreateJob include/KPim/KGAPI/KGAPI/Drive/DrivesDeleteJob include/KPim/KGAPI/KGAPI/Drive/DrivesFetchJob include/KPim/KGAPI/KGAPI/Drive/DrivesHideJob include/KPim/KGAPI/KGAPI/Drive/DrivesModifyJob include/KPim/KGAPI/KGAPI/Drive/DrivesSearchQuery include/KPim/KGAPI/KGAPI/Drive/File include/KPim/KGAPI/KGAPI/Drive/FileAbstractDataJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractModifyJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractUploadJob include/KPim/KGAPI/KGAPI/Drive/FileCopyJob include/KPim/KGAPI/KGAPI/Drive/FileCreateJob include/KPim/KGAPI/KGAPI/Drive/FileDeleteJob include/KPim/KGAPI/KGAPI/Drive/FileFetchContentJob include/KPim/KGAPI/KGAPI/Drive/FileFetchJob include/KPim/KGAPI/KGAPI/Drive/FileModifyJob include/KPim/KGAPI/KGAPI/Drive/FileSearchQuery include/KPim/KGAPI/KGAPI/Drive/FileTouchJob include/KPim/KGAPI/KGAPI/Drive/FileTrashJob include/KPim/KGAPI/KGAPI/Drive/FileUntrashJob include/KPim/KGAPI/KGAPI/Drive/ParentReference include/KPim/KGAPI/KGAPI/Drive/ParentReferenceCreateJob include/KPim/KGAPI/KGAPI/Drive/ParentReferenceDeleteJob include/KPim/KGAPI/KGAPI/Drive/ParentReferenceFetchJob include/KPim/KGAPI/KGAPI/Drive/Permission include/KPim/KGAPI/KGAPI/Drive/PermissionCreateJob include/KPim/KGAPI/KGAPI/Drive/PermissionDeleteJob include/KPim/KGAPI/KGAPI/Drive/PermissionFetchJob include/KPim/KGAPI/KGAPI/Drive/PermissionModifyJob include/KPim/KGAPI/KGAPI/Drive/Revision include/KPim/KGAPI/KGAPI/Drive/RevisionDeleteJob include/KPim/KGAPI/KGAPI/Drive/RevisionFetchJob include/KPim/KGAPI/KGAPI/Drive/RevisionModifyJob include/KPim/KGAPI/KGAPI/Drive/SearchQuery include/KPim/KGAPI/KGAPI/Drive/Teamdrive include/KPim/KGAPI/KGAPI/Drive/TeamdriveCreateJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveDeleteJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveFetchJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveModifyJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveSearchQuery include/KPim/KGAPI/KGAPI/Drive/User include/KPim/KGAPI/KGAPI/FetchJob include/KPim/KGAPI/KGAPI/Job include/KPim/KGAPI/KGAPI/Latitude/Latitude include/KPim/KGAPI/KGAPI/Latitude/Location include/KPim/KGAPI/KGAPI/Latitude/LocationCreateJob include/KPim/KGAPI/KGAPI/Latitude/LocationDeleteJob include/KPim/KGAPI/KGAPI/Latitude/LocationFetchHistoryJob include/KPim/KGAPI/KGAPI/Latitude/LocationFetchJob include/KPim/KGAPI/KGAPI/Maps/StaticMapMarker include/KPim/KGAPI/KGAPI/Maps/StaticMapPath include/KPim/KGAPI/KGAPI/Maps/StaticMapTileFetchJob include/KPim/KGAPI/KGAPI/Maps/StaticMapUrl include/KPim/KGAPI/KGAPI/ModifyJob include/KPim/KGAPI/KGAPI/Object include/KPim/KGAPI/KGAPI/Tasks/Task include/KPim/KGAPI/KGAPI/Tasks/TaskCreateJob include/KPim/KGAPI/KGAPI/Tasks/TaskDeleteJob include/KPim/KGAPI/KGAPI/Tasks/TaskFetchJob include/KPim/KGAPI/KGAPI/Tasks/TaskList include/KPim/KGAPI/KGAPI/Tasks/TaskListCreateJob include/KPim/KGAPI/KGAPI/Tasks/TaskListDeleteJob include/KPim/KGAPI/KGAPI/Tasks/TaskListFetchJob include/KPim/KGAPI/KGAPI/Tasks/TaskListModifyJob include/KPim/KGAPI/KGAPI/Tasks/TaskModifyJob include/KPim/KGAPI/KGAPI/Tasks/TaskMoveJob include/KPim/KGAPI/KGAPI/Types include/KPim/KGAPI/KGAPI/Utils include/KPim/KGAPI/kgapi/account.h include/KPim/KGAPI/kgapi/accountinfo.h include/KPim/KGAPI/kgapi/accountinfofetchjob.h include/KPim/KGAPI/kgapi/accountmanager.h include/KPim/KGAPI/kgapi/authjob.h include/KPim/KGAPI/kgapi/authwidget.h include/KPim/KGAPI/kgapi/blogger/blog.h include/KPim/KGAPI/kgapi/blogger/blogfetchjob.h include/KPim/KGAPI/kgapi/blogger/comment.h include/KPim/KGAPI/kgapi/blogger/commentapprovejob.h include/KPim/KGAPI/kgapi/blogger/commentdeletecontentjob.h include/KPim/KGAPI/kgapi/blogger/commentdeletejob.h include/KPim/KGAPI/kgapi/blogger/commentfetchjob.h include/KPim/KGAPI/kgapi/blogger/kgapiblogger_export.h include/KPim/KGAPI/kgapi/blogger/page.h include/KPim/KGAPI/kgapi/blogger/pagecreatejob.h include/KPim/KGAPI/kgapi/blogger/pagedeletejob.h include/KPim/KGAPI/kgapi/blogger/pagefetchjob.h include/KPim/KGAPI/kgapi/blogger/pagemodifyjob.h include/KPim/KGAPI/kgapi/blogger/post.h include/KPim/KGAPI/kgapi/blogger/postcreatejob.h include/KPim/KGAPI/kgapi/blogger/postdeletejob.h include/KPim/KGAPI/kgapi/blogger/postfetchjob.h include/KPim/KGAPI/kgapi/blogger/postmodifyjob.h include/KPim/KGAPI/kgapi/blogger/postpublishjob.h include/KPim/KGAPI/kgapi/blogger/postsearchjob.h include/KPim/KGAPI/kgapi/calendar/calendar.h include/KPim/KGAPI/kgapi/calendar/calendarcreatejob.h include/KPim/KGAPI/kgapi/calendar/calendardeletejob.h include/KPim/KGAPI/kgapi/calendar/calendarfetchjob.h include/KPim/KGAPI/kgapi/calendar/calendarmodifyjob.h include/KPim/KGAPI/kgapi/calendar/enums.h include/KPim/KGAPI/kgapi/calendar/event.h include/KPim/KGAPI/kgapi/calendar/eventcreatejob.h include/KPim/KGAPI/kgapi/calendar/eventdeletejob.h include/KPim/KGAPI/kgapi/calendar/eventfetchjob.h include/KPim/KGAPI/kgapi/calendar/eventmodifyjob.h include/KPim/KGAPI/kgapi/calendar/eventmovejob.h include/KPim/KGAPI/kgapi/calendar/freebusyqueryjob.h include/KPim/KGAPI/kgapi/calendar/kgapicalendar_export.h include/KPim/KGAPI/kgapi/calendar/reminder.h include/KPim/KGAPI/kgapi/contacts/contact.h include/KPim/KGAPI/kgapi/contacts/contactcreatejob.h include/KPim/KGAPI/kgapi/contacts/contactdeletejob.h include/KPim/KGAPI/kgapi/contacts/contactfetchjob.h include/KPim/KGAPI/kgapi/contacts/contactfetchphotojob.h include/KPim/KGAPI/kgapi/contacts/contactmodifyjob.h include/KPim/KGAPI/kgapi/contacts/contactsgroup.h include/KPim/KGAPI/kgapi/contacts/contactsgroupcreatejob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupdeletejob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupfetchjob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupmodifyjob.h include/KPim/KGAPI/kgapi/contacts/kgapicontacts_export.h include/KPim/KGAPI/kgapi/createjob.h include/KPim/KGAPI/kgapi/deletejob.h include/KPim/KGAPI/kgapi/drive/about.h include/KPim/KGAPI/kgapi/drive/aboutfetchjob.h include/KPim/KGAPI/kgapi/drive/app.h include/KPim/KGAPI/kgapi/drive/appfetchjob.h include/KPim/KGAPI/kgapi/drive/change.h include/KPim/KGAPI/kgapi/drive/changefetchjob.h include/KPim/KGAPI/kgapi/drive/childreference.h include/KPim/KGAPI/kgapi/drive/childreferencecreatejob.h include/KPim/KGAPI/kgapi/drive/childreferencedeletejob.h include/KPim/KGAPI/kgapi/drive/childreferencefetchjob.h include/KPim/KGAPI/kgapi/drive/drives.h include/KPim/KGAPI/kgapi/drive/drivescreatejob.h include/KPim/KGAPI/kgapi/drive/drivesdeletejob.h include/KPim/KGAPI/kgapi/drive/drivesfetchjob.h include/KPim/KGAPI/kgapi/drive/driveshidejob.h include/KPim/KGAPI/kgapi/drive/drivesmodifyjob.h include/KPim/KGAPI/kgapi/drive/drivessearchquery.h include/KPim/KGAPI/kgapi/drive/file.h include/KPim/KGAPI/kgapi/drive/fileabstractdatajob.h include/KPim/KGAPI/kgapi/drive/fileabstractmodifyjob.h include/KPim/KGAPI/kgapi/drive/fileabstractuploadjob.h include/KPim/KGAPI/kgapi/drive/filecopyjob.h include/KPim/KGAPI/kgapi/drive/filecreatejob.h include/KPim/KGAPI/kgapi/drive/filedeletejob.h include/KPim/KGAPI/kgapi/drive/filefetchcontentjob.h include/KPim/KGAPI/kgapi/drive/filefetchjob.h include/KPim/KGAPI/kgapi/drive/filemodifyjob.h include/KPim/KGAPI/kgapi/drive/filesearchquery.h include/KPim/KGAPI/kgapi/drive/filetouchjob.h include/KPim/KGAPI/kgapi/drive/filetrashjob.h include/KPim/KGAPI/kgapi/drive/fileuntrashjob.h include/KPim/KGAPI/kgapi/drive/kgapidrive_export.h include/KPim/KGAPI/kgapi/drive/parentreference.h include/KPim/KGAPI/kgapi/drive/parentreferencecreatejob.h include/KPim/KGAPI/kgapi/drive/parentreferencedeletejob.h include/KPim/KGAPI/kgapi/drive/parentreferencefetchjob.h include/KPim/KGAPI/kgapi/drive/permission.h include/KPim/KGAPI/kgapi/drive/permissioncreatejob.h include/KPim/KGAPI/kgapi/drive/permissiondeletejob.h include/KPim/KGAPI/kgapi/drive/permissionfetchjob.h include/KPim/KGAPI/kgapi/drive/permissionmodifyjob.h include/KPim/KGAPI/kgapi/drive/revision.h include/KPim/KGAPI/kgapi/drive/revisiondeletejob.h include/KPim/KGAPI/kgapi/drive/revisionfetchjob.h include/KPim/KGAPI/kgapi/drive/revisionmodifyjob.h include/KPim/KGAPI/kgapi/drive/searchquery.h include/KPim/KGAPI/kgapi/drive/teamdrive.h include/KPim/KGAPI/kgapi/drive/teamdrivecreatejob.h include/KPim/KGAPI/kgapi/drive/teamdrivedeletejob.h include/KPim/KGAPI/kgapi/drive/teamdrivefetchjob.h include/KPim/KGAPI/kgapi/drive/teamdrivemodifyjob.h include/KPim/KGAPI/kgapi/drive/teamdrivesearchquery.h include/KPim/KGAPI/kgapi/drive/user.h include/KPim/KGAPI/kgapi/fetchjob.h include/KPim/KGAPI/kgapi/job.h include/KPim/KGAPI/kgapi/kgapicore_export.h include/KPim/KGAPI/kgapi/latitude/kgapilatitude_export.h include/KPim/KGAPI/kgapi/latitude/latitude.h include/KPim/KGAPI/kgapi/latitude/location.h include/KPim/KGAPI/kgapi/latitude/locationcreatejob.h include/KPim/KGAPI/kgapi/latitude/locationdeletejob.h include/KPim/KGAPI/kgapi/latitude/locationfetchhistoryjob.h include/KPim/KGAPI/kgapi/latitude/locationfetchjob.h include/KPim/KGAPI/kgapi/maps/kgapimaps_export.h include/KPim/KGAPI/kgapi/maps/staticmapmarker.h include/KPim/KGAPI/kgapi/maps/staticmappath.h include/KPim/KGAPI/kgapi/maps/staticmaptilefetchjob.h include/KPim/KGAPI/kgapi/maps/staticmapurl.h include/KPim/KGAPI/kgapi/modifyjob.h include/KPim/KGAPI/kgapi/object.h include/KPim/KGAPI/kgapi/tasks/kgapitasks_export.h include/KPim/KGAPI/kgapi/tasks/task.h include/KPim/KGAPI/kgapi/tasks/taskcreatejob.h include/KPim/KGAPI/kgapi/tasks/taskdeletejob.h include/KPim/KGAPI/kgapi/tasks/taskfetchjob.h include/KPim/KGAPI/kgapi/tasks/tasklist.h include/KPim/KGAPI/kgapi/tasks/tasklistcreatejob.h include/KPim/KGAPI/kgapi/tasks/tasklistdeletejob.h include/KPim/KGAPI/kgapi/tasks/tasklistfetchjob.h include/KPim/KGAPI/kgapi/tasks/tasklistmodifyjob.h include/KPim/KGAPI/kgapi/tasks/taskmodifyjob.h include/KPim/KGAPI/kgapi/tasks/taskmovejob.h include/KPim/KGAPI/kgapi/types.h include/KPim/KGAPI/kgapi/utils.h include/KPim/kgapi_version.h lib/cmake/KPimGAPI/KPimGAPIConfig.cmake lib/cmake/KPimGAPI/KPimGAPIConfigVersion.cmake lib/cmake/KPimGAPI/KPimGAPITargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimGAPI/KPimGAPITargets.cmake lib/libKPimGAPIBlogger.so lib/libKPimGAPIBlogger.so.5 lib/libKPimGAPIBlogger.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPICalendar.so lib/libKPimGAPICalendar.so.5 lib/libKPimGAPICalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIContacts.so lib/libKPimGAPIContacts.so.5 lib/libKPimGAPIContacts.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPICore.so lib/libKPimGAPICore.so.5 lib/libKPimGAPICore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIDrive.so lib/libKPimGAPIDrive.so.5 lib/libKPimGAPIDrive.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPILatitude.so lib/libKPimGAPILatitude.so.5 lib/libKPimGAPILatitude.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIMaps.so lib/libKPimGAPIMaps.so.5 lib/libKPimGAPIMaps.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPITasks.so lib/libKPimGAPITasks.so.5 lib/libKPimGAPITasks.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KGAPIBlogger.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICalendar.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIContacts.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICore.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIDrive.pri %%QT_MKSPECDIR%%/modules/qt_KGAPILatitude.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIMaps.pri %%QT_MKSPECDIR%%/modules/qt_KGAPITasks.pri lib/sasl2/libkdexoauth2.so lib/sasl2/libkdexoauth2.so.3 lib/sasl2/libkdexoauth2.so.3.0.0 share/locale/ar/LC_MESSAGES/libkgapi_qt.qm share/locale/bs/LC_MESSAGES/libkgapi_qt.qm share/locale/ca/LC_MESSAGES/libkgapi_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkgapi_qt.qm share/locale/cs/LC_MESSAGES/libkgapi_qt.qm share/locale/da/LC_MESSAGES/libkgapi_qt.qm share/locale/de/LC_MESSAGES/libkgapi_qt.qm share/locale/el/LC_MESSAGES/libkgapi_qt.qm share/locale/en_GB/LC_MESSAGES/libkgapi_qt.qm share/locale/es/LC_MESSAGES/libkgapi_qt.qm share/locale/et/LC_MESSAGES/libkgapi_qt.qm share/locale/fi/LC_MESSAGES/libkgapi_qt.qm share/locale/fr/LC_MESSAGES/libkgapi_qt.qm share/locale/ga/LC_MESSAGES/libkgapi_qt.qm share/locale/gl/LC_MESSAGES/libkgapi_qt.qm share/locale/hu/LC_MESSAGES/libkgapi_qt.qm +share/locale/ia/LC_MESSAGES/libkgapi_qt.qm share/locale/it/LC_MESSAGES/libkgapi_qt.qm share/locale/ja/LC_MESSAGES/libkgapi_qt.qm share/locale/kk/LC_MESSAGES/libkgapi_qt.qm share/locale/km/LC_MESSAGES/libkgapi_qt.qm share/locale/ko/LC_MESSAGES/libkgapi_qt.qm share/locale/lt/LC_MESSAGES/libkgapi_qt.qm share/locale/mr/LC_MESSAGES/libkgapi_qt.qm share/locale/nb/LC_MESSAGES/libkgapi_qt.qm share/locale/nds/LC_MESSAGES/libkgapi_qt.qm share/locale/nl/LC_MESSAGES/libkgapi_qt.qm share/locale/nn/LC_MESSAGES/libkgapi_qt.qm share/locale/pl/LC_MESSAGES/libkgapi_qt.qm share/locale/pt/LC_MESSAGES/libkgapi_qt.qm share/locale/pt_BR/LC_MESSAGES/libkgapi_qt.qm share/locale/ro/LC_MESSAGES/libkgapi_qt.qm share/locale/ru/LC_MESSAGES/libkgapi_qt.qm share/locale/sk/LC_MESSAGES/libkgapi_qt.qm share/locale/sl/LC_MESSAGES/libkgapi_qt.qm share/locale/sr/LC_MESSAGES/libkgapi_qt.qm share/locale/sv/LC_MESSAGES/libkgapi_qt.qm share/locale/tr/LC_MESSAGES/libkgapi_qt.qm share/locale/ug/LC_MESSAGES/libkgapi_qt.qm share/locale/uk/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_CN/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_TW/LC_MESSAGES/libkgapi_qt.qm Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 525395) +++ head/net/libksieve/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373943 -SHA256 (KDE/applications/19.12.1/libksieve-19.12.1.tar.xz) = 6c3d49e2ce4d8e6b7c1b4328aa6065a01c7711223dd4f3b9db3a542f9fc0a84c -SIZE (KDE/applications/19.12.1/libksieve-19.12.1.tar.xz) = 552024 +TIMESTAMP = 1580852961 +SHA256 (KDE/applications/19.12.2/libksieve-19.12.2.tar.xz) = 4c4ec8db210951248b0583454a47427bf022021849419d0d0c92eb3bf9ad9463 +SIZE (KDE/applications/19.12.2/libksieve-19.12.2.tar.xz) = 553448 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 525395) +++ head/net/mailcommon/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373943 -SHA256 (KDE/applications/19.12.1/mailcommon-19.12.1.tar.xz) = 160135049bc2e4984f14022af793a9ac05bf488faa6f9eb7bd86a094de1c9bfe -SIZE (KDE/applications/19.12.1/mailcommon-19.12.1.tar.xz) = 701392 +TIMESTAMP = 1580852958 +SHA256 (KDE/applications/19.12.2/mailcommon-19.12.2.tar.xz) = d332c81036db57bd4eb9b7342be3fb7956e997216fb34e14891c0c0e54f0ad3a +SIZE (KDE/applications/19.12.2/mailcommon-19.12.2.tar.xz) = 699336 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 525395) +++ head/net/mailimporter/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373944 -SHA256 (KDE/applications/19.12.1/mailimporter-19.12.1.tar.xz) = c1a042560438d6f6195a1f64355515489b74a44c1d2f5f547ced6785439215f1 -SIZE (KDE/applications/19.12.1/mailimporter-19.12.1.tar.xz) = 540540 +TIMESTAMP = 1580852958 +SHA256 (KDE/applications/19.12.2/mailimporter-19.12.2.tar.xz) = 45bb61c932c451e96c0a5e0d84c9d7b104934ebff88075489556341e6ddff03f +SIZE (KDE/applications/19.12.2/mailimporter-19.12.2.tar.xz) = 541120 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 525395) +++ head/net/messagelib/distinfo (revision 525396) @@ -1,5 +1,5 @@ -TIMESTAMP = 1579387483 -SHA256 (KDE/applications/19.12.1/messagelib-19.12.1.tar.xz) = d2514ac31f78235340353701f735a15f69d99374a55566ec7702a3a5ddd23d05 -SIZE (KDE/applications/19.12.1/messagelib-19.12.1.tar.xz) = 10464964 -SHA256 (KDE/applications/19.12.1/991eb9c20286bdce2458d7dbc17765dd7b0d7b38.patch) = 71c15d0f47cf39911cfad20625e4a67a0b938e0a94c71a7dee0626c419b105f9 -SIZE (KDE/applications/19.12.1/991eb9c20286bdce2458d7dbc17765dd7b0d7b38.patch) = 2869 +TIMESTAMP = 1580852964 +SHA256 (KDE/applications/19.12.2/messagelib-19.12.2.tar.xz) = 0dddb4b7fd9759fa6984d57ab1ff10b5c6a253f42a92bb15bbbf5a48fa403f7c +SIZE (KDE/applications/19.12.2/messagelib-19.12.2.tar.xz) = 10459732 +SHA256 (KDE/applications/19.12.2/991eb9c20286bdce2458d7dbc17765dd7b0d7b38.patch) = 71c15d0f47cf39911cfad20625e4a67a0b938e0a94c71a7dee0626c419b105f9 +SIZE (KDE/applications/19.12.2/991eb9c20286bdce2458d7dbc17765dd7b0d7b38.patch) = 2869 Index: head/net/messagelib/pkg-plist =================================================================== --- head/net/messagelib/pkg-plist (revision 525395) +++ head/net/messagelib/pkg-plist (revision 525396) @@ -1,857 +1,858 @@ 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/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/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/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/Recipient include/KF5/MessageComposer/RecipientLine include/KF5/MessageComposer/RecipientsEditor include/KF5/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/RichTextComposerSignatures 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/ImageCollector include/KF5/MessageCore/MailingList include/KF5/MessageCore/MessageCoreSettings include/KF5/MessageCore/MessageCoreUtil include/KF5/MessageCore/NodeHelper include/KF5/MessageCore/StringUtil 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/DKIMManager include/KF5/MessageViewer/DKIMManagerKey include/KF5/MessageViewer/DKIMManagerKeyDialog include/KF5/MessageViewer/DKIMManagerKeyWidget include/KF5/MessageViewer/DKIMManagerRules include/KF5/MessageViewer/DKIMRule 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/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/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/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/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/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/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/signaturecontroller.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/globalsettings_messagecore.h include/KF5/messagecore/imagecollector.h include/KF5/messagecore/mailinglist.h include/KF5/messagecore/messagecore_export.h include/KF5/messagecore/messagecoresettings.h include/KF5/messagecore/messagecoreutil.h include/KF5/messagecore/nodehelper.h include/KF5/messagecore/stringutil.h include/KF5/messagecore_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/dkimmanagerkey.h include/KF5/messageviewer/dkimmanagerkeydialog.h include/KF5/messageviewer/dkimmanagerkeywidget.h include/KF5/messageviewer/dkimmanagerrules.h include/KF5/messageviewer/dkimrule.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/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/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_MimeTreeParser.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/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/kconf_update/messageviewer.upd share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo share/locale/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 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 525395) +++ head/net/pimcommon/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373945 -SHA256 (KDE/applications/19.12.1/pimcommon-19.12.1.tar.xz) = d3058407ec578a32df82eb83eb7631d2904e75d6d345ed61dac0f3744840ebf5 -SIZE (KDE/applications/19.12.1/pimcommon-19.12.1.tar.xz) = 294524 +TIMESTAMP = 1580852949 +SHA256 (KDE/applications/19.12.2/pimcommon-19.12.2.tar.xz) = ce3bd8f743226a15dbcc48ec8f51ed1f516bae93861c90f8dbbd8d552bf8589c +SIZE (KDE/applications/19.12.2/pimcommon-19.12.2.tar.xz) = 293548 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 525395) +++ head/net/zeroconf-ioslave/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373946 -SHA256 (KDE/applications/19.12.1/zeroconf-ioslave-19.12.1.tar.xz) = 39641a186de9d0704a58063a8a37cfb3a405ff6bd9957c7d09efec3bec4dfc60 -SIZE (KDE/applications/19.12.1/zeroconf-ioslave-19.12.1.tar.xz) = 41824 +TIMESTAMP = 1580852952 +SHA256 (KDE/applications/19.12.2/zeroconf-ioslave-19.12.2.tar.xz) = e51e510a9e15cc15ba3bf493d43ba877019a7e0c68976446d42cb4d656a747cc +SIZE (KDE/applications/19.12.2/zeroconf-ioslave-19.12.2.tar.xz) = 42104 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 525395) +++ head/net-im/kaccounts-integration/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373913 -SHA256 (KDE/applications/19.12.1/kaccounts-integration-19.12.1.tar.xz) = 0dda504f51b86207180aceb00d86d42cb16c7ebe81c60ca1ed6bf8fa20699127 -SIZE (KDE/applications/19.12.1/kaccounts-integration-19.12.1.tar.xz) = 66588 +TIMESTAMP = 1580852933 +SHA256 (KDE/applications/19.12.2/kaccounts-integration-19.12.2.tar.xz) = fefc25a7bfad2bb00462df0797ce18e28ff0a5a536ba465f856bdcfe6c8504d4 +SIZE (KDE/applications/19.12.2/kaccounts-integration-19.12.2.tar.xz) = 65800 Index: head/net-im/kaccounts-providers/files/patch-git_5952bf2 =================================================================== --- head/net-im/kaccounts-providers/files/patch-git_5952bf2 (revision 525395) +++ head/net-im/kaccounts-providers/files/patch-git_5952bf2 (nonexistent) @@ -1,25 +0,0 @@ -From 5952bf25358b8b2545cfdeb898461f82a7b17971 Mon Sep 17 00:00:00 2001 -From: Christophe Giboudeaux -Date: Mon, 13 Jan 2020 15:56:57 +0100 -Subject: Remove the extra comma - ---- - providers/google.provider.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/providers/google.provider.in b/providers/google.provider.in -index 97307af..e9f1b57 100644 ---- providers/google.provider.in -+++ providers/google.provider.in -@@ -27,7 +27,7 @@ - 'https://www.googleapis.com/auth/tasks', - 'https://www.google.com/m8/feeds/', - 'https://www.googleapis.com/auth/drive', -- 'https://www.googleapis.com/auth/youtube.upload', -+ 'https://www.googleapis.com/auth/youtube.upload' - ] - ['https'] - 317066460457-pkpkedrvt2ldq6g2hj1egfka2n7vpuoo.apps.googleusercontent.com --- -cgit v1.1 - Property changes on: head/net-im/kaccounts-providers/files/patch-git_5952bf2 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net-im/kaccounts-providers/files/patch-git_0a71da4 =================================================================== --- head/net-im/kaccounts-providers/files/patch-git_0a71da4 (revision 525395) +++ head/net-im/kaccounts-providers/files/patch-git_0a71da4 (nonexistent) @@ -1,55 +0,0 @@ -From 0a71da4e3caae0defe200a85954fc7e2012010c1 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= -Date: Mon, 13 Jan 2020 13:48:37 +0100 -Subject: Google provider: limit requested OAuth scopes - -Summary: -Limit the scopes to what is actually permitted in the Google App settings: -contacts and calendars for future PIM integration, GDrive for KIO-GDrive, -and Youtube (upload-only) for the Purpose sharing plugin. We can extend -this in the future if needed easilly, it's easier for us to get the -Google App verified if we can proof and show how the individual scopes -are used by KDE. - -Reviewers: elvisangelaccio, bshah - -Reviewed By: elvisangelaccio, bshah - -Differential Revision: https://phabricator.kde.org/D26454 ---- - providers/google.provider.in | 13 +++---------- - 1 file changed, 3 insertions(+), 10 deletions(-) - -diff --git a/providers/google.provider.in b/providers/google.provider.in -index 638c1a9..97307af 100644 ---- providers/google.provider.in -+++ providers/google.provider.in -@@ -21,22 +21,15 @@ - order to return a refresh token --> - code - [ -- 'https://docs.google.com/feeds/', -- 'https://www.googleapis.com/auth/googletalk', -- 'https://www.googleapis.com/auth/youtube.upload', -- 'https://www.googleapis.com/auth/youtube', - 'https://www.googleapis.com/auth/userinfo.email', - 'https://www.googleapis.com/auth/userinfo.profile', -- 'https://picasaweb.google.com/data/', - 'https://www.googleapis.com/auth/calendar', -- 'https://www.google.com/m8/feeds/', - 'https://www.googleapis.com/auth/tasks', -+ 'https://www.google.com/m8/feeds/', - 'https://www.googleapis.com/auth/drive', -- 'https://www.googleapis.com/auth/drive.file', -- 'https://www.googleapis.com/auth/drive.metadata.readonly', -- 'https://www.googleapis.com/auth/drive.readonly' -+ 'https://www.googleapis.com/auth/youtube.upload', - ] -- ['https','http'] -+ ['https'] - 317066460457-pkpkedrvt2ldq6g2hj1egfka2n7vpuoo.apps.googleusercontent.com - Y8eFAaWfcanV3amZdDvtbYUq - true --- -cgit v1.1 - Property changes on: head/net-im/kaccounts-providers/files/patch-git_0a71da4 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 525395) +++ head/net-im/kaccounts-providers/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373914 -SHA256 (KDE/applications/19.12.1/kaccounts-providers-19.12.1.tar.xz) = abcd1fa9f63248f3ce7f9c98d940b124ff5c70c1a3381a6cfad6ce7012b23c69 -SIZE (KDE/applications/19.12.1/kaccounts-providers-19.12.1.tar.xz) = 32204 +TIMESTAMP = 1580852932 +SHA256 (KDE/applications/19.12.2/kaccounts-providers-19.12.2.tar.xz) = b369923a1c2785791bf0ab718539afac43956d611f68326abf4c34ac4ace8376 +SIZE (KDE/applications/19.12.2/kaccounts-providers-19.12.2.tar.xz) = 31928 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 525395) +++ head/net-im/kopete/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373915 -SHA256 (KDE/applications/19.12.1/kopete-19.12.1.tar.xz) = eca3610cc9607c27620c7c23f9bb54bdd80d2fb295adaf6636506597fc0b848d -SIZE (KDE/applications/19.12.1/kopete-19.12.1.tar.xz) = 9364212 +TIMESTAMP = 1580852933 +SHA256 (KDE/applications/19.12.2/kopete-19.12.2.tar.xz) = 546dd072f18dd181cb50f7590fec6ecfd0785ad4e6310c143fac6e496c81b64b +SIZE (KDE/applications/19.12.2/kopete-19.12.2.tar.xz) = 9375752 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 525395) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373915 -SHA256 (KDE/applications/19.12.1/ktp-accounts-kcm-19.12.1.tar.xz) = 1ae81e4b7bae97d9d18c1fdc9e7083cc810b39d58dff5755dc9d78bd62551577 -SIZE (KDE/applications/19.12.1/ktp-accounts-kcm-19.12.1.tar.xz) = 263956 +TIMESTAMP = 1580852931 +SHA256 (KDE/applications/19.12.2/ktp-accounts-kcm-19.12.2.tar.xz) = c37a6b4c2748d3e7b3f994ed7f14b54c62fe6314efa5dfa7e25dec91babf8713 +SIZE (KDE/applications/19.12.2/ktp-accounts-kcm-19.12.2.tar.xz) = 265388 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 525395) +++ head/net-im/ktp-approver/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373916 -SHA256 (KDE/applications/19.12.1/ktp-approver-19.12.1.tar.xz) = 502a63f13db44fc8a28f64e37c43839b8da22086bf858dc9c492476d9ba14b50 -SIZE (KDE/applications/19.12.1/ktp-approver-19.12.1.tar.xz) = 37232 +TIMESTAMP = 1580852937 +SHA256 (KDE/applications/19.12.2/ktp-approver-19.12.2.tar.xz) = 0f83ec9491af86c8f6ede435588f1026e7a615defb612cf45c99408b7e170bbc +SIZE (KDE/applications/19.12.2/ktp-approver-19.12.2.tar.xz) = 37416 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 525395) +++ head/net-im/ktp-auth-handler/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373917 -SHA256 (KDE/applications/19.12.1/ktp-auth-handler-19.12.1.tar.xz) = 109583d4800d293fe11eeaa553d72643f2a3709c0d078a6e842f2e4b228d93e0 -SIZE (KDE/applications/19.12.1/ktp-auth-handler-19.12.1.tar.xz) = 46508 +TIMESTAMP = 1580852939 +SHA256 (KDE/applications/19.12.2/ktp-auth-handler-19.12.2.tar.xz) = 79282260d4083e655e395d91f1000c5afd5a835f510ca67189950074a3e1e5d1 +SIZE (KDE/applications/19.12.2/ktp-auth-handler-19.12.2.tar.xz) = 46720 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 525395) +++ head/net-im/ktp-call-ui/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373917 -SHA256 (KDE/applications/19.12.1/ktp-call-ui-19.12.1.tar.xz) = adb3025f8f878fd4a56ce125bd51c155f26b02661b9365b6321fb456153b0c55 -SIZE (KDE/applications/19.12.1/ktp-call-ui-19.12.1.tar.xz) = 97340 +TIMESTAMP = 1580852934 +SHA256 (KDE/applications/19.12.2/ktp-call-ui-19.12.2.tar.xz) = c22e5f95e1d73dc76d462a80583e8f57d6a19d2d4cde2f7a6a93bc306defc941 +SIZE (KDE/applications/19.12.2/ktp-call-ui-19.12.2.tar.xz) = 97324 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 525395) +++ head/net-im/ktp-common-internals/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373918 -SHA256 (KDE/applications/19.12.1/ktp-common-internals-19.12.1.tar.xz) = 4a1f189c1393164fba710e63b0e8f1aae6f22a5faacea0d86544e3e4a471603a -SIZE (KDE/applications/19.12.1/ktp-common-internals-19.12.1.tar.xz) = 446044 +TIMESTAMP = 1580852938 +SHA256 (KDE/applications/19.12.2/ktp-common-internals-19.12.2.tar.xz) = 1ce28b2331ef051fb33ec0c4b9cc57fa6b9fa5de8e7c480848cbf5cf20f28982 +SIZE (KDE/applications/19.12.2/ktp-common-internals-19.12.2.tar.xz) = 446332 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 525395) +++ head/net-im/ktp-contact-list/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373919 -SHA256 (KDE/applications/19.12.1/ktp-contact-list-19.12.1.tar.xz) = c293fa90899d496c4e29b9c9986a3864e06ef22dabbd4583123abbc232f4fe25 -SIZE (KDE/applications/19.12.1/ktp-contact-list-19.12.1.tar.xz) = 149680 +TIMESTAMP = 1580852935 +SHA256 (KDE/applications/19.12.2/ktp-contact-list-19.12.2.tar.xz) = 210fc4ea6efe5568f80b9d625cb059120f7be97bdc1f8aa0dec4f0b5e1615b86 +SIZE (KDE/applications/19.12.2/ktp-contact-list-19.12.2.tar.xz) = 149116 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 525395) +++ head/net-im/ktp-contact-runner/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373919 -SHA256 (KDE/applications/19.12.1/ktp-contact-runner-19.12.1.tar.xz) = a86d8a67f3d8f3d741c6c4548a58cbdff384e8bd5ed5cd1d82db65456240ac0f -SIZE (KDE/applications/19.12.1/ktp-contact-runner-19.12.1.tar.xz) = 43056 +TIMESTAMP = 1580852936 +SHA256 (KDE/applications/19.12.2/ktp-contact-runner-19.12.2.tar.xz) = dc55382d487b512d2bc7a3fcf81b4be0930ade07054deedbc076c70ab326f792 +SIZE (KDE/applications/19.12.2/ktp-contact-runner-19.12.2.tar.xz) = 43060 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 525395) +++ head/net-im/ktp-desktop-applets/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373920 -SHA256 (KDE/applications/19.12.1/ktp-desktop-applets-19.12.1.tar.xz) = 63f1a0df6a392f41a54fda8c4896754c2687ba34968cf5bbc0ac84a37c1a1741 -SIZE (KDE/applications/19.12.1/ktp-desktop-applets-19.12.1.tar.xz) = 43612 +TIMESTAMP = 1580852940 +SHA256 (KDE/applications/19.12.2/ktp-desktop-applets-19.12.2.tar.xz) = 45ee5118404ce5245352edc274e7ab288ad19c3182d3f4d5fe00be5584c472ee +SIZE (KDE/applications/19.12.2/ktp-desktop-applets-19.12.2.tar.xz) = 43588 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 525395) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373921 -SHA256 (KDE/applications/19.12.1/ktp-filetransfer-handler-19.12.1.tar.xz) = 208aab8c78f4b7f38e331802a63fa10d00a65c115900c72c7a710b799ea56034 -SIZE (KDE/applications/19.12.1/ktp-filetransfer-handler-19.12.1.tar.xz) = 46140 +TIMESTAMP = 1580852935 +SHA256 (KDE/applications/19.12.2/ktp-filetransfer-handler-19.12.2.tar.xz) = b4af35586552139d34a23297d736cf73e823c4c4d20f0a43753ded277e81c96d +SIZE (KDE/applications/19.12.2/ktp-filetransfer-handler-19.12.2.tar.xz) = 46312 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 525395) +++ head/net-im/ktp-kded-module/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373921 -SHA256 (KDE/applications/19.12.1/ktp-kded-module-19.12.1.tar.xz) = 274f97c6874eeb2af14b937ed20430d2ac2e1a769890a70da8d477ac33ed6082 -SIZE (KDE/applications/19.12.1/ktp-kded-module-19.12.1.tar.xz) = 97656 +TIMESTAMP = 1580852938 +SHA256 (KDE/applications/19.12.2/ktp-kded-module-19.12.2.tar.xz) = bb644d2520c3d15aa10309146daf51174d6d617d7825fdfcd30d8932e99727fa +SIZE (KDE/applications/19.12.2/ktp-kded-module-19.12.2.tar.xz) = 97220 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 525395) +++ head/net-im/ktp-send-file/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373922 -SHA256 (KDE/applications/19.12.1/ktp-send-file-19.12.1.tar.xz) = 5652e40e02ac191ad6e8df276a5faf8805000760261d495f3f4424416da3b977 -SIZE (KDE/applications/19.12.1/ktp-send-file-19.12.1.tar.xz) = 29056 +TIMESTAMP = 1580852937 +SHA256 (KDE/applications/19.12.2/ktp-send-file-19.12.2.tar.xz) = b6504b62c91de61a1215ab8963577b16e4b25631d50f431571b830949426a29a +SIZE (KDE/applications/19.12.2/ktp-send-file-19.12.2.tar.xz) = 28928 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 525395) +++ head/net-im/ktp-text-ui/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373923 -SHA256 (KDE/applications/19.12.1/ktp-text-ui-19.12.1.tar.xz) = 226efc09343bb9218c461858747a1bc084ad8291fbbcc9f49eb888acfe2039c6 -SIZE (KDE/applications/19.12.1/ktp-text-ui-19.12.1.tar.xz) = 471268 +TIMESTAMP = 1580852940 +SHA256 (KDE/applications/19.12.2/ktp-text-ui-19.12.2.tar.xz) = 5960e9916a07732d29315994598dbd8e49693025ae455c19db6548cd23617a03 +SIZE (KDE/applications/19.12.2/ktp-text-ui-19.12.2.tar.xz) = 470636 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 525395) +++ head/print/print-manager/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373947 -SHA256 (KDE/applications/19.12.1/print-manager-19.12.1.tar.xz) = 76336be7da80a7494e2e5d5c9ab431047672a98630c7d61f916aa4b9edc35776 -SIZE (KDE/applications/19.12.1/print-manager-19.12.1.tar.xz) = 250772 +TIMESTAMP = 1580852992 +SHA256 (KDE/applications/19.12.2/print-manager-19.12.2.tar.xz) = 2f555307cd6aa74a739d38f4144b01e55acdd91999de8ef459e4571e6a27fc71 +SIZE (KDE/applications/19.12.2/print-manager-19.12.2.tar.xz) = 250988 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 525395) +++ head/science/kalzium/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373948 -SHA256 (KDE/applications/19.12.1/kalzium-19.12.1.tar.xz) = f50cc18d94ce9a1aaedcbee3a5dccc2cc6723ac8ec151a0ae0ff60009a7c6943 -SIZE (KDE/applications/19.12.1/kalzium-19.12.1.tar.xz) = 24596944 +TIMESTAMP = 1580852931 +SHA256 (KDE/applications/19.12.2/kalzium-19.12.2.tar.xz) = ce40143bdf33a7896b9e17fd3172287b33f6f2486bb0ecce2392d16bf88f9590 +SIZE (KDE/applications/19.12.2/kalzium-19.12.2.tar.xz) = 24585376 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 525395) +++ head/science/step/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373948 -SHA256 (KDE/applications/19.12.1/step-19.12.1.tar.xz) = f171c58b567bb29ed50109b341e53dc00116e814c90f51aa7a6e405326982907 -SIZE (KDE/applications/19.12.1/step-19.12.1.tar.xz) = 910284 +TIMESTAMP = 1580988617 +SHA256 (KDE/applications/19.12.2/step-19.12.2.tar.xz) = 6236521ac06f1589888ede136539b11aa56c6732c9b73792898a8adfae5a25b4 +SIZE (KDE/applications/19.12.2/step-19.12.2.tar.xz) = 915052 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 525395) +++ head/science/step/pkg-plist (revision 525396) @@ -1,799 +1,842 @@ bin/step etc/xdg/step.knsrc share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/de/Anchor.html %%DATADIR%%/objinfo/l10n/de/Box.html %%DATADIR%%/objinfo/l10n/de/ChargedParticle.html %%DATADIR%%/objinfo/l10n/de/CoulombForce.html %%DATADIR%%/objinfo/l10n/de/Disk.html %%DATADIR%%/objinfo/l10n/de/Gas.html %%DATADIR%%/objinfo/l10n/de/GasLJForce.html %%DATADIR%%/objinfo/l10n/de/GasParticle.html %%DATADIR%%/objinfo/l10n/de/GravitationForce.html %%DATADIR%%/objinfo/l10n/de/LinearMotor.html %%DATADIR%%/objinfo/l10n/de/Meter.html %%DATADIR%%/objinfo/l10n/de/Note.html %%DATADIR%%/objinfo/l10n/de/Particle.html %%DATADIR%%/objinfo/l10n/de/Pin.html %%DATADIR%%/objinfo/l10n/de/Polygon.html %%DATADIR%%/objinfo/l10n/de/Spring.html %%DATADIR%%/objinfo/l10n/de/WeightForce.html %%DATADIR%%/objinfo/l10n/de/World.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/it/Box.html %%DATADIR%%/objinfo/l10n/it/ChargedParticle.html %%DATADIR%%/objinfo/l10n/it/Disk.html %%DATADIR%%/objinfo/l10n/it/Gas.html %%DATADIR%%/objinfo/l10n/it/GasParticle.html %%DATADIR%%/objinfo/l10n/it/Meter.html %%DATADIR%%/objinfo/l10n/it/Note.html %%DATADIR%%/objinfo/l10n/it/Particle.html %%DATADIR%%/objinfo/l10n/it/Polygon.html %%DATADIR%%/objinfo/l10n/it/Spring.html %%DATADIR%%/objinfo/l10n/it/World.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html +%%DATADIR%%/examples/ca@valencia/brownian.step +%%DATADIR%%/examples/ca@valencia/doublependulum.step +%%DATADIR%%/examples/ca@valencia/eightpendula.step +%%DATADIR%%/examples/ca@valencia/first.step +%%DATADIR%%/examples/ca@valencia/fourpendula.step +%%DATADIR%%/examples/ca@valencia/gas.step +%%DATADIR%%/examples/ca@valencia/graph.step +%%DATADIR%%/examples/ca@valencia/liquid.step +%%DATADIR%%/examples/ca@valencia/lissajous.step +%%DATADIR%%/examples/ca@valencia/motor.step +%%DATADIR%%/examples/ca@valencia/motor1.step +%%DATADIR%%/examples/ca@valencia/note.step +%%DATADIR%%/examples/ca@valencia/resonance.step +%%DATADIR%%/examples/ca@valencia/softbody.step +%%DATADIR%%/examples/ca@valencia/solar.step +%%DATADIR%%/examples/ca@valencia/springs.step +%%DATADIR%%/examples/ca@valencia/wave.step +%%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html +%%DATADIR%%/objinfo/l10n/ca@valencia/box.html +%%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html +%%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html +%%DATADIR%%/objinfo/l10n/ca@valencia/disk.html +%%DATADIR%%/objinfo/l10n/ca@valencia/gas.html +%%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html +%%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html +%%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html +%%DATADIR%%/objinfo/l10n/ca@valencia/meter.html +%%DATADIR%%/objinfo/l10n/ca@valencia/note.html +%%DATADIR%%/objinfo/l10n/ca@valencia/particle.html +%%DATADIR%%/objinfo/l10n/ca@valencia/pin.html +%%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html +%%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html +%%DATADIR%%/objinfo/l10n/ca@valencia/spring.html +%%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html +%%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step +%%DATADIR%%/tutorials/ca@valencia/tutorial1.step +%%DATADIR%%/tutorials/ca@valencia/tutorial2.step +%%DATADIR%%/tutorials/ca@valencia/tutorial3.step +%%DATADIR%%/tutorials/ca@valencia/tutorial4.step +%%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step +share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo +share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 525395) +++ head/security/kgpg/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373949 -SHA256 (KDE/applications/19.12.1/kgpg-19.12.1.tar.xz) = e64dc85f303e45b8a7ef635525f6834c4fd2db36c5131fdb231fa11f7237fdb5 -SIZE (KDE/applications/19.12.1/kgpg-19.12.1.tar.xz) = 2789500 +TIMESTAMP = 1580852911 +SHA256 (KDE/applications/19.12.2/kgpg-19.12.2.tar.xz) = c3ed70b4f0ffce3ae6e7c6f8f437097cceb8456484cbfa4b4dd6e911a47fd5c1 +SIZE (KDE/applications/19.12.2/kgpg-19.12.2.tar.xz) = 2790000 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 525395) +++ head/security/kleopatra/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373950 -SHA256 (KDE/applications/19.12.1/kleopatra-19.12.1.tar.xz) = 94ee94031696dd5d79d7a0ca00a2e51b4569466689e8a76c129deae645af08f4 -SIZE (KDE/applications/19.12.1/kleopatra-19.12.1.tar.xz) = 1932580 +TIMESTAMP = 1580852913 +SHA256 (KDE/applications/19.12.2/kleopatra-19.12.2.tar.xz) = a5260e57f57c632a0a17c1d2979e95593dd6f38867a09c6f01769bb55d70b0ee +SIZE (KDE/applications/19.12.2/kleopatra-19.12.2.tar.xz) = 1927004 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 525395) +++ head/security/kpkpass/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373950 -SHA256 (KDE/applications/19.12.1/kpkpass-19.12.1.tar.xz) = b5a079dc1c102c52e29c1d0da3e5a1e51bf9e0a666bb82d6b783f1b55eaa7ada -SIZE (KDE/applications/19.12.1/kpkpass-19.12.1.tar.xz) = 23268 +TIMESTAMP = 1580852913 +SHA256 (KDE/applications/19.12.2/kpkpass-19.12.2.tar.xz) = 166b3a5b384bd606924e0c5e30878adc3dfbc1f0dc260a1f43df303d1c94b575 +SIZE (KDE/applications/19.12.2/kpkpass-19.12.2.tar.xz) = 23324 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 525395) +++ head/security/kwalletmanager/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373951 -SHA256 (KDE/applications/19.12.1/kwalletmanager-19.12.1.tar.xz) = b2370fbf559a3b8e8551daedada9c97d07041388dc74f8bd1286c64ab18b936b -SIZE (KDE/applications/19.12.1/kwalletmanager-19.12.1.tar.xz) = 788792 +TIMESTAMP = 1580852911 +SHA256 (KDE/applications/19.12.2/kwalletmanager-19.12.2.tar.xz) = 9ea76f109ec6910df6672aec25b50b3baa965437beec678ef5e21f1f66ab89fb +SIZE (KDE/applications/19.12.2/kwalletmanager-19.12.2.tar.xz) = 788560 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 525395) +++ head/security/libkleo/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373952 -SHA256 (KDE/applications/19.12.1/libkleo-19.12.1.tar.xz) = 8e9b78fbeb861370ab81f98150ff9ea8afc960293ae8324fedd0b877302994a7 -SIZE (KDE/applications/19.12.1/libkleo-19.12.1.tar.xz) = 343720 +TIMESTAMP = 1580852912 +SHA256 (KDE/applications/19.12.2/libkleo-19.12.2.tar.xz) = 2d95ede181b06d3068172a1179baea58388e7f1f595d11867dda57c7cdebfebd +SIZE (KDE/applications/19.12.2/libkleo-19.12.2.tar.xz) = 343340 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 525395) +++ head/sysutils/baloo-widgets/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373952 -SHA256 (KDE/applications/19.12.1/baloo-widgets-19.12.1.tar.xz) = a9fb3a136267bb0089192f7bc523903bd304e528160d9f653ccd052b4a8c110c -SIZE (KDE/applications/19.12.1/baloo-widgets-19.12.1.tar.xz) = 262636 +TIMESTAMP = 1580852979 +SHA256 (KDE/applications/19.12.2/baloo-widgets-19.12.2.tar.xz) = ccc2df948f1d6245593ab1c6082b347e8da45bc502df0557caf0e17040c0bbc8 +SIZE (KDE/applications/19.12.2/baloo-widgets-19.12.2.tar.xz) = 260908 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 525395) +++ head/sysutils/filelight/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373953 -SHA256 (KDE/applications/19.12.1/filelight-19.12.1.tar.xz) = 29806a4149b3fb60f81372d56c184d0e2f861816639a0a21b85cd7af314f860b -SIZE (KDE/applications/19.12.1/filelight-19.12.1.tar.xz) = 661828 +TIMESTAMP = 1580852977 +SHA256 (KDE/applications/19.12.2/filelight-19.12.2.tar.xz) = fa00661d43bc45e2e6c03cf7c8db6a24a82659461224b416cdfc9a58169f23c0 +SIZE (KDE/applications/19.12.2/filelight-19.12.2.tar.xz) = 661372 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 525395) +++ head/sysutils/k3b/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373954 -SHA256 (KDE/applications/19.12.1/k3b-19.12.1.tar.xz) = 59def9d9c9e14de52a14d58a22c15173d98086d9a156a3a463b9607dc7be602d -SIZE (KDE/applications/19.12.1/k3b-19.12.1.tar.xz) = 10501372 +TIMESTAMP = 1580852975 +SHA256 (KDE/applications/19.12.2/k3b-19.12.2.tar.xz) = 6306f88cbd49aa0ea65a51d13afd69cc8aba6011106c28aa85d08d769d9e8201 +SIZE (KDE/applications/19.12.2/k3b-19.12.2.tar.xz) = 10515656 Index: head/sysutils/k3b/pkg-plist =================================================================== --- head/sysutils/k3b/pkg-plist (revision 525395) +++ head/sysutils/k3b/pkg-plist (revision 525396) @@ -1,538 +1,541 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libk3bdevice.so lib/libk3bdevice.so.7 lib/libk3bdevice.so.7.0.0 lib/libk3blib.so lib/libk3blib.so.7 lib/libk3blib.so.7.0.0 lib/libexec/k3bhelper %%QT_PLUGINDIR%%/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3blameencoder.so %%QT_PLUGINDIR%%/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3bwavedecoder.so %%QT_PLUGINDIR%%/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservices5/k3baudiometainforenamerplugin.desktop share/kservices5/k3baudioprojectcddbplugin.desktop share/kservices5/k3bexternalencoder.desktop share/kservices5/k3bflacdecoder.desktop share/kservices5/k3blameencoder.desktop share/kservices5/k3blibsndfiledecoder.desktop share/kservices5/k3bmaddecoder.desktop share/kservices5/k3boggvorbisdecoder.desktop share/kservices5/k3boggvorbisencoder.desktop share/kservices5/k3bsoxencoder.desktop share/kservices5/k3bwavedecoder.desktop share/kservices5/kcm_k3bexternalencoder.desktop share/kservices5/kcm_k3blameencoder.desktop share/kservices5/kcm_k3boggvorbisencoder.desktop share/kservices5/kcm_k3bsoxencoder.desktop share/kservices5/videodvd.protocol share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo share/locale/ast/LC_MESSAGES/kio_videodvd.mo share/locale/ast/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo +share/locale/ia/LC_MESSAGES/k3b.mo +share/locale/ia/LC_MESSAGES/libk3b.mo +share/locale/ia/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 525395) +++ head/sysutils/kbackup/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373955 -SHA256 (KDE/applications/19.12.1/kbackup-19.12.1.tar.xz) = 1b30c142576d823043d4e78fa37592e8df79b5e13ea7a980d336b25c1093ecf8 -SIZE (KDE/applications/19.12.1/kbackup-19.12.1.tar.xz) = 358832 +TIMESTAMP = 1580852974 +SHA256 (KDE/applications/19.12.2/kbackup-19.12.2.tar.xz) = d70080059333e28e1ddd61ddded71dd69dcc0d12c6123743b40f8ffc7b2d55ff +SIZE (KDE/applications/19.12.2/kbackup-19.12.2.tar.xz) = 358748 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 525395) +++ head/sysutils/kcron/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373955 -SHA256 (KDE/applications/19.12.1/kcron-19.12.1.tar.xz) = 8c7d5fa24349b9ff7c4927579876ef84895398d8cde6122804d7104a4f4d5963 -SIZE (KDE/applications/19.12.1/kcron-19.12.1.tar.xz) = 890828 +TIMESTAMP = 1580852976 +SHA256 (KDE/applications/19.12.2/kcron-19.12.2.tar.xz) = 48445c681be028736485898478245c3d2a7be0703be943241219db6ae7979a32 +SIZE (KDE/applications/19.12.2/kcron-19.12.2.tar.xz) = 891300 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 525395) +++ head/sysutils/kdebugsettings/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373956 -SHA256 (KDE/applications/19.12.1/kdebugsettings-19.12.1.tar.xz) = 2730430123e6198131acbabb5d02800981082f7249f0d9b9001b5313b2d45f35 -SIZE (KDE/applications/19.12.1/kdebugsettings-19.12.1.tar.xz) = 63088 +TIMESTAMP = 1580852980 +SHA256 (KDE/applications/19.12.2/kdebugsettings-19.12.2.tar.xz) = a72156757c1c12cae76058713651dee59590395ddd3c0c1ccc6c2b51af6f1a2c +SIZE (KDE/applications/19.12.2/kdebugsettings-19.12.2.tar.xz) = 63524 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 525395) +++ head/sysutils/kdf/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373957 -SHA256 (KDE/applications/19.12.1/kdf-19.12.1.tar.xz) = bf5c96e5a78e0465e9b91617ffff0c37f04e896dc059d70962bbdd943c6c1c04 -SIZE (KDE/applications/19.12.1/kdf-19.12.1.tar.xz) = 462236 +TIMESTAMP = 1580852982 +SHA256 (KDE/applications/19.12.2/kdf-19.12.2.tar.xz) = e91b9ec8794e083ec8dd7ceb49a9dbfa2ed69e12dde24df741ee6a8ba9ef9271 +SIZE (KDE/applications/19.12.2/kdf-19.12.2.tar.xz) = 461856 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 525395) +++ head/sysutils/kdialog/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373957 -SHA256 (KDE/applications/19.12.1/kdialog-19.12.1.tar.xz) = 2a13d1957089e4a0307681786b9b5467b5df777311afd4598dd1cb69b4e070f6 -SIZE (KDE/applications/19.12.1/kdialog-19.12.1.tar.xz) = 104168 +TIMESTAMP = 1580852982 +SHA256 (KDE/applications/19.12.2/kdialog-19.12.2.tar.xz) = 974bd61018ce5883a2c4e3cdc0dba891f2018dc2bf6e668b02afc2560b69b5ff +SIZE (KDE/applications/19.12.2/kdialog-19.12.2.tar.xz) = 103700 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 525395) +++ head/sysutils/kfloppy/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373958 -SHA256 (KDE/applications/19.12.1/kfloppy-19.12.1.tar.xz) = 77581323d16f8666fefca3372c91567dfe5233c0f92c79ead11b2253aee64e2c -SIZE (KDE/applications/19.12.1/kfloppy-19.12.1.tar.xz) = 199648 +TIMESTAMP = 1580852976 +SHA256 (KDE/applications/19.12.2/kfloppy-19.12.2.tar.xz) = f7bf42dcd7bf930b966ff86e4bf72f975442d0f42bffd78ddad55dbee458a473 +SIZE (KDE/applications/19.12.2/kfloppy-19.12.2.tar.xz) = 199624 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 525395) +++ head/sysutils/khelpcenter/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373959 -SHA256 (KDE/applications/19.12.1/khelpcenter-19.12.1.tar.xz) = cd38f6b719f4f6228e3a7f94fc63f16020e86382ca402179ae767f2f0b846466 -SIZE (KDE/applications/19.12.1/khelpcenter-19.12.1.tar.xz) = 3848708 +TIMESTAMP = 1580852978 +SHA256 (KDE/applications/19.12.2/khelpcenter-19.12.2.tar.xz) = a4aac23cf6b42d2617048d5545fa277bcd486d8131403ef9b8f9bdfe5721a8a0 +SIZE (KDE/applications/19.12.2/khelpcenter-19.12.2.tar.xz) = 3849036 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 525395) +++ head/sysutils/ksystemlog/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373959 -SHA256 (KDE/applications/19.12.1/ksystemlog-19.12.1.tar.xz) = 497496ca7451cd34f193ba11fe3100479515a89a34f0437ca2f508a48e68e895 -SIZE (KDE/applications/19.12.1/ksystemlog-19.12.1.tar.xz) = 1928568 +TIMESTAMP = 1580852978 +SHA256 (KDE/applications/19.12.2/ksystemlog-19.12.2.tar.xz) = cf241da3bdfa86b700c4fb7ccc7688129b3d33981ee599cf5c512d5bb1ccdc57 +SIZE (KDE/applications/19.12.2/ksystemlog-19.12.2.tar.xz) = 1928240 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 525395) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373960 -SHA256 (KDE/applications/19.12.1/signon-kwallet-extension-19.12.1.tar.xz) = a98397cc15733b9c1010f022a8d6bcf7727c4065ba6ae662273ba97864836bbe -SIZE (KDE/applications/19.12.1/signon-kwallet-extension-19.12.1.tar.xz) = 10528 +TIMESTAMP = 1580852981 +SHA256 (KDE/applications/19.12.2/signon-kwallet-extension-19.12.2.tar.xz) = 1ce51b2848431ef65b9b88efeab2ed6c75fd37c97bd74a3ea533125115b1bf44 +SIZE (KDE/applications/19.12.2/signon-kwallet-extension-19.12.2.tar.xz) = 10576 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 525395) +++ head/sysutils/sweeper/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373961 -SHA256 (KDE/applications/19.12.1/sweeper-19.12.1.tar.xz) = 50b1464c08b738f4af4c78b4edc291ce93877a52831b810cd12c8ca6a4df0cf9 -SIZE (KDE/applications/19.12.1/sweeper-19.12.1.tar.xz) = 368204 +TIMESTAMP = 1580852980 +SHA256 (KDE/applications/19.12.2/sweeper-19.12.2.tar.xz) = bbe3b96824d1252f6a448695e787152f3c76ede581bcb85a322afe3846c3640f +SIZE (KDE/applications/19.12.2/sweeper-19.12.2.tar.xz) = 368320 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 525395) +++ head/textproc/kompare/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373961 -SHA256 (KDE/applications/19.12.1/kompare-19.12.1.tar.xz) = c2eede65a85d59067caf6161606c3de4f18ec6b5e824cb1da9e6b3a8f1b7a92d -SIZE (KDE/applications/19.12.1/kompare-19.12.1.tar.xz) = 801892 +TIMESTAMP = 1580852901 +SHA256 (KDE/applications/19.12.2/kompare-19.12.2.tar.xz) = ad1bfd357a4b8a7786e6b5f6361a1444479077ca42b3134e60c24973f7f027ba +SIZE (KDE/applications/19.12.2/kompare-19.12.2.tar.xz) = 802148 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 525395) +++ head/textproc/libkomparediff2/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373962 -SHA256 (KDE/applications/19.12.1/libkomparediff2-19.12.1.tar.xz) = 319d61742f7603a60d781151cd717291c5cb976ff0f2895df9d167526cfb0b4a -SIZE (KDE/applications/19.12.1/libkomparediff2-19.12.1.tar.xz) = 173484 +TIMESTAMP = 1580852900 +SHA256 (KDE/applications/19.12.2/libkomparediff2-19.12.2.tar.xz) = ad17a6b9f9c128cd29380c9ce777a2a336db8f9d3e7a715f057587a06dc0d6e2 +SIZE (KDE/applications/19.12.2/libkomparediff2-19.12.2.tar.xz) = 170760 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 525395) +++ head/x11/konsole/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373965 -SHA256 (KDE/applications/19.12.1/konsole-19.12.1.tar.xz) = 39797ed81c5ace12fd90f4a6e65c25d33db8e4385ab2baad2bd6a3b2db0ef075 -SIZE (KDE/applications/19.12.1/konsole-19.12.1.tar.xz) = 1158932 +TIMESTAMP = 1580852899 +SHA256 (KDE/applications/19.12.2/konsole-19.12.2.tar.xz) = 195536969ddf8eeaa02912acddc4caf5ea3d42ce794cb24f2e6b5fddf190f8b7 +SIZE (KDE/applications/19.12.2/konsole-19.12.2.tar.xz) = 1159780 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 525395) +++ head/x11/yakuake/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373966 -SHA256 (KDE/applications/19.12.1/yakuake-19.12.1.tar.xz) = abff4f358f41f544b2e12c340a74d92482241b1b95906b14add7810384602e42 -SIZE (KDE/applications/19.12.1/yakuake-19.12.1.tar.xz) = 372496 +TIMESTAMP = 1580852900 +SHA256 (KDE/applications/19.12.2/yakuake-19.12.2.tar.xz) = f6dc8e05e1649cccd1702e5cc8e6f5e04d9860e67b864a4745945be50cee43ac +SIZE (KDE/applications/19.12.2/yakuake-19.12.2.tar.xz) = 372232 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 525395) +++ head/x11-clocks/kteatime/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373963 -SHA256 (KDE/applications/19.12.1/kteatime-19.12.1.tar.xz) = 49a0531b64e93ceb29548a7f75da755e75afda001fce2e6ba906372456b5dc17 -SIZE (KDE/applications/19.12.1/kteatime-19.12.1.tar.xz) = 286916 +TIMESTAMP = 1580852991 +SHA256 (KDE/applications/19.12.2/kteatime-19.12.2.tar.xz) = c1ab2f17b2b321234d865ce6e24ef9d4676ca3bf76d52df25d2051dcf30b73d1 +SIZE (KDE/applications/19.12.2/kteatime-19.12.2.tar.xz) = 287184 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 525395) +++ head/x11-clocks/ktimer/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373963 -SHA256 (KDE/applications/19.12.1/ktimer-19.12.1.tar.xz) = 0c5fac1baddfa3144b8930f3d42b78a3eb8681d642a3c3339c903ad2cb30a2ba -SIZE (KDE/applications/19.12.1/ktimer-19.12.1.tar.xz) = 377424 +TIMESTAMP = 1580852991 +SHA256 (KDE/applications/19.12.2/ktimer-19.12.2.tar.xz) = e6715f28f26c36033c991f7b2c6c4db40c60b15e7df3fea52aaac997234c253f +SIZE (KDE/applications/19.12.2/ktimer-19.12.2.tar.xz) = 377248 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 525395) +++ head/x11-fm/dolphin/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373964 -SHA256 (KDE/applications/19.12.1/dolphin-19.12.1.tar.xz) = 492b4ca71e33373c7000aad5c7daf6e04d7ad537e1fde8a73d2c3db15858e8c8 -SIZE (KDE/applications/19.12.1/dolphin-19.12.1.tar.xz) = 4778220 +TIMESTAMP = 1580852973 +SHA256 (KDE/applications/19.12.2/dolphin-19.12.2.tar.xz) = d4ef94be73b6da0d8031cd50cae07e242efed873212a99e1cf5111330fff3f7d +SIZE (KDE/applications/19.12.2/dolphin-19.12.2.tar.xz) = 4778864 Index: head/x11-fm/dolphin/pkg-plist =================================================================== --- head/x11-fm/dolphin/pkg-plist (revision 525395) +++ head/x11-fm/dolphin/pkg-plist (revision 525396) @@ -1,126 +1,127 @@ bin/dolphin bin/servicemenuinstaller share/qlogging-categories5/dolphin.categories etc/xdg/servicemenu.knsrc include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so %%QT_PLUGINDIR%%/dolphinpart.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/kcm_dolphinservices.so %%QT_PLUGINDIR%%/kcm_dolphinviewmodes.so share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop share/kservices5/kcmdolphinservices.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo +share/locale/ca@valencia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/el/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/et/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 525395) +++ head/x11-fm/konqueror/distinfo (revision 525396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1578373965 -SHA256 (KDE/applications/19.12.1/konqueror-19.12.1.tar.xz) = 20da57d7dd141e2c45345457ca90be26af28c2078224eb461dff9f9589889a09 -SIZE (KDE/applications/19.12.1/konqueror-19.12.1.tar.xz) = 7383336 +TIMESTAMP = 1580852974 +SHA256 (KDE/applications/19.12.2/konqueror-19.12.2.tar.xz) = 5baf75504dcb0e3ddc6812ac377b174cac44e0bff3c374a13985b26aab81a38e +SIZE (KDE/applications/19.12.2/konqueror-19.12.2.tar.xz) = 7379568