Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 560804) +++ head/Mk/Uses/kde.mk (revision 560805) @@ -1,862 +1,862 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.20.4 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.77.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 20.12.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.16.0 +KDE_APPLICATIONS_VERSION?= 20.12.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.16.1 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/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== 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 kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-kwayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 560804) +++ head/accessibility/kmag/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111050 -SHA256 (KDE/release-service/20.12.0/kmag-20.12.0.tar.xz) = 0ade18c35210cd80827ba239a413343663f04efe9974efdf6fe2aa50a3549975 -SIZE (KDE/release-service/20.12.0/kmag-20.12.0.tar.xz) = 697760 +TIMESTAMP = 1610047654 +SHA256 (KDE/release-service/20.12.1/kmag-20.12.1.tar.xz) = 12728dbb62fab21f63156859a08fd5694c668025c6b5ecdae7e48ab97cf09f54 +SIZE (KDE/release-service/20.12.1/kmag-20.12.1.tar.xz) = 697964 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 560804) +++ head/accessibility/kmousetool/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111049 -SHA256 (KDE/release-service/20.12.0/kmousetool-20.12.0.tar.xz) = 768281644d77d9cbc0e88165b411f77ec86400fe3e0961aaba4f0b41cc884e8a -SIZE (KDE/release-service/20.12.0/kmousetool-20.12.0.tar.xz) = 116556 +TIMESTAMP = 1610047653 +SHA256 (KDE/release-service/20.12.1/kmousetool-20.12.1.tar.xz) = 33cb14d5595c6b4ed5ec49f3bbe1e51671d9599c9c228629258d39f758c250d9 +SIZE (KDE/release-service/20.12.1/kmousetool-20.12.1.tar.xz) = 116612 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 560804) +++ head/accessibility/kmouth/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111050 -SHA256 (KDE/release-service/20.12.0/kmouth-20.12.0.tar.xz) = 1a97bd05b8776d8dca074252e4c34317686f93628a5eed623fadd8600d8bb228 -SIZE (KDE/release-service/20.12.0/kmouth-20.12.0.tar.xz) = 2082852 +TIMESTAMP = 1610047655 +SHA256 (KDE/release-service/20.12.1/kmouth-20.12.1.tar.xz) = ec411718b91ab4564c4a39269f9f4ef9b1b9fd3467fd4ccf3ffb6b2c78561762 +SIZE (KDE/release-service/20.12.1/kmouth-20.12.1.tar.xz) = 2082928 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 560804) +++ head/archivers/ark/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111051 -SHA256 (KDE/release-service/20.12.0/ark-20.12.0.tar.xz) = b7bc762eca2f2cd9dc13ca583291133cec3c4f08ab72779a59b54c5d6e4e45b7 -SIZE (KDE/release-service/20.12.0/ark-20.12.0.tar.xz) = 2716084 +TIMESTAMP = 1610047656 +SHA256 (KDE/release-service/20.12.1/ark-20.12.1.tar.xz) = 357366960c4b1621ccc943465800938da3a8711985ca3fe1109151c8b952eaa3 +SIZE (KDE/release-service/20.12.1/ark-20.12.1.tar.xz) = 2716648 Index: head/astro/kosmindoormap/distinfo =================================================================== --- head/astro/kosmindoormap/distinfo (revision 560804) +++ head/astro/kosmindoormap/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111051 -SHA256 (KDE/release-service/20.12.0/kosmindoormap-20.12.0.tar.xz) = c1c1de825cc0dddce608372c8046b667b3f2154330205a8e824fe63dfbab49e2 -SIZE (KDE/release-service/20.12.0/kosmindoormap-20.12.0.tar.xz) = 310520 +TIMESTAMP = 1610047658 +SHA256 (KDE/release-service/20.12.1/kosmindoormap-20.12.1.tar.xz) = dde6422b097490ab2573233dc731ccc96c3277232b6bcc21c3dd77fb1576d3a0 +SIZE (KDE/release-service/20.12.1/kosmindoormap-20.12.1.tar.xz) = 313096 Index: head/astro/kosmindoormap/pkg-plist =================================================================== --- head/astro/kosmindoormap/pkg-plist (revision 560804) +++ head/astro/kosmindoormap/pkg-plist (revision 560805) @@ -1,70 +1,72 @@ include/KOSM/Datatypes include/KOSM/Element include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/kosm_export.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 lib/libKOSM.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo +share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo +share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories5/org_kde_kosmindoormap.categories Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 560804) +++ head/astro/marble/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111052 -SHA256 (KDE/release-service/20.12.0/marble-20.12.0.tar.xz) = aa5a7891a7f8d0b6b9abdcbc99fc4dc783f6b93e898b3b9fcbe69b7348c1eb85 -SIZE (KDE/release-service/20.12.0/marble-20.12.0.tar.xz) = 52213632 +TIMESTAMP = 1610047660 +SHA256 (KDE/release-service/20.12.1/marble-20.12.1.tar.xz) = 65c936ceefdd368494778e55a921f9d111e6fabab718b948f3f59ede5f446970 +SIZE (KDE/release-service/20.12.1/marble-20.12.1.tar.xz) = 52219668 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 560804) +++ head/audio/audiocd-kio/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/audiocd-kio-20.12.0.tar.xz) = aa91bbdca10a14a3bd4758d4b2b1d1bed9ed3073bf216845ec174f9378f2c872 -SIZE (KDE/release-service/20.12.0/audiocd-kio-20.12.0.tar.xz) = 500504 +TIMESTAMP = 1610047664 +SHA256 (KDE/release-service/20.12.1/audiocd-kio-20.12.1.tar.xz) = c153a4bdaa43f8077d9dd9de30b02c7d5086b3036547acb40c030fcf000f99e6 +SIZE (KDE/release-service/20.12.1/audiocd-kio-20.12.1.tar.xz) = 500504 Index: head/audio/elisa/distinfo =================================================================== --- head/audio/elisa/distinfo (revision 560804) +++ head/audio/elisa/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/elisa-20.12.0.tar.xz) = 0e1bed3836da289361b9a9616caadf24479e184e6b8918747567b46535058508 -SIZE (KDE/release-service/20.12.0/elisa-20.12.0.tar.xz) = 1660052 +TIMESTAMP = 1610047663 +SHA256 (KDE/release-service/20.12.1/elisa-20.12.1.tar.xz) = 3e360105dd08296bee61d2d92adfc7311b46bdb813be5842f4f2fbd64fecafd2 +SIZE (KDE/release-service/20.12.1/elisa-20.12.1.tar.xz) = 1660660 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 560804) +++ head/audio/juk/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/juk-20.12.0.tar.xz) = a6f9f58f6a354de083ff6274ceaad2025f2876b70c45e8451cb90dd4848e908a -SIZE (KDE/release-service/20.12.0/juk-20.12.0.tar.xz) = 1997728 +TIMESTAMP = 1610047668 +SHA256 (KDE/release-service/20.12.1/juk-20.12.1.tar.xz) = 99749497c9285e2933374a73fe694ec5f66192ab726b6e6772b997306d6da467 +SIZE (KDE/release-service/20.12.1/juk-20.12.1.tar.xz) = 1997868 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 560804) +++ head/audio/kmix/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmix-20.12.0.tar.xz) = 161b743868a4fe3dad42c5a50a9568c61d8e44cf73f1f4f3e53e2de1c8936e72 -SIZE (KDE/release-service/20.12.0/kmix-20.12.0.tar.xz) = 1148624 +TIMESTAMP = 1610047662 +SHA256 (KDE/release-service/20.12.1/kmix-20.12.1.tar.xz) = 17c5bb01ddb61945439a116fc6615794a97b1e204f245e45b6255b5ec7f832e0 +SIZE (KDE/release-service/20.12.1/kmix-20.12.1.tar.xz) = 1150176 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 560804) +++ head/audio/kwave/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kwave-20.12.0.tar.xz) = 0448a54a0a48953dfaf9f8ac5b0cc4fde4ceb407063eee724b2ade1e69cc9d45 -SIZE (KDE/release-service/20.12.0/kwave-20.12.0.tar.xz) = 6881696 +TIMESTAMP = 1610047666 +SHA256 (KDE/release-service/20.12.1/kwave-20.12.1.tar.xz) = f8b51e5b42b8d66b7489f36b2304f974df401e4677ae7181a92d0092623bb9f0 +SIZE (KDE/release-service/20.12.1/kwave-20.12.1.tar.xz) = 6881684 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 560804) +++ head/audio/libkcddb/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkcddb-20.12.0.tar.xz) = a922f201a9366f66ab3292f3f9e34d03fbd0183a6c23d8b5bd3730b69c567b25 -SIZE (KDE/release-service/20.12.0/libkcddb-20.12.0.tar.xz) = 425080 +TIMESTAMP = 1610047669 +SHA256 (KDE/release-service/20.12.1/libkcddb-20.12.1.tar.xz) = f3688d66a3026d5355a340e2d9a9e669d5b70afe187789ca7a0919713c257e1e +SIZE (KDE/release-service/20.12.1/libkcddb-20.12.1.tar.xz) = 425016 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 560804) +++ head/audio/libkcompactdisc/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkcompactdisc-20.12.0.tar.xz) = e74c0a2952ab93213482851a2cf2bc3299f33614467d73054f871e26d6092078 -SIZE (KDE/release-service/20.12.0/libkcompactdisc-20.12.0.tar.xz) = 96708 +TIMESTAMP = 1610047667 +SHA256 (KDE/release-service/20.12.1/libkcompactdisc-20.12.1.tar.xz) = 2b1ad8500cd8052a5bce6bce78c8cda3a42f56927584645b870d6929f4fd3a80 +SIZE (KDE/release-service/20.12.1/libkcompactdisc-20.12.1.tar.xz) = 96780 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 560804) +++ head/databases/akonadi/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-20.12.0.tar.xz) = 37318b79992264e996d8afa14fa332e984a60e3a31de36f6da03ca395c2e6813 -SIZE (KDE/release-service/20.12.0/akonadi-20.12.0.tar.xz) = 1593204 +TIMESTAMP = 1610047670 +SHA256 (KDE/release-service/20.12.1/akonadi-20.12.1.tar.xz) = b3f48ffe85fd5010138a7af3ec857b64f474dbaa9a2e54ec2ed811c48a19e384 +SIZE (KDE/release-service/20.12.1/akonadi-20.12.1.tar.xz) = 1593196 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 560804) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-calendar-tools-20.12.0.tar.xz) = 22ef277ebffd6147fe8b1d2562818b39a5aca1c78682c116ae3de6193b8e367e -SIZE (KDE/release-service/20.12.0/akonadi-calendar-tools-20.12.0.tar.xz) = 223464 +TIMESTAMP = 1610047707 +SHA256 (KDE/release-service/20.12.1/akonadi-calendar-tools-20.12.1.tar.xz) = 581c5db2f2b791799264250edeb9e4b001cca1270378b4923dc1a928c6aebff4 +SIZE (KDE/release-service/20.12.1/akonadi-calendar-tools-20.12.1.tar.xz) = 224868 Index: head/deskutils/akonadi-calendar-tools/pkg-plist =================================================================== --- head/deskutils/akonadi-calendar-tools/pkg-plist (revision 560804) +++ head/deskutils/akonadi-calendar-tools/pkg-plist (revision 560805) @@ -1,96 +1,97 @@ bin/calendarjanitor bin/konsolekalendar share/qlogging-categories5/console.categories share/qlogging-categories5/console.renamecategories share/applications/konsolekalendar.desktop share/icons/hicolor/128x128/apps/konsolekalendar.png share/icons/hicolor/16x16/apps/konsolekalendar.png share/icons/hicolor/22x22/apps/konsolekalendar.png share/icons/hicolor/32x32/apps/konsolekalendar.png share/icons/hicolor/48x48/apps/konsolekalendar.png share/locale/ar/LC_MESSAGES/calendarjanitor.mo share/locale/ar/LC_MESSAGES/konsolekalendar.mo share/locale/bg/LC_MESSAGES/konsolekalendar.mo share/locale/bs/LC_MESSAGES/calendarjanitor.mo share/locale/bs/LC_MESSAGES/konsolekalendar.mo share/locale/ca/LC_MESSAGES/calendarjanitor.mo share/locale/ca/LC_MESSAGES/konsolekalendar.mo share/locale/ca@valencia/LC_MESSAGES/calendarjanitor.mo share/locale/ca@valencia/LC_MESSAGES/konsolekalendar.mo share/locale/cs/LC_MESSAGES/calendarjanitor.mo share/locale/cs/LC_MESSAGES/konsolekalendar.mo share/locale/da/LC_MESSAGES/calendarjanitor.mo share/locale/da/LC_MESSAGES/konsolekalendar.mo share/locale/de/LC_MESSAGES/calendarjanitor.mo share/locale/de/LC_MESSAGES/konsolekalendar.mo share/locale/el/LC_MESSAGES/calendarjanitor.mo share/locale/el/LC_MESSAGES/konsolekalendar.mo share/locale/en_GB/LC_MESSAGES/calendarjanitor.mo share/locale/en_GB/LC_MESSAGES/konsolekalendar.mo share/locale/eo/LC_MESSAGES/konsolekalendar.mo share/locale/es/LC_MESSAGES/calendarjanitor.mo share/locale/es/LC_MESSAGES/konsolekalendar.mo share/locale/et/LC_MESSAGES/calendarjanitor.mo share/locale/et/LC_MESSAGES/konsolekalendar.mo +share/locale/eu/LC_MESSAGES/calendarjanitor.mo share/locale/eu/LC_MESSAGES/konsolekalendar.mo share/locale/fa/LC_MESSAGES/konsolekalendar.mo share/locale/fi/LC_MESSAGES/calendarjanitor.mo share/locale/fi/LC_MESSAGES/konsolekalendar.mo share/locale/fr/LC_MESSAGES/calendarjanitor.mo share/locale/fr/LC_MESSAGES/konsolekalendar.mo share/locale/ga/LC_MESSAGES/konsolekalendar.mo share/locale/gl/LC_MESSAGES/calendarjanitor.mo share/locale/gl/LC_MESSAGES/konsolekalendar.mo share/locale/he/LC_MESSAGES/konsolekalendar.mo share/locale/hi/LC_MESSAGES/calendarjanitor.mo share/locale/hi/LC_MESSAGES/konsolekalendar.mo share/locale/hr/LC_MESSAGES/konsolekalendar.mo share/locale/hu/LC_MESSAGES/calendarjanitor.mo share/locale/hu/LC_MESSAGES/konsolekalendar.mo share/locale/ia/LC_MESSAGES/calendarjanitor.mo share/locale/ia/LC_MESSAGES/konsolekalendar.mo share/locale/is/LC_MESSAGES/konsolekalendar.mo share/locale/it/LC_MESSAGES/calendarjanitor.mo share/locale/it/LC_MESSAGES/konsolekalendar.mo share/locale/ja/LC_MESSAGES/calendarjanitor.mo share/locale/ja/LC_MESSAGES/konsolekalendar.mo share/locale/kk/LC_MESSAGES/calendarjanitor.mo share/locale/kk/LC_MESSAGES/konsolekalendar.mo share/locale/km/LC_MESSAGES/konsolekalendar.mo share/locale/ko/LC_MESSAGES/calendarjanitor.mo share/locale/ko/LC_MESSAGES/konsolekalendar.mo share/locale/lt/LC_MESSAGES/calendarjanitor.mo share/locale/lt/LC_MESSAGES/konsolekalendar.mo share/locale/mr/LC_MESSAGES/konsolekalendar.mo share/locale/nb/LC_MESSAGES/calendarjanitor.mo share/locale/nb/LC_MESSAGES/konsolekalendar.mo share/locale/nds/LC_MESSAGES/calendarjanitor.mo share/locale/nds/LC_MESSAGES/konsolekalendar.mo share/locale/nl/LC_MESSAGES/calendarjanitor.mo share/locale/nl/LC_MESSAGES/konsolekalendar.mo share/locale/nn/LC_MESSAGES/konsolekalendar.mo share/locale/pa/LC_MESSAGES/konsolekalendar.mo share/locale/pl/LC_MESSAGES/calendarjanitor.mo share/locale/pl/LC_MESSAGES/konsolekalendar.mo share/locale/pt/LC_MESSAGES/calendarjanitor.mo share/locale/pt/LC_MESSAGES/konsolekalendar.mo share/locale/pt_BR/LC_MESSAGES/calendarjanitor.mo share/locale/pt_BR/LC_MESSAGES/konsolekalendar.mo share/locale/ro/LC_MESSAGES/konsolekalendar.mo share/locale/ru/LC_MESSAGES/calendarjanitor.mo share/locale/ru/LC_MESSAGES/konsolekalendar.mo share/locale/sk/LC_MESSAGES/calendarjanitor.mo share/locale/sk/LC_MESSAGES/konsolekalendar.mo share/locale/sl/LC_MESSAGES/calendarjanitor.mo share/locale/sl/LC_MESSAGES/konsolekalendar.mo share/locale/sv/LC_MESSAGES/calendarjanitor.mo share/locale/sv/LC_MESSAGES/konsolekalendar.mo share/locale/tr/LC_MESSAGES/calendarjanitor.mo share/locale/tr/LC_MESSAGES/konsolekalendar.mo share/locale/ug/LC_MESSAGES/konsolekalendar.mo share/locale/uk/LC_MESSAGES/calendarjanitor.mo share/locale/uk/LC_MESSAGES/konsolekalendar.mo share/locale/zh_CN/LC_MESSAGES/calendarjanitor.mo share/locale/zh_CN/LC_MESSAGES/konsolekalendar.mo share/locale/zh_TW/LC_MESSAGES/calendarjanitor.mo share/locale/zh_TW/LC_MESSAGES/konsolekalendar.mo Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 560804) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-import-wizard-20.12.0.tar.xz) = dc9e87635312c641606dd42c24cc790c2d7de0b340474554ce907de8fcb1af7d -SIZE (KDE/release-service/20.12.0/akonadi-import-wizard-20.12.0.tar.xz) = 504784 +TIMESTAMP = 1610047675 +SHA256 (KDE/release-service/20.12.1/akonadi-import-wizard-20.12.1.tar.xz) = ff9fff17f16cbdcc1fd76cc3612dab0d2642068bc7af9d3b839eae2ff67eb0f1 +SIZE (KDE/release-service/20.12.1/akonadi-import-wizard-20.12.1.tar.xz) = 506668 Index: head/deskutils/akonadi-import-wizard/pkg-plist =================================================================== --- head/deskutils/akonadi-import-wizard/pkg-plist (revision 560804) +++ head/deskutils/akonadi-import-wizard/pkg-plist (revision 560805) @@ -1,82 +1,83 @@ bin/akonadiimportwizard share/qlogging-categories5/importwizard.categories share/qlogging-categories5/importwizard.renamecategories include/KF5/KPim/ImportWizard/AbstractAddressBook include/KF5/KPim/ImportWizard/AbstractBase include/KF5/KPim/ImportWizard/AbstractCalendar include/KF5/KPim/ImportWizard/AbstractDisplayInfo include/KF5/KPim/ImportWizard/AbstractImporter include/KF5/KPim/ImportWizard/AbstractSettings include/KF5/KPim/ImportWizard/ImportWizardUtil include/KF5/KPim/importwizard/abstractaddressbook.h include/KF5/KPim/importwizard/abstractbase.h include/KF5/KPim/importwizard/abstractcalendar.h include/KF5/KPim/importwizard/abstractdisplayinfo.h include/KF5/KPim/importwizard/abstractimporter.h include/KF5/KPim/importwizard/abstractsettings.h include/KF5/KPim/importwizard/importwizardutil.h include/KF5/KPim/importwizard/libimportwizard_export.h include/KPim/importwizard_version.h lib/cmake/KPimImportWizard/KPimImportWizardConfig.cmake lib/cmake/KPimImportWizard/KPimImportWizardConfigVersion.cmake lib/cmake/KPimImportWizard/KPimImportWizardTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimImportWizard/KPimImportWizardTargets.cmake lib/libKPimImportWizard.so lib/libKPimImportWizard.so.5 lib/libKPimImportWizard.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/importwizard/balsaimporterplugin.so %%QT_PLUGINDIR%%/importwizard/clawsmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv3importerplugin.so %%QT_PLUGINDIR%%/importwizard/icedoveimporterplugin.so %%QT_PLUGINDIR%%/importwizard/seamonkeyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/sylpheedimporterplugin.so %%QT_PLUGINDIR%%/importwizard/thunderbirdimporterplugin.so %%QT_PLUGINDIR%%/importwizard/trojitaimporterplugin.so share/applications/org.kde.akonadiimportwizard.desktop share/icons/hicolor/128x128/apps/kontact-import-wizard.png share/icons/hicolor/256x256/apps/kontact-import-wizard.png share/icons/hicolor/64x64/apps/kontact-import-wizard.png share/importwizard/pics/step1.png share/kconf_update/importwizard-15.08-kickoff.sh share/kconf_update/importwizard.upd share/locale/ar/LC_MESSAGES/akonadiimportwizard.mo share/locale/bs/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca@valencia/LC_MESSAGES/akonadiimportwizard.mo share/locale/cs/LC_MESSAGES/akonadiimportwizard.mo share/locale/da/LC_MESSAGES/akonadiimportwizard.mo share/locale/de/LC_MESSAGES/akonadiimportwizard.mo share/locale/el/LC_MESSAGES/akonadiimportwizard.mo share/locale/en_GB/LC_MESSAGES/akonadiimportwizard.mo share/locale/es/LC_MESSAGES/akonadiimportwizard.mo share/locale/et/LC_MESSAGES/akonadiimportwizard.mo +share/locale/eu/LC_MESSAGES/akonadiimportwizard.mo share/locale/fi/LC_MESSAGES/akonadiimportwizard.mo share/locale/fr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ga/LC_MESSAGES/akonadiimportwizard.mo share/locale/gl/LC_MESSAGES/akonadiimportwizard.mo share/locale/hu/LC_MESSAGES/akonadiimportwizard.mo share/locale/ia/LC_MESSAGES/akonadiimportwizard.mo share/locale/it/LC_MESSAGES/akonadiimportwizard.mo share/locale/ja/LC_MESSAGES/akonadiimportwizard.mo share/locale/kk/LC_MESSAGES/akonadiimportwizard.mo share/locale/km/LC_MESSAGES/akonadiimportwizard.mo share/locale/ko/LC_MESSAGES/akonadiimportwizard.mo share/locale/lt/LC_MESSAGES/akonadiimportwizard.mo share/locale/mr/LC_MESSAGES/akonadiimportwizard.mo share/locale/nb/LC_MESSAGES/akonadiimportwizard.mo share/locale/nds/LC_MESSAGES/akonadiimportwizard.mo share/locale/nl/LC_MESSAGES/akonadiimportwizard.mo share/locale/nn/LC_MESSAGES/akonadiimportwizard.mo share/locale/pl/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt_BR/LC_MESSAGES/akonadiimportwizard.mo share/locale/ro/LC_MESSAGES/akonadiimportwizard.mo share/locale/ru/LC_MESSAGES/akonadiimportwizard.mo share/locale/sk/LC_MESSAGES/akonadiimportwizard.mo share/locale/sl/LC_MESSAGES/akonadiimportwizard.mo share/locale/sv/LC_MESSAGES/akonadiimportwizard.mo share/locale/tr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ug/LC_MESSAGES/akonadiimportwizard.mo share/locale/uk/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_CN/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_TW/LC_MESSAGES/akonadiimportwizard.mo Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 560804) +++ head/deskutils/akonadiconsole/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadiconsole-20.12.0.tar.xz) = f34c5e7ec4b5c11d5dec7cda40d3a36d00916916ad924c1ae455ce51a3b8bd43 -SIZE (KDE/release-service/20.12.0/akonadiconsole-20.12.0.tar.xz) = 198012 +TIMESTAMP = 1610047674 +SHA256 (KDE/release-service/20.12.1/akonadiconsole-20.12.1.tar.xz) = bfb255408cf3f0f58a342d279e31ba42eba8350d809056afe6537aa0f264c765 +SIZE (KDE/release-service/20.12.1/akonadiconsole-20.12.1.tar.xz) = 198052 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 560804) +++ head/deskutils/akregator/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akregator-20.12.0.tar.xz) = 5d4ddbbbb4d19f8d443f6c8a69372d0635960b41bf8735247f45ff8af3f995c3 -SIZE (KDE/release-service/20.12.0/akregator-20.12.0.tar.xz) = 2203428 +TIMESTAMP = 1610047697 +SHA256 (KDE/release-service/20.12.1/akregator-20.12.1.tar.xz) = b3d4c811979a09c6ed68b221c5e5462eef69aab6e007ca58fc40e58457534577 +SIZE (KDE/release-service/20.12.1/akregator-20.12.1.tar.xz) = 2203476 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 560804) +++ head/deskutils/grantlee-editor/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/grantlee-editor-20.12.0.tar.xz) = 7e48495bdc76ebcb037a8cc44a31d6583e0d6f247d630b7e1f4d46b66e1f7474 -SIZE (KDE/release-service/20.12.0/grantlee-editor-20.12.0.tar.xz) = 107508 +TIMESTAMP = 1610047678 +SHA256 (KDE/release-service/20.12.1/grantlee-editor-20.12.1.tar.xz) = 5026c15686da77e9cd0f44975dea079a53a1d5767be2a2a0ec6bed7a9f990499 +SIZE (KDE/release-service/20.12.1/grantlee-editor-20.12.1.tar.xz) = 107460 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 560804) +++ head/deskutils/grantleetheme/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/grantleetheme-20.12.0.tar.xz) = 0cfa0cb1f169e60c77a5a62551a1e9f7f31a2f4caea13f129420cfa314cd141c -SIZE (KDE/release-service/20.12.0/grantleetheme-20.12.0.tar.xz) = 56548 +TIMESTAMP = 1610047693 +SHA256 (KDE/release-service/20.12.1/grantleetheme-20.12.1.tar.xz) = 9ded145cfa1f5fa11f1bdcc7c31e7e449e3018383962c04328762c9ac0bf07f1 +SIZE (KDE/release-service/20.12.1/grantleetheme-20.12.1.tar.xz) = 56556 Index: head/deskutils/itinerary/distinfo =================================================================== --- head/deskutils/itinerary/distinfo (revision 560804) +++ head/deskutils/itinerary/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/itinerary-20.12.0.tar.xz) = 65cc8b8937d39523cbc1689d41311266f460938533b49433c1467302ac4a201b -SIZE (KDE/release-service/20.12.0/itinerary-20.12.0.tar.xz) = 330672 +TIMESTAMP = 1610047679 +SHA256 (KDE/release-service/20.12.1/itinerary-20.12.1.tar.xz) = 499bd3a8df818e6f976942f899fc9b2d4437eff52eb747ab017b5a25865cb50a +SIZE (KDE/release-service/20.12.1/itinerary-20.12.1.tar.xz) = 332632 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 560804) +++ head/deskutils/kaddressbook/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kaddressbook-20.12.0.tar.xz) = 6ceff2002af65c6edc0cfa98ac4b29c6fc451e48c15c853f6e65c356408dc7db -SIZE (KDE/release-service/20.12.0/kaddressbook-20.12.0.tar.xz) = 3256028 +TIMESTAMP = 1610047688 +SHA256 (KDE/release-service/20.12.1/kaddressbook-20.12.1.tar.xz) = d799f10fe344f9d3ea09e3b1f06958f9adece282bd5cee6fbcbf40019294d548 +SIZE (KDE/release-service/20.12.1/kaddressbook-20.12.1.tar.xz) = 3256952 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 560804) +++ head/deskutils/kalarm/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kalarm-20.12.0.tar.xz) = 081b6d6e039406e064be0f37d75a8dfc7b7126909c181169716a160d63b1e9f6 -SIZE (KDE/release-service/20.12.0/kalarm-20.12.0.tar.xz) = 2076248 +TIMESTAMP = 1610047686 +SHA256 (KDE/release-service/20.12.1/kalarm-20.12.1.tar.xz) = 007bedaaa0938c181c21ac0432a74c8d0c1d7e3c8f584a71bb7b9bd57fee8e4c +SIZE (KDE/release-service/20.12.1/kalarm-20.12.1.tar.xz) = 2077156 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 560804) +++ head/deskutils/kcharselect/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kcharselect-20.12.0.tar.xz) = 3e96bdff6a60b0ca0bb8496c7a2d8d1fec19a3233956ddd6bcb4bb21a2a3d37b -SIZE (KDE/release-service/20.12.0/kcharselect-20.12.0.tar.xz) = 366236 +TIMESTAMP = 1610047721 +SHA256 (KDE/release-service/20.12.1/kcharselect-20.12.1.tar.xz) = abddc0d56b8d5b3e181a15a3f7b74a3711882c5b4732d6e04df3bd0f2eff45eb +SIZE (KDE/release-service/20.12.1/kcharselect-20.12.1.tar.xz) = 366652 Index: head/deskutils/kdeconnect-kde/distinfo =================================================================== --- head/deskutils/kdeconnect-kde/distinfo (revision 560804) +++ head/deskutils/kdeconnect-kde/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdeconnect-kde-20.12.0.tar.xz) = 92339009b2b41337827a6fa22b500a46ca192e6fa4cd493af13f9b9f9ad58d20 -SIZE (KDE/release-service/20.12.0/kdeconnect-kde-20.12.0.tar.xz) = 549532 +TIMESTAMP = 1610047723 +SHA256 (KDE/release-service/20.12.1/kdeconnect-kde-20.12.1.tar.xz) = fc15b7dba854b5ccc0fbaf1f7accb2c60ef89f311925c89e0c76c5e653182160 +SIZE (KDE/release-service/20.12.1/kdeconnect-kde-20.12.1.tar.xz) = 549772 Index: head/deskutils/kdeconnect-kde/pkg-plist =================================================================== --- head/deskutils/kdeconnect-kde/pkg-plist (revision 560804) +++ head/deskutils/kdeconnect-kde/pkg-plist (revision 560805) @@ -1,668 +1,669 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.settings.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/kdeconnect_findthisdevice_config.desktop share/kservices5/kdeconnect_pausemusic_config.desktop share/kservices5/kdeconnect_runcommand_config.desktop share/kservices5/kdeconnect_sendnotifications_config.desktop share/kservices5/kdeconnect_share_config.desktop share/kservices5/plasma-kdeconnect.desktop share/kservicetypes5/kdeconnect_plugin.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo +share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.kcm.appdata.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 560804) +++ head/deskutils/kdepim-addons/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdepim-addons-20.12.0.tar.xz) = c6dded77181d32b3eb5f8940eadd3e39bfa75c8d0981104acd9b3364c62e4e3d -SIZE (KDE/release-service/20.12.0/kdepim-addons-20.12.0.tar.xz) = 2145340 +TIMESTAMP = 1610047726 +SHA256 (KDE/release-service/20.12.1/kdepim-addons-20.12.1.tar.xz) = a016f56e3979509d7ecef5efb11da2b7b1b2e80ac46da19f16b14c3d13d585b5 +SIZE (KDE/release-service/20.12.1/kdepim-addons-20.12.1.tar.xz) = 2145108 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 560804) +++ head/deskutils/kdepim-runtime/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdepim-runtime-20.12.0.tar.xz) = 6dd4cd1328aeb2699a51abf41056b7bb009104803a3f2cf70fc4966b21344b01 -SIZE (KDE/release-service/20.12.0/kdepim-runtime-20.12.0.tar.xz) = 1800520 +TIMESTAMP = 1610047716 +SHA256 (KDE/release-service/20.12.1/kdepim-runtime-20.12.1.tar.xz) = f82aa8448d01e0e5a3af69581a9188411072541159574640fd8c8b0adbeae7da +SIZE (KDE/release-service/20.12.1/kdepim-runtime-20.12.1.tar.xz) = 1801620 Index: head/deskutils/kdepim-runtime/pkg-plist =================================================================== --- head/deskutils/kdepim-runtime/pkg-plist (revision 560804) +++ head/deskutils/kdepim-runtime/pkg-plist (revision 560805) @@ -1,1715 +1,1717 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kalarm_dir_resource bin/akonadi_kalarm_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/akonadi/config/kalarmconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/kcm_ldap.so %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/kf5/kio/pop3.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kalarmdirresource.desktop share/akonadi/agents/kalarmresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_google_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi.protocol share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/kservices5/kcmldap.desktop share/kservices5/pop3.protocol share/kservices5/pop3s.protocol share/kservicetypes5/davgroupwareprovider.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/kio_pop3.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/kio_pop3.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/kio_pop3.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/kio_pop3.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/kio_pop3.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/kio_pop3.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/kio_pop3.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/kio_pop3.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/kio_pop3.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo share/locale/eu/LC_MESSAGES/kio_pop3.mo share/locale/fa/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/kio_pop3.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/ga/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/he/LC_MESSAGES/kio_pop3.mo share/locale/hi/LC_MESSAGES/kio_pop3.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hr/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/kio_pop3.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/is/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/kio_pop3.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/kk/LC_MESSAGES/kio_pop3.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/kio_pop3.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/kio_pop3.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/mr/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/kio_pop3.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/kio_pop3.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/nn/LC_MESSAGES/kio_pop3.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/kio_pop3.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/kio_pop3.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ro/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/kio_pop3.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/kio_pop3.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/kio_pop3.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/kio_pop3.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/kio_pop3.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/ug/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/kio_pop3.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/kio_pop3.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 560804) +++ head/deskutils/keditbookmarks/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/keditbookmarks-20.12.0.tar.xz) = a17cc82f3698470eade7ed2e9437b2bd4c6b0ede211a5829d130d4e6efe21d90 -SIZE (KDE/release-service/20.12.0/keditbookmarks-20.12.0.tar.xz) = 190688 +TIMESTAMP = 1610047724 +SHA256 (KDE/release-service/20.12.1/keditbookmarks-20.12.1.tar.xz) = 373563cb447a7894acc7aaf8aa7cb39d5ac1d85325a43ac2ad0d7f2ee8fd81a8 +SIZE (KDE/release-service/20.12.1/keditbookmarks-20.12.1.tar.xz) = 190640 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 560804) +++ head/deskutils/kfind/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kfind-20.12.0.tar.xz) = 006e6a842b85f4c3387b4333e2eba869d0ae13e0516b069325963630a74b768d -SIZE (KDE/release-service/20.12.0/kfind-20.12.0.tar.xz) = 278708 +TIMESTAMP = 1610047672 +SHA256 (KDE/release-service/20.12.1/kfind-20.12.1.tar.xz) = b74934cba40298969f3cf7fb620fd8437c8e90f367abe559673e08411bc19d66 +SIZE (KDE/release-service/20.12.1/kfind-20.12.1.tar.xz) = 278760 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 560804) +++ head/deskutils/kmail/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmail-20.12.0.tar.xz) = 89ded51ac8d33c62a15ba592b2beca13d05670541cc1515567ad30e4a6d7a5f2 -SIZE (KDE/release-service/20.12.0/kmail-20.12.0.tar.xz) = 4649976 +TIMESTAMP = 1610047680 +SHA256 (KDE/release-service/20.12.1/kmail-20.12.1.tar.xz) = fc35e6d433f47d7764fed5caf58535fc1dda3c8e1b82d2991b0fd724fa291489 +SIZE (KDE/release-service/20.12.1/kmail-20.12.1.tar.xz) = 4671348 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 560804) +++ head/deskutils/kmail-account-wizard/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmail-account-wizard-20.12.0.tar.xz) = b14cbd75209c9e294e781ab6051f3519df1ae8559a78da409c8697a0bdee8aa3 -SIZE (KDE/release-service/20.12.0/kmail-account-wizard-20.12.0.tar.xz) = 159216 +TIMESTAMP = 1610047671 +SHA256 (KDE/release-service/20.12.1/kmail-account-wizard-20.12.1.tar.xz) = 365e917e68b8427c3dbda3f3f7c99d6ab53b632dd78333754ecc7b7aecbe84be +SIZE (KDE/release-service/20.12.1/kmail-account-wizard-20.12.1.tar.xz) = 159380 Index: head/deskutils/kmail-account-wizard/pkg-plist =================================================================== --- head/deskutils/kmail-account-wizard/pkg-plist (revision 560804) +++ head/deskutils/kmail-account-wizard/pkg-plist (revision 560805) @@ -1,98 +1,99 @@ bin/accountwizard bin/ispdb share/qlogging-categories5/accountwizard.categories share/qlogging-categories5/accountwizard.renamecategories %%QT_PLUGINDIR%%/accountwizard_plugin.so share/akonadi/accountwizard/tine20/tine20wizard.desktop share/akonadi/accountwizard/tine20/tine20wizard.es share/akonadi/accountwizard/tine20/tine20wizard.ui share/applications/org.kde.accountwizard.desktop share/knsrcfiles/accountwizard.knsrc share/locale/ar/LC_MESSAGES/accountwizard.mo share/locale/ar/LC_MESSAGES/accountwizard_tine20.mo share/locale/bs/LC_MESSAGES/accountwizard.mo share/locale/bs/LC_MESSAGES/accountwizard_tine20.mo share/locale/ca/LC_MESSAGES/accountwizard.mo share/locale/ca/LC_MESSAGES/accountwizard_tine20.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_tine20.mo share/locale/cs/LC_MESSAGES/accountwizard.mo share/locale/cs/LC_MESSAGES/accountwizard_tine20.mo share/locale/da/LC_MESSAGES/accountwizard.mo share/locale/da/LC_MESSAGES/accountwizard_tine20.mo share/locale/de/LC_MESSAGES/accountwizard.mo share/locale/de/LC_MESSAGES/accountwizard_tine20.mo share/locale/el/LC_MESSAGES/accountwizard.mo share/locale/el/LC_MESSAGES/accountwizard_tine20.mo share/locale/en_GB/LC_MESSAGES/accountwizard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_tine20.mo share/locale/eo/LC_MESSAGES/accountwizard.mo share/locale/es/LC_MESSAGES/accountwizard.mo share/locale/es/LC_MESSAGES/accountwizard_tine20.mo share/locale/et/LC_MESSAGES/accountwizard.mo share/locale/et/LC_MESSAGES/accountwizard_tine20.mo share/locale/fi/LC_MESSAGES/accountwizard.mo share/locale/fi/LC_MESSAGES/accountwizard_tine20.mo share/locale/fr/LC_MESSAGES/accountwizard.mo share/locale/fr/LC_MESSAGES/accountwizard_tine20.mo share/locale/ga/LC_MESSAGES/accountwizard.mo share/locale/ga/LC_MESSAGES/accountwizard_tine20.mo share/locale/gl/LC_MESSAGES/accountwizard.mo share/locale/gl/LC_MESSAGES/accountwizard_tine20.mo share/locale/he/LC_MESSAGES/accountwizard.mo share/locale/hu/LC_MESSAGES/accountwizard.mo share/locale/hu/LC_MESSAGES/accountwizard_tine20.mo share/locale/ia/LC_MESSAGES/accountwizard.mo share/locale/ia/LC_MESSAGES/accountwizard_tine20.mo share/locale/it/LC_MESSAGES/accountwizard.mo share/locale/it/LC_MESSAGES/accountwizard_tine20.mo share/locale/ja/LC_MESSAGES/accountwizard.mo share/locale/ja/LC_MESSAGES/accountwizard_tine20.mo share/locale/kk/LC_MESSAGES/accountwizard.mo share/locale/kk/LC_MESSAGES/accountwizard_tine20.mo share/locale/km/LC_MESSAGES/accountwizard.mo share/locale/km/LC_MESSAGES/accountwizard_tine20.mo share/locale/ko/LC_MESSAGES/accountwizard.mo share/locale/ko/LC_MESSAGES/accountwizard_tine20.mo share/locale/lt/LC_MESSAGES/accountwizard.mo share/locale/lt/LC_MESSAGES/accountwizard_tine20.mo share/locale/lv/LC_MESSAGES/accountwizard.mo share/locale/mr/LC_MESSAGES/accountwizard.mo share/locale/mr/LC_MESSAGES/accountwizard_tine20.mo share/locale/nb/LC_MESSAGES/accountwizard.mo share/locale/nb/LC_MESSAGES/accountwizard_tine20.mo share/locale/nds/LC_MESSAGES/accountwizard.mo share/locale/nds/LC_MESSAGES/accountwizard_tine20.mo share/locale/nl/LC_MESSAGES/accountwizard.mo share/locale/nl/LC_MESSAGES/accountwizard_tine20.mo share/locale/nn/LC_MESSAGES/accountwizard.mo +share/locale/nn/LC_MESSAGES/accountwizard_tine20.mo share/locale/pa/LC_MESSAGES/accountwizard.mo share/locale/pl/LC_MESSAGES/accountwizard.mo share/locale/pl/LC_MESSAGES/accountwizard_tine20.mo share/locale/pt/LC_MESSAGES/accountwizard.mo share/locale/pt/LC_MESSAGES/accountwizard_tine20.mo share/locale/pt_BR/LC_MESSAGES/accountwizard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_tine20.mo share/locale/ro/LC_MESSAGES/accountwizard.mo share/locale/ro/LC_MESSAGES/accountwizard_tine20.mo share/locale/ru/LC_MESSAGES/accountwizard.mo share/locale/ru/LC_MESSAGES/accountwizard_tine20.mo share/locale/sk/LC_MESSAGES/accountwizard.mo share/locale/sk/LC_MESSAGES/accountwizard_tine20.mo share/locale/sl/LC_MESSAGES/accountwizard.mo share/locale/sl/LC_MESSAGES/accountwizard_tine20.mo share/locale/sr/LC_MESSAGES/accountwizard.mo share/locale/sr/LC_MESSAGES/accountwizard_tine20.mo share/locale/sv/LC_MESSAGES/accountwizard.mo share/locale/sv/LC_MESSAGES/accountwizard_tine20.mo share/locale/tr/LC_MESSAGES/accountwizard.mo share/locale/tr/LC_MESSAGES/accountwizard_tine20.mo share/locale/ug/LC_MESSAGES/accountwizard.mo share/locale/ug/LC_MESSAGES/accountwizard_tine20.mo share/locale/uk/LC_MESSAGES/accountwizard.mo share/locale/uk/LC_MESSAGES/accountwizard_tine20.mo share/locale/zh_CN/LC_MESSAGES/accountwizard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_tine20.mo share/locale/zh_TW/LC_MESSAGES/accountwizard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_tine20.mo share/mime/packages/accountwizard-mime.xml Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 560804) +++ head/deskutils/knotes/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/knotes-20.12.0.tar.xz) = 084ec065435b6a74973396d6bb2322321fad5c81875615e3cdc7272b40ed4e2b -SIZE (KDE/release-service/20.12.0/knotes-20.12.0.tar.xz) = 326652 +TIMESTAMP = 1610047690 +SHA256 (KDE/release-service/20.12.1/knotes-20.12.1.tar.xz) = 60625a616d2d6665ba9a6b6d01918cf70bdd8eab3ed9f93a7e420122ae98ee85 +SIZE (KDE/release-service/20.12.1/knotes-20.12.1.tar.xz) = 328420 Index: head/deskutils/knotes/pkg-plist =================================================================== --- head/deskutils/knotes/pkg-plist (revision 560804) +++ head/deskutils/knotes/pkg-plist (revision 560805) @@ -1,174 +1,176 @@ bin/akonadi_notes_agent bin/knotes share/qlogging-categories5/knotes.categories share/qlogging-categories5/knotes.renamecategories lib/libknotesprivate.so.5 lib/libknotesprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnotesharedprivate.so.5 lib/libnotesharedprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_knote.so %%QT_PLUGINDIR%%/kcm_knotessummary.so %%QT_PLUGINDIR%%/kontact5/kontact_knotesplugin.so share/akonadi/agents/notesagent.desktop share/applications/org.kde.knotes.desktop share/config.kcfg/knotesglobalconfig.kcfg share/config.kcfg/notesagentsettings.kcfg share/dbus-1/interfaces/org.kde.KNotes.xml share/dbus-1/interfaces/org.kde.kontact.KNotes.xml share/icons/hicolor/128x128/apps/knotes.png share/icons/hicolor/16x16/actions/knotes_alarm.png share/icons/hicolor/16x16/actions/knotes_close.png share/icons/hicolor/16x16/actions/knotes_date.png share/icons/hicolor/16x16/actions/knotes_delete.png share/icons/hicolor/16x16/apps/knotes.png share/icons/hicolor/22x22/apps/knotes.png share/icons/hicolor/32x32/apps/knotes.png share/icons/hicolor/48x48/apps/knotes.png share/icons/hicolor/64x64/apps/knotes.png share/icons/hicolor/scalable/apps/knotes.svg share/kconf_update/knotes-15.08-kickoff.sh share/kconf_update/knotes.upd share/knsrcfiles/knotes_printing_theme.knsrc %%DATADIR%%/print/themes/background-color/theme.desktop %%DATADIR%%/print/themes/background-color/theme.html %%DATADIR%%/print/themes/big-title/theme.desktop %%DATADIR%%/print/themes/big-title/theme.html %%DATADIR%%/print/themes/default/theme.desktop %%DATADIR%%/print/themes/default/theme.html share/knotifications5/akonadi_notes_agent.notifyrc share/kontact/ksettingsdialog/knotes.setdlg share/kservices5/kcmknotessummary.desktop share/kservices5/knote_config_action.desktop share/kservices5/knote_config_collection.desktop share/kservices5/knote_config_display.desktop share/kservices5/knote_config_editor.desktop share/kservices5/knote_config_misc.desktop share/kservices5/knote_config_network.desktop share/kservices5/knote_config_print.desktop share/kservices5/kontact/knotesplugin.desktop share/kxmlgui5/knotes/knotes_part.rc share/kxmlgui5/knotes/knotesappui.rc share/kxmlgui5/knotes/knotesui.rc share/locale/ar/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ar/LC_MESSAGES/knotes.mo share/locale/ar/LC_MESSAGES/libnoteshared.mo share/locale/bg/LC_MESSAGES/knotes.mo share/locale/bs/LC_MESSAGES/akonadi_notes_agent.mo share/locale/bs/LC_MESSAGES/knotes.mo share/locale/bs/LC_MESSAGES/libnoteshared.mo share/locale/ca/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ca/LC_MESSAGES/knotes.mo share/locale/ca/LC_MESSAGES/libnoteshared.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ca@valencia/LC_MESSAGES/knotes.mo share/locale/ca@valencia/LC_MESSAGES/libnoteshared.mo share/locale/cs/LC_MESSAGES/akonadi_notes_agent.mo share/locale/cs/LC_MESSAGES/knotes.mo share/locale/cs/LC_MESSAGES/libnoteshared.mo share/locale/da/LC_MESSAGES/akonadi_notes_agent.mo share/locale/da/LC_MESSAGES/knotes.mo share/locale/da/LC_MESSAGES/libnoteshared.mo share/locale/de/LC_MESSAGES/akonadi_notes_agent.mo share/locale/de/LC_MESSAGES/knotes.mo share/locale/de/LC_MESSAGES/libnoteshared.mo share/locale/el/LC_MESSAGES/akonadi_notes_agent.mo share/locale/el/LC_MESSAGES/knotes.mo share/locale/el/LC_MESSAGES/libnoteshared.mo share/locale/en_GB/LC_MESSAGES/akonadi_notes_agent.mo share/locale/en_GB/LC_MESSAGES/knotes.mo share/locale/en_GB/LC_MESSAGES/libnoteshared.mo share/locale/eo/LC_MESSAGES/knotes.mo share/locale/es/LC_MESSAGES/akonadi_notes_agent.mo share/locale/es/LC_MESSAGES/knotes.mo share/locale/es/LC_MESSAGES/libnoteshared.mo share/locale/et/LC_MESSAGES/akonadi_notes_agent.mo share/locale/et/LC_MESSAGES/knotes.mo share/locale/et/LC_MESSAGES/libnoteshared.mo +share/locale/eu/LC_MESSAGES/akonadi_notes_agent.mo share/locale/eu/LC_MESSAGES/knotes.mo +share/locale/eu/LC_MESSAGES/libnoteshared.mo share/locale/fa/LC_MESSAGES/knotes.mo share/locale/fi/LC_MESSAGES/akonadi_notes_agent.mo share/locale/fi/LC_MESSAGES/knotes.mo share/locale/fi/LC_MESSAGES/libnoteshared.mo share/locale/fr/LC_MESSAGES/akonadi_notes_agent.mo share/locale/fr/LC_MESSAGES/knotes.mo share/locale/fr/LC_MESSAGES/libnoteshared.mo share/locale/ga/LC_MESSAGES/knotes.mo share/locale/gl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/gl/LC_MESSAGES/knotes.mo share/locale/gl/LC_MESSAGES/libnoteshared.mo share/locale/he/LC_MESSAGES/knotes.mo share/locale/hi/LC_MESSAGES/knotes.mo share/locale/hr/LC_MESSAGES/knotes.mo share/locale/hu/LC_MESSAGES/akonadi_notes_agent.mo share/locale/hu/LC_MESSAGES/knotes.mo share/locale/hu/LC_MESSAGES/libnoteshared.mo share/locale/ia/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ia/LC_MESSAGES/knotes.mo share/locale/ia/LC_MESSAGES/libnoteshared.mo share/locale/is/LC_MESSAGES/knotes.mo share/locale/it/LC_MESSAGES/akonadi_notes_agent.mo share/locale/it/LC_MESSAGES/knotes.mo share/locale/it/LC_MESSAGES/libnoteshared.mo share/locale/ja/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ja/LC_MESSAGES/knotes.mo share/locale/ja/LC_MESSAGES/libnoteshared.mo share/locale/kk/LC_MESSAGES/knotes.mo share/locale/km/LC_MESSAGES/knotes.mo share/locale/ko/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ko/LC_MESSAGES/knotes.mo share/locale/ko/LC_MESSAGES/libnoteshared.mo share/locale/lt/LC_MESSAGES/akonadi_notes_agent.mo share/locale/lt/LC_MESSAGES/knotes.mo share/locale/lt/LC_MESSAGES/libnoteshared.mo share/locale/lv/LC_MESSAGES/knotes.mo share/locale/mr/LC_MESSAGES/knotes.mo share/locale/nb/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nb/LC_MESSAGES/knotes.mo share/locale/nb/LC_MESSAGES/libnoteshared.mo share/locale/nds/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nds/LC_MESSAGES/knotes.mo share/locale/nds/LC_MESSAGES/libnoteshared.mo share/locale/nl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nl/LC_MESSAGES/knotes.mo share/locale/nl/LC_MESSAGES/libnoteshared.mo share/locale/nn/LC_MESSAGES/knotes.mo share/locale/pa/LC_MESSAGES/knotes.mo share/locale/pl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/pl/LC_MESSAGES/knotes.mo share/locale/pl/LC_MESSAGES/libnoteshared.mo share/locale/pt/LC_MESSAGES/akonadi_notes_agent.mo share/locale/pt/LC_MESSAGES/knotes.mo share/locale/pt/LC_MESSAGES/libnoteshared.mo share/locale/pt_BR/LC_MESSAGES/akonadi_notes_agent.mo share/locale/pt_BR/LC_MESSAGES/knotes.mo share/locale/pt_BR/LC_MESSAGES/libnoteshared.mo share/locale/ro/LC_MESSAGES/knotes.mo share/locale/ro/LC_MESSAGES/libnoteshared.mo share/locale/ru/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ru/LC_MESSAGES/knotes.mo share/locale/ru/LC_MESSAGES/libnoteshared.mo share/locale/sk/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sk/LC_MESSAGES/knotes.mo share/locale/sk/LC_MESSAGES/libnoteshared.mo share/locale/sl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sl/LC_MESSAGES/knotes.mo share/locale/sl/LC_MESSAGES/libnoteshared.mo share/locale/sr/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sr/LC_MESSAGES/libnoteshared.mo share/locale/sv/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sv/LC_MESSAGES/knotes.mo share/locale/sv/LC_MESSAGES/libnoteshared.mo share/locale/tr/LC_MESSAGES/akonadi_notes_agent.mo share/locale/tr/LC_MESSAGES/knotes.mo share/locale/tr/LC_MESSAGES/libnoteshared.mo share/locale/ug/LC_MESSAGES/knotes.mo share/locale/uk/LC_MESSAGES/akonadi_notes_agent.mo share/locale/uk/LC_MESSAGES/knotes.mo share/locale/uk/LC_MESSAGES/libnoteshared.mo share/locale/zh_CN/LC_MESSAGES/akonadi_notes_agent.mo share/locale/zh_CN/LC_MESSAGES/knotes.mo share/locale/zh_CN/LC_MESSAGES/libnoteshared.mo share/locale/zh_TW/LC_MESSAGES/akonadi_notes_agent.mo share/locale/zh_TW/LC_MESSAGES/knotes.mo share/locale/zh_TW/LC_MESSAGES/libnoteshared.mo share/metainfo/org.kde.knotes.appdata.xml Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 560804) +++ head/deskutils/kontact/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kontact-20.12.0.tar.xz) = 6ffcb5f0bcea355d8f16555fbf26e7b2ccba7dabe7b8e24be6d8f02020275877 -SIZE (KDE/release-service/20.12.0/kontact-20.12.0.tar.xz) = 791864 +TIMESTAMP = 1610047673 +SHA256 (KDE/release-service/20.12.1/kontact-20.12.1.tar.xz) = 7f526dd127a2f1166b8199f5ea77773aa06a44448abf1f0c7bb3ff93a44c2537 +SIZE (KDE/release-service/20.12.1/kontact-20.12.1.tar.xz) = 791936 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 560804) +++ head/deskutils/korganizer/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/korganizer-20.12.0.tar.xz) = 3e6d4d54dda36b174cb531a6c9a542734a8f564bb6971d40549bf09baecfbb2c -SIZE (KDE/release-service/20.12.0/korganizer-20.12.0.tar.xz) = 2244932 +TIMESTAMP = 1610047683 +SHA256 (KDE/release-service/20.12.1/korganizer-20.12.1.tar.xz) = 95232ce57e389dae2acfe60416a550b854baa6cc09bad3867be7a8c18d6226b2 +SIZE (KDE/release-service/20.12.1/korganizer-20.12.1.tar.xz) = 2246124 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 560804) +++ head/deskutils/kruler/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kruler-20.12.0.tar.xz) = 4976fdef20abc10e05122f6d284f0b3cd187ce7bf56a3ae286ad693a5d6e259c -SIZE (KDE/release-service/20.12.0/kruler-20.12.0.tar.xz) = 272356 +TIMESTAMP = 1610047676 +SHA256 (KDE/release-service/20.12.1/kruler-20.12.1.tar.xz) = 78c02e727b0fa8d26fe35dfa1a1c479b01061ee7c78df748bccdae438c4e3fca +SIZE (KDE/release-service/20.12.1/kruler-20.12.1.tar.xz) = 272380 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 560804) +++ head/deskutils/libkdepim/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkdepim-20.12.0.tar.xz) = 587265834c1c05877e6a48fe1687e1907378cad10b3a13cc691ec5227b467a10 -SIZE (KDE/release-service/20.12.0/libkdepim-20.12.0.tar.xz) = 238604 +TIMESTAMP = 1610047677 +SHA256 (KDE/release-service/20.12.1/libkdepim-20.12.1.tar.xz) = 8e6811dbed7ac89428345346275a19cca2eb378483f6a9e31f74e140b5eee24e +SIZE (KDE/release-service/20.12.1/libkdepim-20.12.1.tar.xz) = 238524 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 560804) +++ head/deskutils/mbox-importer/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/mbox-importer-20.12.0.tar.xz) = 74a71d17f33cc81400bdadccb1e5905f87dac5ea40a8e8da5bc8ea1ee3cd350b -SIZE (KDE/release-service/20.12.0/mbox-importer-20.12.0.tar.xz) = 24724 +TIMESTAMP = 1610047684 +SHA256 (KDE/release-service/20.12.1/mbox-importer-20.12.1.tar.xz) = 36f55edb652d9053268c6331282ac37862d3c3bd155b51d1d223b931128eebcd +SIZE (KDE/release-service/20.12.1/mbox-importer-20.12.1.tar.xz) = 24704 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 560804) +++ head/deskutils/pim-data-exporter/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/pim-data-exporter-20.12.0.tar.xz) = b4af9554e1f425798340f9d6e8fb70e31305faaf4f071e8a7195b993bbeb5f48 -SIZE (KDE/release-service/20.12.0/pim-data-exporter-20.12.0.tar.xz) = 398620 +TIMESTAMP = 1610047685 +SHA256 (KDE/release-service/20.12.1/pim-data-exporter-20.12.1.tar.xz) = 4c06f5c36614fd1ff25f86883c41a89fcd2ce59a90048c7ab1a0ff49e980344d +SIZE (KDE/release-service/20.12.1/pim-data-exporter-20.12.1.tar.xz) = 400336 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 560804) +++ head/deskutils/pim-sieve-editor/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/pim-sieve-editor-20.12.0.tar.xz) = 07f940ffd38adc071d267f32bea9777d34b2ed33ac3177534d52e5e8daba3daf -SIZE (KDE/release-service/20.12.0/pim-sieve-editor-20.12.0.tar.xz) = 454452 +TIMESTAMP = 1610047681 +SHA256 (KDE/release-service/20.12.1/pim-sieve-editor-20.12.1.tar.xz) = 213654423d5863e5c3072b4b3ddc6a2096594873f505632bdfedb23b5d562e52 +SIZE (KDE/release-service/20.12.1/pim-sieve-editor-20.12.1.tar.xz) = 455116 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 560804) +++ head/devel/cervisia/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/cervisia-20.12.0.tar.xz) = a3e8b6aad1792f27d9fba69bc2abf2c84118f9667f0abf693892bccf5325f49c -SIZE (KDE/release-service/20.12.0/cervisia-20.12.0.tar.xz) = 1888208 +TIMESTAMP = 1610047743 +SHA256 (KDE/release-service/20.12.1/cervisia-20.12.1.tar.xz) = ae83b17abb09959741cdb6422a06750c16757ca8224b51eb1baafc00aef6d742 +SIZE (KDE/release-service/20.12.1/cervisia-20.12.1.tar.xz) = 1888232 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 560804) +++ head/devel/dolphin-plugins/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/dolphin-plugins-20.12.0.tar.xz) = 1f1124f89540e19f6d17723fc6d779428736acc2cfcb82c38b547141eca5942f -SIZE (KDE/release-service/20.12.0/dolphin-plugins-20.12.0.tar.xz) = 236436 +TIMESTAMP = 1610047734 +SHA256 (KDE/release-service/20.12.1/dolphin-plugins-20.12.1.tar.xz) = 926dc9f69b1a22553f8808b14634ab3760170bddaa4de44e03a763c3074bc74e +SIZE (KDE/release-service/20.12.1/dolphin-plugins-20.12.1.tar.xz) = 238592 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 560804) +++ head/devel/kapptemplate/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kapptemplate-20.12.0.tar.xz) = 1c88a5c1d4122e3e4635fc3649042cdcde8d08ac007832a72c302559c45d28ad -SIZE (KDE/release-service/20.12.0/kapptemplate-20.12.0.tar.xz) = 335592 +TIMESTAMP = 1610047744 +SHA256 (KDE/release-service/20.12.1/kapptemplate-20.12.1.tar.xz) = c67baa734e33c6dae84e9f268d4cdf612879cc2f67fb7fa6aaf50bbd17bf0ea9 +SIZE (KDE/release-service/20.12.1/kapptemplate-20.12.1.tar.xz) = 335660 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 560804) +++ head/devel/kcachegrind/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kcachegrind-20.12.0.tar.xz) = e9543784589d7de2de8bfcd0e398f708f54543a208115ab492843cd996a06ac4 -SIZE (KDE/release-service/20.12.0/kcachegrind-20.12.0.tar.xz) = 816036 +TIMESTAMP = 1610047735 +SHA256 (KDE/release-service/20.12.1/kcachegrind-20.12.1.tar.xz) = b1477c26106d142111b050f542b6b91cc8756eafb0cb2c77cd44b5e56bf0066c +SIZE (KDE/release-service/20.12.1/kcachegrind-20.12.1.tar.xz) = 816008 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 560804) +++ head/devel/kde-dev-scripts/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111060 -SHA256 (KDE/release-service/20.12.0/kde-dev-scripts-20.12.0.tar.xz) = b38233ff8ab8ddf19c433ae298545a44595d8f710a8b277d4a3b6ebafbdadf88 -SIZE (KDE/release-service/20.12.0/kde-dev-scripts-20.12.0.tar.xz) = 366448 +TIMESTAMP = 1610047726 +SHA256 (KDE/release-service/20.12.1/kde-dev-scripts-20.12.1.tar.xz) = e5ff305c7029f7b771ebf74fa7574cd05cc6f07ba4d96042e0bce272dc5b8a42 +SIZE (KDE/release-service/20.12.1/kde-dev-scripts-20.12.1.tar.xz) = 366436 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 560804) +++ head/devel/kde-dev-utils/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kde-dev-utils-20.12.0.tar.xz) = 5390c9e2f9f416faf2f0c80741db1768bed6a4b1625bcd12bdbdb767165f42c7 -SIZE (KDE/release-service/20.12.0/kde-dev-utils-20.12.0.tar.xz) = 65888 +TIMESTAMP = 1610047732 +SHA256 (KDE/release-service/20.12.1/kde-dev-utils-20.12.1.tar.xz) = 99701d7a243f03f7edda5ec49be836d8c14355604523a26c7b9cf2825d3439ae +SIZE (KDE/release-service/20.12.1/kde-dev-utils-20.12.1.tar.xz) = 65836 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 560804) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdesdk-thumbnailers-20.12.0.tar.xz) = 7b10b5edd45d86ecf5392e14e449fc453798dadc3196fb91ef6078a1e55ef7b8 -SIZE (KDE/release-service/20.12.0/kdesdk-thumbnailers-20.12.0.tar.xz) = 17836 +TIMESTAMP = 1610047740 +SHA256 (KDE/release-service/20.12.1/kdesdk-thumbnailers-20.12.1.tar.xz) = 43681c9cc069f8e47d4bdbbc2ef6b8c3f97b64d3a775d276573c26259a68f8c1 +SIZE (KDE/release-service/20.12.1/kdesdk-thumbnailers-20.12.1.tar.xz) = 17796 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 560804) +++ head/devel/kio-extras/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kio-extras-20.12.0.tar.xz) = 530a9643009647d6b8e8e799b4018ce5d06a687c918f53af6652dbfa7fe3ab29 -SIZE (KDE/release-service/20.12.0/kio-extras-20.12.0.tar.xz) = 633272 +TIMESTAMP = 1610047731 +SHA256 (KDE/release-service/20.12.1/kio-extras-20.12.1.tar.xz) = eff93820cf427adffa6019ae566a7eeb788b5e6f4a15395c764170e2bf3ca0fa +SIZE (KDE/release-service/20.12.1/kio-extras-20.12.1.tar.xz) = 633356 Index: head/devel/kio-extras/pkg-plist =================================================================== --- head/devel/kio-extras/pkg-plist (revision 560804) +++ head/devel/kio-extras/pkg-plist (revision 560805) @@ -1,818 +1,819 @@ share/qlogging-categories5/kio-extras.categories include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf5/smbnotifier lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION%% %%TAGLIB%%%%QT_PLUGINDIR%%/audiothumbnail.so %%QT_PLUGINDIR%%/comicbookthumbnail.so %%QT_PLUGINDIR%%/cursorthumbnail.so %%QT_PLUGINDIR%%/djvuthumbnail.so %%QT_PLUGINDIR%%/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/exrthumbnail.so %%QT_PLUGINDIR%%/imagethumbnail.so %%QT_PLUGINDIR%%/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/networkwatcher.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kio/about.so %%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/network.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%QT_PLUGINDIR%%/kf5/kio/settings.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%QT_PLUGINDIR%%/kfileaudiopreview.so %%QT_PLUGINDIR%%/kritathumbnail.so %%QT_PLUGINDIR%%/opendocumentthumbnail.so %%QT_PLUGINDIR%%/svgthumbnail.so %%QT_PLUGINDIR%%/textthumbnail.so %%QT_PLUGINDIR%%/windowsexethumbnail.so %%QT_PLUGINDIR%%/windowsimagethumbnail.so share/config.kcfg/jpegcreatorsettings5.kcfg share/dbus-1/interfaces/kf5_org.kde.network.kioslavenotifier.xml %%MTP%%share/dbus-1/services/org.kde.kmtp.daemon.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf share/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/about.protocol share/kservices5/activities.protocol %%TAGLIB%%share/kservices5/audiothumbnail.desktop share/kservices5/bookmarks.protocol share/kservices5/bzip.protocol share/kservices5/bzip2.protocol share/kservices5/cursorthumbnail.desktop share/kservices5/comicbookthumbnail.desktop share/kservices5/directorythumbnail.desktop share/kservices5/djvuthumbnail.desktop share/kservices5/ebookthumbnail.desktop %%EXR%%share/kservices5/exrthumbnail.desktop share/kservices5/filenamesearch.protocol share/kservices5/fish.protocol share/kservices5/gzip.protocol share/kservices5/imagethumbnail.desktop share/kservices5/info.protocol share/kservices5/jpegthumbnail.desktop share/kservices5/kraorathumbnail.desktop share/kservices5/lzma.protocol share/kservices5/man.protocol %%MTP%%share/kservices5/mtp.protocol share/kservices5/network.protocol share/kservices5/opendocumentthumbnail.desktop share/kservices5/recentdocuments.protocol share/kservices5/settings.protocol %%SSH%%share/kservices5/sftp.protocol share/kservices5/svgthumbnail.desktop share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.protocol share/kservicetypes5/thumbcreator.desktop share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/ast/LC_MESSAGES/kio5_fish.mo share/locale/ast/LC_MESSAGES/kio5_mtp.mo share/locale/ast/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_network.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_network.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_network.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_network.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_network.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_network.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_network.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_network.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_network.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_mtp.mo share/locale/eu/LC_MESSAGES/kio5_network.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_network.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_network.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_network.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_network.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_network.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_network.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kk/LC_MESSAGES/kio5_activities.mo share/locale/kk/LC_MESSAGES/kio5_archive.mo share/locale/kk/LC_MESSAGES/kio5_bookmarks.mo share/locale/kk/LC_MESSAGES/kio5_fish.mo share/locale/kk/LC_MESSAGES/kio5_info.mo share/locale/kk/LC_MESSAGES/kio5_man.mo share/locale/kk/LC_MESSAGES/kio5_nfs.mo share/locale/kk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/kk/LC_MESSAGES/kio5_sftp.mo share/locale/kk/LC_MESSAGES/kio5_smb.mo share/locale/kk/LC_MESSAGES/kio5_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview5.mo share/locale/km/LC_MESSAGES/kio5_activities.mo share/locale/km/LC_MESSAGES/kio5_archive.mo share/locale/km/LC_MESSAGES/kio5_bookmarks.mo share/locale/km/LC_MESSAGES/kio5_fish.mo share/locale/km/LC_MESSAGES/kio5_info.mo share/locale/km/LC_MESSAGES/kio5_man.mo share/locale/km/LC_MESSAGES/kio5_nfs.mo share/locale/km/LC_MESSAGES/kio5_recentdocuments.mo share/locale/km/LC_MESSAGES/kio5_sftp.mo share/locale/km/LC_MESSAGES/kio5_smb.mo share/locale/km/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_network.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_network.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ml/LC_MESSAGES/kio5_archive.mo share/locale/ml/LC_MESSAGES/kio5_bookmarks.mo share/locale/ml/LC_MESSAGES/kio5_fish.mo share/locale/ml/LC_MESSAGES/kio5_info.mo share/locale/ml/LC_MESSAGES/kio5_man.mo share/locale/ml/LC_MESSAGES/kio5_nfs.mo share/locale/ml/LC_MESSAGES/kio5_sftp.mo share/locale/ml/LC_MESSAGES/kio5_smb.mo share/locale/ml/LC_MESSAGES/kio5_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mr/LC_MESSAGES/kio5_activities.mo share/locale/mr/LC_MESSAGES/kio5_archive.mo share/locale/mr/LC_MESSAGES/kio5_bookmarks.mo share/locale/mr/LC_MESSAGES/kio5_fish.mo share/locale/mr/LC_MESSAGES/kio5_info.mo share/locale/mr/LC_MESSAGES/kio5_man.mo share/locale/mr/LC_MESSAGES/kio5_nfs.mo share/locale/mr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/mr/LC_MESSAGES/kio5_sftp.mo share/locale/mr/LC_MESSAGES/kio5_smb.mo share/locale/mr/LC_MESSAGES/kio5_thumbnail.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nb/LC_MESSAGES/kio5_activities.mo share/locale/nb/LC_MESSAGES/kio5_archive.mo share/locale/nb/LC_MESSAGES/kio5_bookmarks.mo share/locale/nb/LC_MESSAGES/kio5_fish.mo share/locale/nb/LC_MESSAGES/kio5_info.mo share/locale/nb/LC_MESSAGES/kio5_man.mo share/locale/nb/LC_MESSAGES/kio5_nfs.mo share/locale/nb/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nb/LC_MESSAGES/kio5_sftp.mo share/locale/nb/LC_MESSAGES/kio5_smb.mo share/locale/nb/LC_MESSAGES/kio5_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nds/LC_MESSAGES/kio5_activities.mo share/locale/nds/LC_MESSAGES/kio5_archive.mo share/locale/nds/LC_MESSAGES/kio5_bookmarks.mo share/locale/nds/LC_MESSAGES/kio5_fish.mo share/locale/nds/LC_MESSAGES/kio5_info.mo share/locale/nds/LC_MESSAGES/kio5_man.mo share/locale/nds/LC_MESSAGES/kio5_nfs.mo share/locale/nds/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nds/LC_MESSAGES/kio5_sftp.mo share/locale/nds/LC_MESSAGES/kio5_smb.mo share/locale/nds/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_network.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_network.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo +share/locale/pl/LC_MESSAGES/kio5_network.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_network.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_network.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_network.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_network.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_network.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_network.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_network.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_network.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_network.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo share/mime/packages/kf5_network.xml %%MTP%%share/remoteview/mtp-network.desktop share/remoteview/network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop Index: head/devel/kirigami-gallery/distinfo =================================================================== --- head/devel/kirigami-gallery/distinfo (revision 560804) +++ head/devel/kirigami-gallery/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kirigami-gallery-20.12.0.tar.xz) = df6b363765e6671e0abc3f19c0abe3b2ef1f0e3a563964ab9acc3c7fa9629b32 -SIZE (KDE/release-service/20.12.0/kirigami-gallery-20.12.0.tar.xz) = 327856 +TIMESTAMP = 1610047727 +SHA256 (KDE/release-service/20.12.1/kirigami-gallery-20.12.1.tar.xz) = 7041562048c26dfdf95e06e8608bff6ba9bd5b76b61812d067f0d24d2155c301 +SIZE (KDE/release-service/20.12.1/kirigami-gallery-20.12.1.tar.xz) = 328208 Index: head/devel/kpublictransport/distinfo =================================================================== --- head/devel/kpublictransport/distinfo (revision 560804) +++ head/devel/kpublictransport/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kpublictransport-20.12.0.tar.xz) = 9defb083b87b06ee721d10f9d201e6f5ee76547620ceab1bb76b1f2c17308c67 -SIZE (KDE/release-service/20.12.0/kpublictransport-20.12.0.tar.xz) = 344824 +TIMESTAMP = 1610047742 +SHA256 (KDE/release-service/20.12.1/kpublictransport-20.12.1.tar.xz) = 1892f4143a06d39e3ffd0e8f0eec6030400f6b032175b69f1d35e7b4f0f45869 +SIZE (KDE/release-service/20.12.1/kpublictransport-20.12.1.tar.xz) = 345432 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 560804) +++ head/devel/lokalize/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/lokalize-20.12.0.tar.xz) = c3229f3fa876e6b096b29d9b578ecf9bfd93d5ff46ab23df4edfdf821f2c2fde -SIZE (KDE/release-service/20.12.0/lokalize-20.12.0.tar.xz) = 1994172 +TIMESTAMP = 1610047738 +SHA256 (KDE/release-service/20.12.1/lokalize-20.12.1.tar.xz) = 9dcaa76001b383ee875c6229ccec607f66bb170ff43670e4434e660f749abf57 +SIZE (KDE/release-service/20.12.1/lokalize-20.12.1.tar.xz) = 1994124 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 560804) +++ head/devel/poxml/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/poxml-20.12.0.tar.xz) = 799af7bf24e336023f5f89e22593931a1f5d95fbcec3f65d39ab7de75d3e2e1a -SIZE (KDE/release-service/20.12.0/poxml-20.12.0.tar.xz) = 43300 +TIMESTAMP = 1610047741 +SHA256 (KDE/release-service/20.12.1/poxml-20.12.1.tar.xz) = 93562e6b86dd0e75af4b7943227824a461b82bc3246ba19d1a9b49d0e9dab2ea +SIZE (KDE/release-service/20.12.1/poxml-20.12.1.tar.xz) = 43280 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 560804) +++ head/devel/umbrello/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/umbrello-20.12.0.tar.xz) = 216bfa1bca11c28d41c3d2f8ba818b03090d138b00def56221d1901bff63b4b7 -SIZE (KDE/release-service/20.12.0/umbrello-20.12.0.tar.xz) = 5555368 +TIMESTAMP = 1610047729 +SHA256 (KDE/release-service/20.12.1/umbrello-20.12.1.tar.xz) = 74a787947b670024c8a39fc8fb764fba1e79dfcc2664390b903dd85fb8efdd1d +SIZE (KDE/release-service/20.12.1/umbrello-20.12.1.tar.xz) = 5555216 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 560804) +++ head/editors/kate/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kate-20.12.0.tar.xz) = 69017d7369bbcac7a3e350fc0e02cbcfbf5ce09e89149e765a1cd647f3cb3c0f -SIZE (KDE/release-service/20.12.0/kate-20.12.0.tar.xz) = 5860660 +TIMESTAMP = 1610047746 +SHA256 (KDE/release-service/20.12.1/kate-20.12.1.tar.xz) = 739bbb0378b73245465b59ae961e325d3224e251ae8b97d30c2daceec622a28e +SIZE (KDE/release-service/20.12.1/kate-20.12.1.tar.xz) = 5861052 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 560804) +++ head/games/blinken/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/blinken-20.12.0.tar.xz) = 62fbe9d032bdda4dce5f5cb73b59dbef5baff324cbd45b4cb35e3e0e19695b1e -SIZE (KDE/release-service/20.12.0/blinken-20.12.0.tar.xz) = 2828648 +TIMESTAMP = 1610047784 +SHA256 (KDE/release-service/20.12.1/blinken-20.12.1.tar.xz) = 7a76ddceb32fbb053f751d463c54e2b484ee0cc5fbece8cb384f854903acab15 +SIZE (KDE/release-service/20.12.1/blinken-20.12.1.tar.xz) = 2537956 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 560804) +++ head/games/bomber/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/bomber-20.12.0.tar.xz) = 4abc6b8a9b99fcaee01e5b519307145950b1ac2b12c48bdf1afdc9904ae54cba -SIZE (KDE/release-service/20.12.0/bomber-20.12.0.tar.xz) = 824976 +TIMESTAMP = 1610047773 +SHA256 (KDE/release-service/20.12.1/bomber-20.12.1.tar.xz) = 5e088e4b173b7db168e2a793789c1f171df5737d4a23975f2d8b4e0ed1323e1e +SIZE (KDE/release-service/20.12.1/bomber-20.12.1.tar.xz) = 825196 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 560804) +++ head/games/bovo/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/bovo-20.12.0.tar.xz) = 1ff3609c1d2c1a7afd9d87b27bb5b78f83df7fc221f8ac86aa1d546306530ba3 -SIZE (KDE/release-service/20.12.0/bovo-20.12.0.tar.xz) = 205820 +TIMESTAMP = 1610047764 +SHA256 (KDE/release-service/20.12.1/bovo-20.12.1.tar.xz) = bb2f5c344526a2a35806568c563f718510be016b1f44277753127a957b403cf3 +SIZE (KDE/release-service/20.12.1/bovo-20.12.1.tar.xz) = 205844 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 560804) +++ head/games/granatier/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/granatier-20.12.0.tar.xz) = e617de534aa59766c910f19232b8d44721eaab145c26d11cb5772ca6fc3fd0bb -SIZE (KDE/release-service/20.12.0/granatier-20.12.0.tar.xz) = 1951796 +TIMESTAMP = 1610047791 +SHA256 (KDE/release-service/20.12.1/granatier-20.12.1.tar.xz) = 837fdbdcc274fd7f86a652e8c6127804a9cd98e1b52577580b6edbcfc1931856 +SIZE (KDE/release-service/20.12.1/granatier-20.12.1.tar.xz) = 1951780 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 560804) +++ head/games/kanagram/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kanagram-20.12.0.tar.xz) = 0f3fa7c52537f9c31744816fb1ec44967b9fb35b270a20ebec88e51bed9e3504 -SIZE (KDE/release-service/20.12.0/kanagram-20.12.0.tar.xz) = 8030048 +TIMESTAMP = 1610047801 +SHA256 (KDE/release-service/20.12.1/kanagram-20.12.1.tar.xz) = d8382c11d16b1883d0975c2c64929400828ada86514f676cb8e1cf51f3f2d42d +SIZE (KDE/release-service/20.12.1/kanagram-20.12.1.tar.xz) = 8030436 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 560804) +++ head/games/kapman/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kapman-20.12.0.tar.xz) = 7086781ac11be14fd5f3e96aa0bb3f0c6681954e5999e6f8ff6f6412a9d9a393 -SIZE (KDE/release-service/20.12.0/kapman-20.12.0.tar.xz) = 2531532 +TIMESTAMP = 1610047757 +SHA256 (KDE/release-service/20.12.1/kapman-20.12.1.tar.xz) = c9919534b08b58e593b48c95ae880193c87693b665ed04f276a8d002094648c3 +SIZE (KDE/release-service/20.12.1/kapman-20.12.1.tar.xz) = 2531592 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 560804) +++ head/games/katomic/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/katomic-20.12.0.tar.xz) = 00bca558a18de42ff896376c1c2665dde19e7e041d18e6ed13ac16c3754189b6 -SIZE (KDE/release-service/20.12.0/katomic-20.12.0.tar.xz) = 1429332 +TIMESTAMP = 1610047766 +SHA256 (KDE/release-service/20.12.1/katomic-20.12.1.tar.xz) = 2d1664a62584a24535f444548718fbfcf6ef8d5cc1b00b6979a986d61a9f4597 +SIZE (KDE/release-service/20.12.1/katomic-20.12.1.tar.xz) = 1429328 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 560804) +++ head/games/kblackbox/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kblackbox-20.12.0.tar.xz) = 10ac9688b5857f7d672c33357b203d4854cb1fe2175cc7c713873eb008e14551 -SIZE (KDE/release-service/20.12.0/kblackbox-20.12.0.tar.xz) = 450432 +TIMESTAMP = 1610047755 +SHA256 (KDE/release-service/20.12.1/kblackbox-20.12.1.tar.xz) = 877eaf416920294c1b27ad10fd6ebf39295b34d5d19ff1f852f7771224713e00 +SIZE (KDE/release-service/20.12.1/kblackbox-20.12.1.tar.xz) = 450348 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 560804) +++ head/games/kblocks/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kblocks-20.12.0.tar.xz) = 62c858bfd3445d712a58b681884ceebbd368b08daeb0cd4812b7aaf56baace27 -SIZE (KDE/release-service/20.12.0/kblocks-20.12.0.tar.xz) = 1908236 +TIMESTAMP = 1610047762 +SHA256 (KDE/release-service/20.12.1/kblocks-20.12.1.tar.xz) = 9a601c46ffcf2b90f6fb45fcbb8accd6b6b006a3263c9b52468099261eee2d09 +SIZE (KDE/release-service/20.12.1/kblocks-20.12.1.tar.xz) = 1908388 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 560804) +++ head/games/kbounce/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kbounce-20.12.0.tar.xz) = 666d2374fcf99c3a4964d6b604a4ea04a3537b50ba0ddd473176708ac307be7a -SIZE (KDE/release-service/20.12.0/kbounce-20.12.0.tar.xz) = 3443672 +TIMESTAMP = 1610047750 +SHA256 (KDE/release-service/20.12.1/kbounce-20.12.1.tar.xz) = f58a92c9ae8aab20ac9493bc2d44e277d50a3ced40636dccdc9703b8603faced +SIZE (KDE/release-service/20.12.1/kbounce-20.12.1.tar.xz) = 3443480 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 560804) +++ head/games/kbreakout/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kbreakout-20.12.0.tar.xz) = 440e55b7656532ab46bbfb538d5e8e89f25cbfbdae70c38ac178780b3a13124f -SIZE (KDE/release-service/20.12.0/kbreakout-20.12.0.tar.xz) = 2283932 +TIMESTAMP = 1610047790 +SHA256 (KDE/release-service/20.12.1/kbreakout-20.12.1.tar.xz) = ed61f3b6bfc9dd8e859695605f66fa2c0eef483a5a73d1fbf6f529e7a8187d85 +SIZE (KDE/release-service/20.12.1/kbreakout-20.12.1.tar.xz) = 2284132 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 560804) +++ head/games/kdiamond/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdiamond-20.12.0.tar.xz) = f1531c598595c2765d7ba6faccd82cba6d1de2e651033851515a094146cfddc7 -SIZE (KDE/release-service/20.12.0/kdiamond-20.12.0.tar.xz) = 4698252 +TIMESTAMP = 1610047751 +SHA256 (KDE/release-service/20.12.1/kdiamond-20.12.1.tar.xz) = 04266fa6724d25c5ff3a4ca47a8f2633f9b8e377507f523dddc3ea10151b5845 +SIZE (KDE/release-service/20.12.1/kdiamond-20.12.1.tar.xz) = 4698144 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 560804) +++ head/games/kfourinline/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kfourinline-20.12.0.tar.xz) = aba4d1c17b732217ea5e060c898afd26caa16b0d87fab575c288b932361d9d5e -SIZE (KDE/release-service/20.12.0/kfourinline-20.12.0.tar.xz) = 643948 +TIMESTAMP = 1610047776 +SHA256 (KDE/release-service/20.12.1/kfourinline-20.12.1.tar.xz) = 65152720c22008ebd4863b8ca32fc86f45e1333643e28f7f4fc585c8aa4666bb +SIZE (KDE/release-service/20.12.1/kfourinline-20.12.1.tar.xz) = 643848 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 560804) +++ head/games/kgoldrunner/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kgoldrunner-20.12.0.tar.xz) = d1bdce536ba4eb6aa4e76ddf59fa5f1b7e787b69fc9d206d145eaa94472b2a9f -SIZE (KDE/release-service/20.12.0/kgoldrunner-20.12.0.tar.xz) = 4444816 +TIMESTAMP = 1610047779 +SHA256 (KDE/release-service/20.12.1/kgoldrunner-20.12.1.tar.xz) = 70cbe7df27e4d9745a72790bb8732c56c21f78c2a76d4f21aab02ee03a652659 +SIZE (KDE/release-service/20.12.1/kgoldrunner-20.12.1.tar.xz) = 4444688 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 560804) +++ head/games/khangman/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/khangman-20.12.0.tar.xz) = 43424a87b624c4dca603095c7b35ad463e4e35f9946157c660b8d6939a91ef8e -SIZE (KDE/release-service/20.12.0/khangman-20.12.0.tar.xz) = 7405192 +TIMESTAMP = 1610047805 +SHA256 (KDE/release-service/20.12.1/khangman-20.12.1.tar.xz) = c7173abedddc125b2aa86534d96a6b8f4ff9579c14df2186b81e270397dc4a52 +SIZE (KDE/release-service/20.12.1/khangman-20.12.1.tar.xz) = 7404992 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 560804) +++ head/games/kigo/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kigo-20.12.0.tar.xz) = e9bbc622ad41e542890008d4a75ce1fae8d249a310dd23dabd56bbfabd280721 -SIZE (KDE/release-service/20.12.0/kigo-20.12.0.tar.xz) = 5234288 +TIMESTAMP = 1610047763 +SHA256 (KDE/release-service/20.12.1/kigo-20.12.1.tar.xz) = 0ae3567cb1e11ce20d8617ab1d91ba23e103bca599925e98d16ff03a04616c53 +SIZE (KDE/release-service/20.12.1/kigo-20.12.1.tar.xz) = 5234236 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 560804) +++ head/games/killbots/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/killbots-20.12.0.tar.xz) = 1e21b561db12110b762edb4196feb960307fb1bc5854e34f54965b41387f2689 -SIZE (KDE/release-service/20.12.0/killbots-20.12.0.tar.xz) = 1186704 +TIMESTAMP = 1610047794 +SHA256 (KDE/release-service/20.12.1/killbots-20.12.1.tar.xz) = a3dfc91fd8c50454508cf679e8cfbb91568370bdc3dde290ea6caa7c5a8fb431 +SIZE (KDE/release-service/20.12.1/killbots-20.12.1.tar.xz) = 1186524 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 560804) +++ head/games/kiriki/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kiriki-20.12.0.tar.xz) = 9d4cffaa7fd5f8f3802b11ef1eb48fbe1dd26e55c0d4dd78f644e6401d623456 -SIZE (KDE/release-service/20.12.0/kiriki-20.12.0.tar.xz) = 378756 +TIMESTAMP = 1610047749 +SHA256 (KDE/release-service/20.12.1/kiriki-20.12.1.tar.xz) = 1879449317aad4f2835ce3938f6fd4544d02c34b1d69028ee7ec511f9caf1a1f +SIZE (KDE/release-service/20.12.1/kiriki-20.12.1.tar.xz) = 378664 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 560804) +++ head/games/kjumpingcube/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kjumpingcube-20.12.0.tar.xz) = f8aa68d71256f8aabc49fcc0c142502fd7ed352ce6ba516ff9254049681c67d6 -SIZE (KDE/release-service/20.12.0/kjumpingcube-20.12.0.tar.xz) = 290832 +TIMESTAMP = 1610047759 +SHA256 (KDE/release-service/20.12.1/kjumpingcube-20.12.1.tar.xz) = c9c85258d1d079d76ba9e8c5bb08fa61e7d7ef94260694de6fcb81210f5e2952 +SIZE (KDE/release-service/20.12.1/kjumpingcube-20.12.1.tar.xz) = 290820 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 560804) +++ head/games/klickety/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/klickety-20.12.0.tar.xz) = 310baa29e713a53478c8d19c9cab97303f17320e7c01c177e5109563f23ac287 -SIZE (KDE/release-service/20.12.0/klickety-20.12.0.tar.xz) = 1394836 +TIMESTAMP = 1610047786 +SHA256 (KDE/release-service/20.12.1/klickety-20.12.1.tar.xz) = c662f142db924105e173212515b5d5e9cfb0d671931a5c9882cd6a012e40b49e +SIZE (KDE/release-service/20.12.1/klickety-20.12.1.tar.xz) = 1394916 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 560804) +++ head/games/klines/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/klines-20.12.0.tar.xz) = 306ed70f9cb789455223bb9d9de74020df2f2622af917d6c8f84cecc15b71479 -SIZE (KDE/release-service/20.12.0/klines-20.12.0.tar.xz) = 1790552 +TIMESTAMP = 1610047774 +SHA256 (KDE/release-service/20.12.1/klines-20.12.1.tar.xz) = 6ca8f4cd5712876a8679d6816a7292a049f757a4a35c0086b348830e920d47ad +SIZE (KDE/release-service/20.12.1/klines-20.12.1.tar.xz) = 1790048 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 560804) +++ head/games/kmahjongg/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmahjongg-20.12.0.tar.xz) = 8d73117b087476967775c6d8f8fd39901e06bc199c80cbceed6afd2f962492b9 -SIZE (KDE/release-service/20.12.0/kmahjongg-20.12.0.tar.xz) = 3435228 +TIMESTAMP = 1610047758 +SHA256 (KDE/release-service/20.12.1/kmahjongg-20.12.1.tar.xz) = 7f44cd622422f004e7212e82d81cae4c8d9d48c7a4cc0c6e3ecfb91bd0cd5fc3 +SIZE (KDE/release-service/20.12.1/kmahjongg-20.12.1.tar.xz) = 3435248 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 560804) +++ head/games/kmines/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmines-20.12.0.tar.xz) = e59c16919880ce081cfab2f0a655e41a61db85f5ee18b827c7d70a2c07e41243 -SIZE (KDE/release-service/20.12.0/kmines-20.12.0.tar.xz) = 959460 +TIMESTAMP = 1610047803 +SHA256 (KDE/release-service/20.12.1/kmines-20.12.1.tar.xz) = 2cc2f0485ad585202b37915102817e689dd3628dae3c2c00abb41a3680fd5fa2 +SIZE (KDE/release-service/20.12.1/kmines-20.12.1.tar.xz) = 959452 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 560804) +++ head/games/knavalbattle/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/knavalbattle-20.12.0.tar.xz) = 9892c53e387d61a5caa536e0fee4f35d017deefbb57a40c6062b18bb1571380f -SIZE (KDE/release-service/20.12.0/knavalbattle-20.12.0.tar.xz) = 1287832 +TIMESTAMP = 1610047807 +SHA256 (KDE/release-service/20.12.1/knavalbattle-20.12.1.tar.xz) = b60319d37842db75863df7657874b26f0768ba0830d69a270376dc8f98c5f34c +SIZE (KDE/release-service/20.12.1/knavalbattle-20.12.1.tar.xz) = 1290256 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 560804) +++ head/games/knetwalk/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/knetwalk-20.12.0.tar.xz) = 5ff242b71a0f261018ce2ae5b9d0aa37635ced7352ff084ef1edc5bb0d901318 -SIZE (KDE/release-service/20.12.0/knetwalk-20.12.0.tar.xz) = 1267608 +TIMESTAMP = 1610047809 +SHA256 (KDE/release-service/20.12.1/knetwalk-20.12.1.tar.xz) = 8847d97120bb1a4fb5ec7e023dcbf343e4664ccd533f26dbbbd12658a2f3a85f +SIZE (KDE/release-service/20.12.1/knetwalk-20.12.1.tar.xz) = 1267424 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 560804) +++ head/games/knights/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/knights-20.12.0.tar.xz) = 0b3787ca018f221eb6182953ea4f2c2c573e4231e4dfae2582405574bdde576a -SIZE (KDE/release-service/20.12.0/knights-20.12.0.tar.xz) = 3535320 +TIMESTAMP = 1610047771 +SHA256 (KDE/release-service/20.12.1/knights-20.12.1.tar.xz) = 4b2e0204584c1594ad5cba4ea6ea6003373300909854b44ec7232fa8e9e21e25 +SIZE (KDE/release-service/20.12.1/knights-20.12.1.tar.xz) = 3535236 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 560804) +++ head/games/kolf/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kolf-20.12.0.tar.xz) = 20c8de0ca5f08385a5a9a94fe8df021ebffe3683872145a226edb592ff35f7d2 -SIZE (KDE/release-service/20.12.0/kolf-20.12.0.tar.xz) = 1029892 +TIMESTAMP = 1610047754 +SHA256 (KDE/release-service/20.12.1/kolf-20.12.1.tar.xz) = bbe1a48cf5c042213620339d1873ac93dc4a03c88c34d6ae903f66431b116489 +SIZE (KDE/release-service/20.12.1/kolf-20.12.1.tar.xz) = 1028844 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 560804) +++ head/games/kollision/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kollision-20.12.0.tar.xz) = cb3c61ab261b6583d7f82d6dde3db55a324142a2c05f0bd0d392df1f9d5a1ea0 -SIZE (KDE/release-service/20.12.0/kollision-20.12.0.tar.xz) = 290668 +TIMESTAMP = 1610047793 +SHA256 (KDE/release-service/20.12.1/kollision-20.12.1.tar.xz) = b6e9e6e060bf0466401dd3d615d1b1f9129153b39064404869c1d0561a26bbc3 +SIZE (KDE/release-service/20.12.1/kollision-20.12.1.tar.xz) = 290692 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 560804) +++ head/games/konquest/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/konquest-20.12.0.tar.xz) = 9096973444fb0ca93380374ba515011ec19eb7d5fe5f9461011d93bd0d90dc52 -SIZE (KDE/release-service/20.12.0/konquest-20.12.0.tar.xz) = 666232 +TIMESTAMP = 1610047780 +SHA256 (KDE/release-service/20.12.1/konquest-20.12.1.tar.xz) = a7e45d5ccf667bd1d0c8d8a472e1a7245beb0ad86cf20fa24139a47fe4ae08e8 +SIZE (KDE/release-service/20.12.1/konquest-20.12.1.tar.xz) = 666148 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 560804) +++ head/games/kpat/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kpat-20.12.0.tar.xz) = c00f9afeb7b2d4e37e626a9379df08f30077d0c1965a674795b099dd11588d8f -SIZE (KDE/release-service/20.12.0/kpat-20.12.0.tar.xz) = 3584840 +TIMESTAMP = 1610047761 +SHA256 (KDE/release-service/20.12.1/kpat-20.12.1.tar.xz) = a9186b51156307060186b9546947f77f9cfe72c287cd863a01b17309f189a3cd +SIZE (KDE/release-service/20.12.1/kpat-20.12.1.tar.xz) = 3584856 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 560804) +++ head/games/kreversi/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kreversi-20.12.0.tar.xz) = 9c6ab533fca996ef12b5c49578113daef5b416059a9ada238837f1c778e86afe -SIZE (KDE/release-service/20.12.0/kreversi-20.12.0.tar.xz) = 953576 +TIMESTAMP = 1610047788 +SHA256 (KDE/release-service/20.12.1/kreversi-20.12.1.tar.xz) = 4a906fbabab72c53e92822fdf6352ca4f05699b8597f2aa07666768f7fa789fb +SIZE (KDE/release-service/20.12.1/kreversi-20.12.1.tar.xz) = 953684 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 560804) +++ head/games/kshisen/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kshisen-20.12.0.tar.xz) = cb3dbf3c8dae6aa4ea1b591cc8e5964ff53e3e5e8d5b8aaedeb1c5191cc83cc3 -SIZE (KDE/release-service/20.12.0/kshisen-20.12.0.tar.xz) = 827336 +TIMESTAMP = 1610047765 +SHA256 (KDE/release-service/20.12.1/kshisen-20.12.1.tar.xz) = bae98714504479079b379f94650ac79ed2b2de158f041088170f20608cbc96ab +SIZE (KDE/release-service/20.12.1/kshisen-20.12.1.tar.xz) = 827284 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 560804) +++ head/games/ksirk/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ksirk-20.12.0.tar.xz) = 415846803df9bd2180d2b865efd6fa0a2deffb5ac95435e0038c7dd341b5c783 -SIZE (KDE/release-service/20.12.0/ksirk-20.12.0.tar.xz) = 6993680 +TIMESTAMP = 1610047781 +SHA256 (KDE/release-service/20.12.1/ksirk-20.12.1.tar.xz) = bfab00f2e8f894e64f757ca34252177c6a58321bb938904e2c09382f65af6c85 +SIZE (KDE/release-service/20.12.1/ksirk-20.12.1.tar.xz) = 6993876 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 560804) +++ head/games/ksnakeduel/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ksnakeduel-20.12.0.tar.xz) = 9feb7336aa46192c5336ac39fc1be698bf0e029fd0ca21dcdbbf0f8b8a78e656 -SIZE (KDE/release-service/20.12.0/ksnakeduel-20.12.0.tar.xz) = 544224 +TIMESTAMP = 1610047769 +SHA256 (KDE/release-service/20.12.1/ksnakeduel-20.12.1.tar.xz) = cc3576f5b59153b400fae879c460641b5675a390ceedea843979a29094a88798 +SIZE (KDE/release-service/20.12.1/ksnakeduel-20.12.1.tar.xz) = 544236 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 560804) +++ head/games/kspaceduel/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kspaceduel-20.12.0.tar.xz) = 51b5aab6328c8c41705730fe9b4640a697657ca15a8c5754a84cb8f8bc813daa -SIZE (KDE/release-service/20.12.0/kspaceduel-20.12.0.tar.xz) = 618148 +TIMESTAMP = 1610047747 +SHA256 (KDE/release-service/20.12.1/kspaceduel-20.12.1.tar.xz) = e85410f2e4733c3176a9bbf03ef9f0d9b82e312da528a6801406774494d2229e +SIZE (KDE/release-service/20.12.1/kspaceduel-20.12.1.tar.xz) = 618160 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 560804) +++ head/games/ksquares/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ksquares-20.12.0.tar.xz) = 3e0c04117526e121668d4b5482e2f68d0bdcf3f373a76466e07c0aea17180d32 -SIZE (KDE/release-service/20.12.0/ksquares-20.12.0.tar.xz) = 266772 +TIMESTAMP = 1610047752 +SHA256 (KDE/release-service/20.12.1/ksquares-20.12.1.tar.xz) = 621fde84ff3ddcbc6b10f7f6c57e031964b6ffa81bb013801872845b3adbab20 +SIZE (KDE/release-service/20.12.1/ksquares-20.12.1.tar.xz) = 266684 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 560804) +++ head/games/ksudoku/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ksudoku-20.12.0.tar.xz) = 22bc6360666ebabffc58f09b1cd3e330d7c57257d7e33ad2ba3687a98ecf465e -SIZE (KDE/release-service/20.12.0/ksudoku-20.12.0.tar.xz) = 1669504 +TIMESTAMP = 1610047770 +SHA256 (KDE/release-service/20.12.1/ksudoku-20.12.1.tar.xz) = 75a22f8e70f76af2c9a0cc5eb3166764a98a750b28d06e6b53e5a8deda411128 +SIZE (KDE/release-service/20.12.1/ksudoku-20.12.1.tar.xz) = 1675340 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 560804) +++ head/games/ktuberling/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktuberling-20.12.0.tar.xz) = 215a1158bd0dcac7cd0fec2a88d08aa381c3804059b3bc9a11179c47294e9b56 -SIZE (KDE/release-service/20.12.0/ktuberling-20.12.0.tar.xz) = 70710664 +TIMESTAMP = 1610047799 +SHA256 (KDE/release-service/20.12.1/ktuberling-20.12.1.tar.xz) = d2683ea0bfe2422770939cbb755061f3a2d64a798dc5b3799338decd370b8a1a +SIZE (KDE/release-service/20.12.1/ktuberling-20.12.1.tar.xz) = 70712116 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 560804) +++ head/games/kubrick/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kubrick-20.12.0.tar.xz) = f88a4f43a9ba7640bc08c47435532d48ebe20a8c79ef2211d05a1fd3f8f57540 -SIZE (KDE/release-service/20.12.0/kubrick-20.12.0.tar.xz) = 332196 +TIMESTAMP = 1610047785 +SHA256 (KDE/release-service/20.12.1/kubrick-20.12.1.tar.xz) = 11e937d642242afa08cfa1bcf5cb81a0525f3e4bde035ec742ecf2c477aab3c1 +SIZE (KDE/release-service/20.12.1/kubrick-20.12.1.tar.xz) = 339764 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 560804) +++ head/games/libkdegames/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkdegames-20.12.0.tar.xz) = 48a019d871a99ae903b8dd01482473aae32d10d55cac918f2b8626e37958688b -SIZE (KDE/release-service/20.12.0/libkdegames-20.12.0.tar.xz) = 6389948 +TIMESTAMP = 1610047778 +SHA256 (KDE/release-service/20.12.1/libkdegames-20.12.1.tar.xz) = cf9e09a7248038b60d60a0b7db394963b9294a704fad32946e5eca8ed224c4ff +SIZE (KDE/release-service/20.12.1/libkdegames-20.12.1.tar.xz) = 6390808 Index: head/games/libkdegames/pkg-plist =================================================================== --- head/games/libkdegames/pkg-plist (revision 560804) +++ head/games/libkdegames/pkg-plist (revision 560805) @@ -1,183 +1,182 @@ -include/KF5/KF5KDEGames/KDE/KExtHighscore include/KF5/KF5KDEGames/KDE/KGameClock include/KF5/KF5KDEGames/KDE/KGamePopupItem include/KF5/KF5KDEGames/KDE/KGameRenderedItem include/KF5/KF5KDEGames/KDE/KGameRenderedObjectItem include/KF5/KF5KDEGames/KDE/KGameRenderer include/KF5/KF5KDEGames/KDE/KGameRendererClient include/KF5/KF5KDEGames/KDE/KHighscore include/KF5/KF5KDEGames/KDE/KScoreDialog include/KF5/KF5KDEGames/KDE/KStandardGameAction include/KF5/KF5KDEGames/KDE/KgAudioScene include/KF5/KF5KDEGames/KDE/KgDeclarativeView include/KF5/KF5KDEGames/KDE/KgDifficulty include/KF5/KF5KDEGames/KDE/KgSound include/KF5/KF5KDEGames/KDE/KgTheme include/KF5/KF5KDEGames/KDE/KgThemeProvider include/KF5/KF5KDEGames/KDE/KgThemeSelector include/KF5/KF5KDEGames/highscore/khighscore.h include/KF5/KF5KDEGames/highscore/kscoredialog.h include/KF5/KF5KDEGames/kdegames_version.h include/KF5/KF5KDEGames/kgameclock.h include/KF5/KF5KDEGames/kgamepopupitem.h include/KF5/KF5KDEGames/kgamerendereditem.h include/KF5/KF5KDEGames/kgamerenderedobjectitem.h include/KF5/KF5KDEGames/kgamerenderer.h include/KF5/KF5KDEGames/kgamerendererclient.h include/KF5/KF5KDEGames/kgaudioscene.h include/KF5/KF5KDEGames/kgdeclarativeview.h include/KF5/KF5KDEGames/kgdifficulty.h include/KF5/KF5KDEGames/kgsound.h include/KF5/KF5KDEGames/kgtheme.h include/KF5/KF5KDEGames/kgthemeprovider.h include/KF5/KF5KDEGames/kgthemeselector.h include/KF5/KF5KDEGames/kstandardgameaction.h include/KF5/KF5KDEGames/libkdegames_capabilities.h include/KF5/KF5KDEGames/libkdegames_export.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbase.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbaseitemdelegate.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbasemodel.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgame.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamechat.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameerror.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameio.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamemessage.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamenetwork.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameproperty.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamepropertyhandler.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamesequence.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameversion.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageclient.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageio.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageserver.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kplayer.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamecanvas.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamedifficulty.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamesvgdocument.h include/KF5/KF5KDEGames/libkdegamesprivate/kgametheme.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamethemeselector.h include/KF5/KF5KDEGames/libkdegamesprivate/libkdegamesprivate_export.h lib/cmake/KF5KDEGames/KF5KDEGamesConfig.cmake lib/cmake/KF5KDEGames/KF5KDEGamesConfigVersion.cmake lib/cmake/KF5KDEGames/KF5KDEGamesLibraryDepends-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KDEGames/KF5KDEGamesLibraryDepends.cmake lib/libKF5KDEGames.so lib/libKF5KDEGames.so.%%SHLIB_SHVER%% lib/libKF5KDEGames.so.%%SHLIB_SHVER%%.2.0 lib/libKF5KDEGamesPrivate.so lib/libKF5KDEGamesPrivate.so.1 lib/libKF5KDEGamesPrivate.so.1.0.0 %%QT_QMLDIR%%/org/kde/games/core/KgItem.qml %%QT_QMLDIR%%/org/kde/games/core/libcorebindingsplugin.so %%QT_QMLDIR%%/org/kde/games/core/qmldir share/carddecks/svg-ancient-egyptians/11.png share/carddecks/svg-ancient-egyptians/Ancient_Egyptians.svgz share/carddecks/svg-ancient-egyptians/index.desktop share/carddecks/svg-dondorf/11.png share/carddecks/svg-dondorf/dondorf.svgz share/carddecks/svg-dondorf/index.desktop share/carddecks/svg-future/11.png share/carddecks/svg-future/future.svgz share/carddecks/svg-future/index.desktop share/carddecks/svg-gm-paris/11.png share/carddecks/svg-gm-paris/index.desktop share/carddecks/svg-gm-paris/paris.svgz share/carddecks/svg-jolly-royal/11.png share/carddecks/svg-jolly-royal/index.desktop share/carddecks/svg-jolly-royal/jolly-royal.svgz share/carddecks/svg-konqi-modern/11.png share/carddecks/svg-konqi-modern/index.desktop share/carddecks/svg-konqi-modern/konqi.svgz share/carddecks/svg-nicu-ornamental/11.png share/carddecks/svg-nicu-ornamental/AUTHORS share/carddecks/svg-nicu-ornamental/COPYING share/carddecks/svg-nicu-ornamental/index.desktop share/carddecks/svg-nicu-ornamental/ornamental.svgz share/carddecks/svg-nicu-white/11.png share/carddecks/svg-nicu-white/AUTHORS share/carddecks/svg-nicu-white/COPYING share/carddecks/svg-nicu-white/index.desktop share/carddecks/svg-nicu-white/white.svgz share/carddecks/svg-oxygen-air/11.png share/carddecks/svg-oxygen-air/index.desktop share/carddecks/svg-oxygen-air/oxygen-air.svgz share/carddecks/svg-oxygen-white/11.png share/carddecks/svg-oxygen-white/index.desktop share/carddecks/svg-oxygen-white/oxygen-white.svgz share/carddecks/svg-oxygen/11.png share/carddecks/svg-oxygen/index.desktop share/carddecks/svg-oxygen/oxygen.svgz share/carddecks/svg-penguins/11.png share/carddecks/svg-penguins/COPYRIGHT share/carddecks/svg-penguins/index.desktop share/carddecks/svg-penguins/penguins.svgz share/carddecks/svg-standard/11.png share/carddecks/svg-standard/index.desktop share/carddecks/svg-standard/standard.svgz share/carddecks/svg-tigullio-international/index.desktop share/carddecks/svg-tigullio-international/queen-of-hearts.png share/carddecks/svg-tigullio-international/tigullio-international.svgz share/carddecks/svg-xskat-french/11.png share/carddecks/svg-xskat-french/COPYRIGHT share/carddecks/svg-xskat-french/french.svgz share/carddecks/svg-xskat-french/index.desktop share/carddecks/svg-xskat-german/11.png share/carddecks/svg-xskat-german/COPYRIGHT share/carddecks/svg-xskat-german/german.svgz share/carddecks/svg-xskat-german/index.desktop share/kconf_update/kgthemeprovider-migration.upd share/locale/ar/LC_MESSAGES/libkdegames5.mo share/locale/bg/LC_MESSAGES/libkdegames5.mo share/locale/bs/LC_MESSAGES/libkdegames5.mo share/locale/ca/LC_MESSAGES/libkdegames5.mo share/locale/ca@valencia/LC_MESSAGES/libkdegames5.mo share/locale/cs/LC_MESSAGES/libkdegames5.mo share/locale/da/LC_MESSAGES/libkdegames5.mo share/locale/de/LC_MESSAGES/libkdegames5.mo share/locale/el/LC_MESSAGES/libkdegames5.mo share/locale/en_GB/LC_MESSAGES/libkdegames5.mo share/locale/eo/LC_MESSAGES/libkdegames5.mo share/locale/es/LC_MESSAGES/libkdegames5.mo share/locale/et/LC_MESSAGES/libkdegames5.mo share/locale/eu/LC_MESSAGES/libkdegames5.mo share/locale/fa/LC_MESSAGES/libkdegames5.mo share/locale/fi/LC_MESSAGES/libkdegames5.mo share/locale/fr/LC_MESSAGES/libkdegames5.mo share/locale/ga/LC_MESSAGES/libkdegames5.mo share/locale/gl/LC_MESSAGES/libkdegames5.mo share/locale/he/LC_MESSAGES/libkdegames5.mo share/locale/hi/LC_MESSAGES/libkdegames5.mo share/locale/hr/LC_MESSAGES/libkdegames5.mo share/locale/hu/LC_MESSAGES/libkdegames5.mo share/locale/id/LC_MESSAGES/libkdegames5.mo share/locale/is/LC_MESSAGES/libkdegames5.mo share/locale/it/LC_MESSAGES/libkdegames5.mo share/locale/ja/LC_MESSAGES/libkdegames5.mo share/locale/kk/LC_MESSAGES/libkdegames5.mo share/locale/km/LC_MESSAGES/libkdegames5.mo share/locale/ko/LC_MESSAGES/libkdegames5.mo share/locale/lt/LC_MESSAGES/libkdegames5.mo share/locale/lv/LC_MESSAGES/libkdegames5.mo share/locale/ml/LC_MESSAGES/libkdegames5.mo share/locale/mr/LC_MESSAGES/libkdegames5.mo share/locale/nb/LC_MESSAGES/libkdegames5.mo share/locale/nds/LC_MESSAGES/libkdegames5.mo share/locale/nl/LC_MESSAGES/libkdegames5.mo share/locale/nn/LC_MESSAGES/libkdegames5.mo share/locale/pa/LC_MESSAGES/libkdegames5.mo share/locale/pl/LC_MESSAGES/libkdegames5.mo share/locale/pt/LC_MESSAGES/libkdegames5.mo share/locale/pt_BR/LC_MESSAGES/libkdegames5.mo share/locale/ro/LC_MESSAGES/libkdegames5.mo share/locale/ru/LC_MESSAGES/libkdegames5.mo share/locale/sk/LC_MESSAGES/libkdegames5.mo share/locale/sl/LC_MESSAGES/libkdegames5.mo share/locale/sr/LC_MESSAGES/libkdegames5.mo share/locale/sv/LC_MESSAGES/libkdegames5.mo share/locale/tr/LC_MESSAGES/libkdegames5.mo share/locale/ug/LC_MESSAGES/libkdegames5.mo share/locale/uk/LC_MESSAGES/libkdegames5.mo share/locale/wa/LC_MESSAGES/libkdegames5.mo share/locale/zh_CN/LC_MESSAGES/libkdegames5.mo share/locale/zh_TW/LC_MESSAGES/libkdegames5.mo share/qlogging-categories5/libkdegames.categories Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 560804) +++ head/games/libkmahjongg/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/libkmahjongg-20.12.0.tar.xz) = d8bd7cf2ac1cf3e5c2616849eaddc513c2a8f45c795ad53c75254e7cdcfa9282 -SIZE (KDE/release-service/20.12.0/libkmahjongg-20.12.0.tar.xz) = 1693056 +TIMESTAMP = 1610047782 +SHA256 (KDE/release-service/20.12.1/libkmahjongg-20.12.1.tar.xz) = 7dc815fb9b2e893f151be53951a21c2309dde8ceebe3f8ce0ef24d78285b0033 +SIZE (KDE/release-service/20.12.1/libkmahjongg-20.12.1.tar.xz) = 1691392 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 560804) +++ head/games/lskat/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/lskat-20.12.0.tar.xz) = 914afb2cd3ad905f5f232d4904775dce3de8913c10704c34ee924f626effe9f1 -SIZE (KDE/release-service/20.12.0/lskat-20.12.0.tar.xz) = 1224956 +TIMESTAMP = 1610047775 +SHA256 (KDE/release-service/20.12.1/lskat-20.12.1.tar.xz) = ad54af5980adbc38a417284131e47bd68c6960410e5f26495fb2f7e61e13165d +SIZE (KDE/release-service/20.12.1/lskat-20.12.1.tar.xz) = 1224944 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 560804) +++ head/games/palapeli/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/palapeli-20.12.0.tar.xz) = ab346cc16728808ae68b2edbbec9f3a9fecfd7a44521f4807854d2fec94bbf77 -SIZE (KDE/release-service/20.12.0/palapeli-20.12.0.tar.xz) = 2078840 +TIMESTAMP = 1610047767 +SHA256 (KDE/release-service/20.12.1/palapeli-20.12.1.tar.xz) = b50baa4eb6bfb0c0d987195276eddd740d8bc38667f6f7d0f911bc653570a315 +SIZE (KDE/release-service/20.12.1/palapeli-20.12.1.tar.xz) = 2078764 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 560804) +++ head/games/picmi/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/picmi-20.12.0.tar.xz) = 5fd7c2e38eac38a1471d42f0a2723756e06efecc8668fed1ff0c4069494dd8b5 -SIZE (KDE/release-service/20.12.0/picmi-20.12.0.tar.xz) = 1367316 +TIMESTAMP = 1610047811 +SHA256 (KDE/release-service/20.12.1/picmi-20.12.1.tar.xz) = 0344a22572c085b522dfa6128d8d90d6142225a8bc71c9cbdffb94a553c22a2a +SIZE (KDE/release-service/20.12.1/picmi-20.12.1.tar.xz) = 1367368 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 560804) +++ head/graphics/gwenview/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/gwenview-20.12.0.tar.xz) = 343b0e0fa00631f837a3b11c973197d372b0588b0450fe0b8067b56a21ab39e1 -SIZE (KDE/release-service/20.12.0/gwenview-20.12.0.tar.xz) = 6745224 +TIMESTAMP = 1610047819 +SHA256 (KDE/release-service/20.12.1/gwenview-20.12.1.tar.xz) = 61696a9e1eb3c128724cec07dafb70cf609482984c95d3741724a31543be5176 +SIZE (KDE/release-service/20.12.1/gwenview-20.12.1.tar.xz) = 6745328 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 560804) +++ head/graphics/kamera/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kamera-20.12.0.tar.xz) = 70f3d7ca9a8db91c45622492fa5976ba28fea07023ad8ac619cc2ab8665c2d5f -SIZE (KDE/release-service/20.12.0/kamera-20.12.0.tar.xz) = 108732 +TIMESTAMP = 1610047850 +SHA256 (KDE/release-service/20.12.1/kamera-20.12.1.tar.xz) = b8a16db057bdc78def3fa5dc3397d5b1c2e87a227c05a52dc22e1a01530b40ae +SIZE (KDE/release-service/20.12.1/kamera-20.12.1.tar.xz) = 108704 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 560804) +++ head/graphics/kcolorchooser/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kcolorchooser-20.12.0.tar.xz) = dedcf2020b98c7edc7945d01ae6b38ac62d27c2e6b4e898c98a2f620fffca7ba -SIZE (KDE/release-service/20.12.0/kcolorchooser-20.12.0.tar.xz) = 27468 +TIMESTAMP = 1610047839 +SHA256 (KDE/release-service/20.12.1/kcolorchooser-20.12.1.tar.xz) = 1f10697a77150e4711dde1d5a63234c6e85a84f3eb199a3b8fafeeaad0e41b1f +SIZE (KDE/release-service/20.12.1/kcolorchooser-20.12.1.tar.xz) = 27708 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 560804) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdegraphics-mobipocket-20.12.0.tar.xz) = 6572bd16eb1af1a1fe458ea898e8391a74a37997047a39f3fbc0bc742940a83a -SIZE (KDE/release-service/20.12.0/kdegraphics-mobipocket-20.12.0.tar.xz) = 17056 +TIMESTAMP = 1610047852 +SHA256 (KDE/release-service/20.12.1/kdegraphics-mobipocket-20.12.1.tar.xz) = 0d06f12fa1a5475d703839f2974806acb54b7c8ce0a5068e75144c561c237dd8 +SIZE (KDE/release-service/20.12.1/kdegraphics-mobipocket-20.12.1.tar.xz) = 17056 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 560804) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/svgpart-20.12.0.tar.xz) = bc018419d05078f1ddf5b991c9c76448b1b1722dba914085553bde253b7895f5 -SIZE (KDE/release-service/20.12.0/svgpart-20.12.0.tar.xz) = 21480 +TIMESTAMP = 1610047833 +SHA256 (KDE/release-service/20.12.1/svgpart-20.12.1.tar.xz) = 3eb7fe2ebb6cd32fc86fcb659189dd7e84ecda88019456ef7d8873a58bbbc026 +SIZE (KDE/release-service/20.12.1/svgpart-20.12.1.tar.xz) = 23260 Index: head/graphics/kdegraphics-svgpart/pkg-plist =================================================================== --- head/graphics/kdegraphics-svgpart/pkg-plist (revision 560804) +++ head/graphics/kdegraphics-svgpart/pkg-plist (revision 560805) @@ -1,53 +1,54 @@ %%QT_PLUGINDIR%%/kf5/parts/svgpart.so share/kservices5/svgpart.desktop share/locale/ar/LC_MESSAGES/svgpart.mo share/locale/bg/LC_MESSAGES/svgpart.mo share/locale/bs/LC_MESSAGES/svgpart.mo share/locale/ca/LC_MESSAGES/svgpart.mo share/locale/ca@valencia/LC_MESSAGES/svgpart.mo share/locale/cs/LC_MESSAGES/svgpart.mo share/locale/da/LC_MESSAGES/svgpart.mo share/locale/de/LC_MESSAGES/svgpart.mo share/locale/el/LC_MESSAGES/svgpart.mo share/locale/en_GB/LC_MESSAGES/svgpart.mo share/locale/eo/LC_MESSAGES/svgpart.mo share/locale/es/LC_MESSAGES/svgpart.mo share/locale/et/LC_MESSAGES/svgpart.mo share/locale/eu/LC_MESSAGES/svgpart.mo share/locale/fi/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/svgpart.mo share/locale/hi/LC_MESSAGES/svgpart.mo share/locale/hr/LC_MESSAGES/svgpart.mo share/locale/hu/LC_MESSAGES/svgpart.mo share/locale/ia/LC_MESSAGES/svgpart.mo share/locale/is/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/svgpart.mo share/locale/kk/LC_MESSAGES/svgpart.mo share/locale/km/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/svgpart.mo share/locale/ml/LC_MESSAGES/svgpart.mo share/locale/mr/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/ro/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/svgpart.mo share/locale/sk/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/ug/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo +share/metainfo/org.kde.svgpart.metainfo.xml Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 560804) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdegraphics-thumbnailers-20.12.0.tar.xz) = 790dd2d4d27ca5677007182384582cc265759a3fe660ef477bda4e9f9b158fd1 -SIZE (KDE/release-service/20.12.0/kdegraphics-thumbnailers-20.12.0.tar.xz) = 47020 +TIMESTAMP = 1610047830 +SHA256 (KDE/release-service/20.12.1/kdegraphics-thumbnailers-20.12.1.tar.xz) = fc6ceaaedb31d0a8ef9e23455a7a7e32e37ae503eea744d65cdc300fef963153 +SIZE (KDE/release-service/20.12.1/kdegraphics-thumbnailers-20.12.1.tar.xz) = 47016 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 560804) +++ head/graphics/kimagemapeditor/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kimagemapeditor-20.12.0.tar.xz) = 51a547986491141ace0c5537473e677ddf90921419a55d1b5fe4dfa906692910 -SIZE (KDE/release-service/20.12.0/kimagemapeditor-20.12.0.tar.xz) = 1077864 +TIMESTAMP = 1610047837 +SHA256 (KDE/release-service/20.12.1/kimagemapeditor-20.12.1.tar.xz) = c86551166a90743be575a5ff0d01fbc4dd088a813fe012db0302e0f9d6e0426e +SIZE (KDE/release-service/20.12.1/kimagemapeditor-20.12.1.tar.xz) = 1077784 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 560804) +++ head/graphics/kipi-plugins/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kipi-plugins-20.12.0.tar.xz) = 54bac3f5beffd4034cbc12ca8c7fbf6816f921be1db39e64a081b9c4f271878e -SIZE (KDE/release-service/20.12.0/kipi-plugins-20.12.0.tar.xz) = 1644788 +TIMESTAMP = 1610047826 +SHA256 (KDE/release-service/20.12.1/kipi-plugins-20.12.1.tar.xz) = 2dbd859e39190f2fc13442d1966a0d137b2f572987ab4d7edee5d833b671655f +SIZE (KDE/release-service/20.12.1/kipi-plugins-20.12.1.tar.xz) = 1644892 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 560804) +++ head/graphics/kolourpaint/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kolourpaint-20.12.0.tar.xz) = d80940e27155304aa0842fa3c08d72f8e383eb45beff49dc1a66b12b030be4ca -SIZE (KDE/release-service/20.12.0/kolourpaint-20.12.0.tar.xz) = 5686588 +TIMESTAMP = 1610047854 +SHA256 (KDE/release-service/20.12.1/kolourpaint-20.12.1.tar.xz) = 5ee17da9790d931953acedeebc434e11edb2f3e9a8593183913b47985c7e5ca8 +SIZE (KDE/release-service/20.12.1/kolourpaint-20.12.1.tar.xz) = 5686404 Index: head/graphics/kontrast/distinfo =================================================================== --- head/graphics/kontrast/distinfo (revision 560804) +++ head/graphics/kontrast/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kontrast-20.12.0.tar.xz) = b5cc97ee0c1c2bde2249c2dd286570bb3d7da9cc563cf6d7c2c3478cb1dc8389 -SIZE (KDE/release-service/20.12.0/kontrast-20.12.0.tar.xz) = 121056 +TIMESTAMP = 1610047817 +SHA256 (KDE/release-service/20.12.1/kontrast-20.12.1.tar.xz) = 79099358ad697dd89c8cbb58ae185a9d42e175fa6be87ba28350a84dac0e4333 +SIZE (KDE/release-service/20.12.1/kontrast-20.12.1.tar.xz) = 122392 Index: head/graphics/kontrast/pkg-plist =================================================================== --- head/graphics/kontrast/pkg-plist (revision 560804) +++ head/graphics/kontrast/pkg-plist (revision 560805) @@ -1,27 +1,28 @@ bin/kontrast share/applications/org.kde.kontrast.desktop share/icons/hicolor/scalable/apps/org.kde.kontrast.svg share/locale/ca/LC_MESSAGES/kontrast.mo share/locale/ca@valencia/LC_MESSAGES/kontrast.mo share/locale/cs/LC_MESSAGES/kontrast.mo share/locale/da/LC_MESSAGES/kontrast.mo share/locale/el/LC_MESSAGES/kontrast.mo share/locale/en_GB/LC_MESSAGES/kontrast.mo share/locale/es/LC_MESSAGES/kontrast.mo share/locale/eu/LC_MESSAGES/kontrast.mo share/locale/fi/LC_MESSAGES/kontrast.mo share/locale/fr/LC_MESSAGES/kontrast.mo share/locale/it/LC_MESSAGES/kontrast.mo share/locale/ko/LC_MESSAGES/kontrast.mo share/locale/lt/LC_MESSAGES/kontrast.mo share/locale/nl/LC_MESSAGES/kontrast.mo share/locale/nn/LC_MESSAGES/kontrast.mo +share/locale/pl/LC_MESSAGES/kontrast.mo share/locale/pt/LC_MESSAGES/kontrast.mo share/locale/pt_BR/LC_MESSAGES/kontrast.mo share/locale/ru/LC_MESSAGES/kontrast.mo share/locale/sk/LC_MESSAGES/kontrast.mo share/locale/sl/LC_MESSAGES/kontrast.mo share/locale/sv/LC_MESSAGES/kontrast.mo share/locale/uk/LC_MESSAGES/kontrast.mo share/locale/zh_CN/LC_MESSAGES/kontrast.mo share/metainfo/org.kde.kontrast.appdata.xml Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 560804) +++ head/graphics/kqtquickcharts/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kqtquickcharts-20.12.0.tar.xz) = 6034c27b6f75c7fba7c4bf468661022d8f7f38cf2728af82095b2de41eab2cb1 -SIZE (KDE/release-service/20.12.0/kqtquickcharts-20.12.0.tar.xz) = 30072 +TIMESTAMP = 1610047816 +SHA256 (KDE/release-service/20.12.1/kqtquickcharts-20.12.1.tar.xz) = ec524f2ea26b2773e111bfcb719ee977ff08506fde6059f52a6f4c6089dc4500 +SIZE (KDE/release-service/20.12.1/kqtquickcharts-20.12.1.tar.xz) = 30076 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 560804) +++ head/graphics/libkdcraw/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkdcraw-20.12.0.tar.xz) = 99926c46cbf77aa28da63b0a625980d47beb5291ce00f6a187d77e37e9752e5a -SIZE (KDE/release-service/20.12.0/libkdcraw-20.12.0.tar.xz) = 41972 +TIMESTAMP = 1610047822 +SHA256 (KDE/release-service/20.12.1/libkdcraw-20.12.1.tar.xz) = 031640f7abf80b306cbe697a7abbea4b69abeeb5aee12d8712c274e519f372ee +SIZE (KDE/release-service/20.12.1/libkdcraw-20.12.1.tar.xz) = 41972 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 560804) +++ head/graphics/libkexiv2/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkexiv2-20.12.0.tar.xz) = 534a28648861f1d10e46a5b95c4c7dc27eb2028bf1e0cddd9814237d9c8d114c -SIZE (KDE/release-service/20.12.0/libkexiv2-20.12.0.tar.xz) = 64740 +TIMESTAMP = 1610047858 +SHA256 (KDE/release-service/20.12.1/libkexiv2-20.12.1.tar.xz) = 60b3c6d16ea02b335ce5b377e153e39268726d9b80187674547dccfe06f5d4ef +SIZE (KDE/release-service/20.12.1/libkexiv2-20.12.1.tar.xz) = 64740 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 560804) +++ head/graphics/libkipi/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkipi-20.12.0.tar.xz) = efb8b33f495a7481e2d1b69954980761f7f267dbc1d287cd1f77fe970d04b42e -SIZE (KDE/release-service/20.12.0/libkipi-20.12.0.tar.xz) = 103616 +TIMESTAMP = 1610047856 +SHA256 (KDE/release-service/20.12.1/libkipi-20.12.1.tar.xz) = 4f638ef8474527289f8dc1624625aa3bf3f339c3865f4a605a38c2976c70c4d2 +SIZE (KDE/release-service/20.12.1/libkipi-20.12.1.tar.xz) = 103588 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 560804) +++ head/graphics/libksane/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/libksane-20.12.0.tar.xz) = 5bc01f05a55e1d97a45352b9f708af25e09324618836b8a60c59fa2c6e77d066 -SIZE (KDE/release-service/20.12.0/libksane-20.12.0.tar.xz) = 145372 +TIMESTAMP = 1610047841 +SHA256 (KDE/release-service/20.12.1/libksane-20.12.1.tar.xz) = d28cd8a9e3075214b621a8eabbac11b5b6690dc9c11fef80b465c0498176ba1f +SIZE (KDE/release-service/20.12.1/libksane-20.12.1.tar.xz) = 145376 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 560804) +++ head/graphics/okular/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/okular-20.12.0.tar.xz) = 972c5395dad9c47b0251237b476d569bcd21855710a1bf8ec50fa7e6f0472bce -SIZE (KDE/release-service/20.12.0/okular-20.12.0.tar.xz) = 7882588 +TIMESTAMP = 1610047814 +SHA256 (KDE/release-service/20.12.1/okular-20.12.1.tar.xz) = 2ca17ad0b2a1a0f9f70c7ca4bc1f44a9ed758b0ca6a8e5c9935a467f883df53e +SIZE (KDE/release-service/20.12.1/okular-20.12.1.tar.xz) = 7884864 Index: head/graphics/okular/pkg-plist =================================================================== --- head/graphics/okular/pkg-plist (revision 560804) +++ head/graphics/okular/pkg-plist (revision 560805) @@ -1,1068 +1,1071 @@ bin/okular include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/printoptionswidget.h include/okular/core/settings_core.h include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular5/Okular5Config.cmake lib/cmake/Okular5/Okular5ConfigVersion.cmake lib/cmake/Okular5/Okular5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular5/Okular5Targets.cmake lib/libOkular5Core.so lib/libOkular5Core.so.9 lib/libOkular5Core.so.9.0.0 %%QT_PLUGINDIR%%/kio_msits.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_chmlib.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_plucker.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_xps.so %%QT_PLUGINDIR%%/okularpart.so man/ca/man1/okular.1.gz man/de/man1/okular.1.gz man/es/man1/okular.1.gz man/et/man1/okular.1.gz man/fr/man1/okular.1.gz man/it/man1/okular.1.gz man/man1/okular.1.gz man/nl/man1/okular.1.gz man/pt/man1/okular.1.gz man/pt_BR/man1/okular.1.gz man/ru/man1/okular.1.gz man/sv/man1/okular.1.gz man/uk/man1/okular.1.gz share/applications/okularApplication_chm.desktop share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop share/applications/org.kde.mobile.okular_chm.desktop share/applications/org.kde.mobile.okular_comicbook.desktop share/applications/org.kde.mobile.okular_djvu.desktop share/applications/org.kde.mobile.okular_dvi.desktop share/applications/org.kde.mobile.okular_epub.desktop share/applications/org.kde.mobile.okular_fax.desktop share/applications/org.kde.mobile.okular_fb.desktop share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop share/applications/org.kde.mobile.okular_txt.desktop share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/128x128/apps/okular.png share/icons/hicolor/16x16/apps/okular.png share/icons/hicolor/22x22/apps/okular.png share/icons/hicolor/32x32/apps/okular.png share/icons/hicolor/48x48/apps/okular.png share/icons/hicolor/64x64/apps/okular.png share/kconf_update/okular.upd share/kservices5/ms-its.protocol share/kservices5/okularChm.desktop share/kservices5/okularComicbook.desktop share/kservices5/okularDjvu.desktop share/kservices5/okularDvi.desktop share/kservices5/okularEPub.desktop share/kservices5/okularFax.desktop share/kservices5/okularFb.desktop share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop share/kservices5/okularTxt.desktop share/kservices5/okularXps.desktop share/kservices5/okular_part.desktop share/kservicetypes5/okularGenerator.desktop share/kxmlgui5/okular/part-viewermode.rc share/kxmlgui5/okular/part.rc share/kxmlgui5/okular/shell.rc share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_chm.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/ast/LC_MESSAGES/okular_chm.mo share/locale/ast/LC_MESSAGES/okular_fax.mo share/locale/ast/LC_MESSAGES/okular_plucker.mo share/locale/ast/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/okular.mo share/locale/bg/LC_MESSAGES/okular_chm.mo share/locale/bg/LC_MESSAGES/okular_comicbook.mo share/locale/bg/LC_MESSAGES/okular_djvu.mo share/locale/bg/LC_MESSAGES/okular_dvi.mo share/locale/bg/LC_MESSAGES/okular_epub.mo share/locale/bg/LC_MESSAGES/okular_fax.mo share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_txt.mo share/locale/bg/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_chm.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_chm.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_chm.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_chm.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_chm.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_chm.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_chm.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_chm.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_chm.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_chm.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_chm.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_chm.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_chm.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_chm.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_chm.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_chm.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo +share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo +share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_chm.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_chm.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_chm.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_chm.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_txt.mo share/locale/ja/LC_MESSAGES/okular_xps.mo share/locale/ja/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_chm.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_chm.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_chm.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_chm.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/okular.mo share/locale/ml/LC_MESSAGES/okular_chm.mo share/locale/ml/LC_MESSAGES/okular_comicbook.mo share/locale/ml/LC_MESSAGES/okular_djvu.mo share/locale/ml/LC_MESSAGES/okular_dvi.mo share/locale/ml/LC_MESSAGES/okular_epub.mo share/locale/ml/LC_MESSAGES/okular_fax.mo share/locale/ml/LC_MESSAGES/okular_fictionbook.mo share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo share/locale/ml/LC_MESSAGES/okular_plucker.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo share/locale/ml/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_chm.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_chm.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_chm.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_chm.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_chm.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo +share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_chm.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_chm.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_chm.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_chm.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_chm.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_chm.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/metainfo/org.kde.okular-chm.metainfo.xml share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml %%DATADIR%%/toolsQuick.xml share/qlogging-categories5/okular.categories Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 560804) +++ head/graphics/spectacle/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/spectacle-20.12.0.tar.xz) = 0efa48c9646c8df804d2dd474fbce7f131f3918d9acd10e43cf983f699768e1a -SIZE (KDE/release-service/20.12.0/spectacle-20.12.0.tar.xz) = 1163508 +TIMESTAMP = 1610047844 +SHA256 (KDE/release-service/20.12.1/spectacle-20.12.1.tar.xz) = 3414bcb536ea63876342dab7a33a4b005897985b10da8e01628c297723a85a12 +SIZE (KDE/release-service/20.12.1/spectacle-20.12.1.tar.xz) = 1163912 Index: head/irc/konversation/distinfo =================================================================== --- head/irc/konversation/distinfo (revision 560804) +++ head/irc/konversation/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/konversation-20.12.0.tar.xz) = d933d6b2f3dab4633cf58f5ea7b961cb8a7886d09263f9199fa7228eaadf5e8c -SIZE (KDE/release-service/20.12.0/konversation-20.12.0.tar.xz) = 4219148 +TIMESTAMP = 1610047859 +SHA256 (KDE/release-service/20.12.1/konversation-20.12.1.tar.xz) = 441e8924763893e5933309dd90525ed8fc37e6e7dc2eda2b1e6cab7176f4d7f4 +SIZE (KDE/release-service/20.12.1/konversation-20.12.1.tar.xz) = 4220716 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 560804) +++ head/japanese/kiten/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kiten-20.12.0.tar.xz) = 207131e7e4b3a57d6f452fdd478e91257582cd7d9056abb584c46ceea0dd43d2 -SIZE (KDE/release-service/20.12.0/kiten-20.12.0.tar.xz) = 11296408 +TIMESTAMP = 1610047861 +SHA256 (KDE/release-service/20.12.1/kiten-20.12.1.tar.xz) = 9568a7c480add42b480181828e0ce031fc3896bf1f5a7a4c72c03ea61b17df35 +SIZE (KDE/release-service/20.12.1/kiten-20.12.1.tar.xz) = 11297332 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 560804) +++ head/lang/kross-interpreters/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111085 -SHA256 (KDE/release-service/20.12.0/kross-interpreters-20.12.0.tar.xz) = 4bb0b7f2e071ec6a63ca85defa8a0951c827fd7dab69d090a014f8eadad1ad2b -SIZE (KDE/release-service/20.12.0/kross-interpreters-20.12.0.tar.xz) = 151304 +TIMESTAMP = 1610047862 +SHA256 (KDE/release-service/20.12.1/kross-interpreters-20.12.1.tar.xz) = badf6dace6b354407abfaa65c6fd793f56d13c44c0ef5874756ee339671f53b3 +SIZE (KDE/release-service/20.12.1/kross-interpreters-20.12.1.tar.xz) = 151272 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 560804) +++ head/lang/kturtle/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kturtle-20.12.0.tar.xz) = bf60bff1b207857faa9f970099e447d04962ce8c09018c10f5e6dd07f381e68d -SIZE (KDE/release-service/20.12.0/kturtle-20.12.0.tar.xz) = 1837452 +TIMESTAMP = 1610047863 +SHA256 (KDE/release-service/20.12.1/kturtle-20.12.1.tar.xz) = 6b79f2f60517656501f6af0590f8464d37c698b88b7806c661fb4ac89626598a +SIZE (KDE/release-service/20.12.1/kturtle-20.12.1.tar.xz) = 1837400 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 560804) +++ head/math/analitza/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/analitza-20.12.0.tar.xz) = dda39c7ffbb8c47e8b6ff4682948e68be2ea382c16f3f4bb4c1484631eb3a4cb -SIZE (KDE/release-service/20.12.0/analitza-20.12.0.tar.xz) = 338576 +TIMESTAMP = 1610047864 +SHA256 (KDE/release-service/20.12.1/analitza-20.12.1.tar.xz) = 6d7e7744fae960e44d6fe88938a223e0f7de2b769e622e9d5bcdfe2bf3c2d8e2 +SIZE (KDE/release-service/20.12.1/analitza-20.12.1.tar.xz) = 338536 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 560804) +++ head/math/cantor/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/cantor-20.12.0.tar.xz) = d8fd85639c86d7cd1826f1278b913c1aa45f4e4fd9eff6890441d5de3578a5aa -SIZE (KDE/release-service/20.12.0/cantor-20.12.0.tar.xz) = 9102652 +TIMESTAMP = 1610047865 +SHA256 (KDE/release-service/20.12.1/cantor-20.12.1.tar.xz) = a21ff38afaeb9cd55ef0b99cbaff4b6e9c3bc1322065c1310821e3fa58a546e2 +SIZE (KDE/release-service/20.12.1/cantor-20.12.1.tar.xz) = 9125164 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 560804) +++ head/math/kalgebra/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kalgebra-20.12.0.tar.xz) = 7e638940d7d3dbbe98c6631aa1a7576af50f379ffff229e46d7cd32d599c8be2 -SIZE (KDE/release-service/20.12.0/kalgebra-20.12.0.tar.xz) = 1146904 +TIMESTAMP = 1610047879 +SHA256 (KDE/release-service/20.12.1/kalgebra-20.12.1.tar.xz) = f5cfbaf2e57d678a205bed2f7d92eac36ded7bf1b507748a4781cc789fffc983 +SIZE (KDE/release-service/20.12.1/kalgebra-20.12.1.tar.xz) = 1020360 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 560804) +++ head/math/kbruch/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kbruch-20.12.0.tar.xz) = b74531af478cd0dd3340f9063e410e046123359aec3d6e54b431756e9f187f52 -SIZE (KDE/release-service/20.12.0/kbruch-20.12.0.tar.xz) = 5615156 +TIMESTAMP = 1610047876 +SHA256 (KDE/release-service/20.12.1/kbruch-20.12.1.tar.xz) = 116b4bd318ce5d7bbf780992c20ccbe0a5bcfecb259a846132d0129bb9c94b1b +SIZE (KDE/release-service/20.12.1/kbruch-20.12.1.tar.xz) = 5615196 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 560804) +++ head/math/kcalc/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kcalc-20.12.0.tar.xz) = 3c92a39a349225cbe6fa1eeb84ea5a937172d6a216e06e9f63b954118390482b -SIZE (KDE/release-service/20.12.0/kcalc-20.12.0.tar.xz) = 380084 +TIMESTAMP = 1610047867 +SHA256 (KDE/release-service/20.12.1/kcalc-20.12.1.tar.xz) = bca173af793573b52abf0a40474c99efe7ecc74f4bb3a71d7b9de009a689a9dc +SIZE (KDE/release-service/20.12.1/kcalc-20.12.1.tar.xz) = 380460 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 560804) +++ head/math/kig/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kig-20.12.0.tar.xz) = 16f09ee6fde0865ad2fb87528eae8d8ec4ab7e69a35ab43ec25fa91f0e200626 -SIZE (KDE/release-service/20.12.0/kig-20.12.0.tar.xz) = 3122144 +TIMESTAMP = 1610047878 +SHA256 (KDE/release-service/20.12.1/kig-20.12.1.tar.xz) = 3feabd92c5b4975c682e80f0b8038c4447b5f29ad0f2e4b194e70a8126cc445b +SIZE (KDE/release-service/20.12.1/kig-20.12.1.tar.xz) = 3122324 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 560804) +++ head/math/kmplot/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmplot-20.12.0.tar.xz) = d5ac4d6cc79fdbf4d073588a3b9e20bfb69a115b38e6516c6e1823a29e507cbd -SIZE (KDE/release-service/20.12.0/kmplot-20.12.0.tar.xz) = 3055868 +TIMESTAMP = 1610047870 +SHA256 (KDE/release-service/20.12.1/kmplot-20.12.1.tar.xz) = d5c52c0836c3240b74937d25a41a94e0c7d5964dbb615be02a12fc93a50ce647 +SIZE (KDE/release-service/20.12.1/kmplot-20.12.1.tar.xz) = 3055808 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 560804) +++ head/math/rocs/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/rocs-20.12.0.tar.xz) = 3f7016c98f37202d4bbd82fc62ff2afcdc60725957a522de2db2856528808458 -SIZE (KDE/release-service/20.12.0/rocs-20.12.0.tar.xz) = 1491956 +TIMESTAMP = 1610047869 +SHA256 (KDE/release-service/20.12.1/rocs-20.12.1.tar.xz) = ab96b879296350877913eac65ca441ae6bf6e542fc6c3c0ccf8e07d1eb15ef85 +SIZE (KDE/release-service/20.12.1/rocs-20.12.1.tar.xz) = 1492204 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 560804) +++ head/misc/artikulate/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/artikulate-20.12.0.tar.xz) = 5ea01243ea3c3e8054aa0746a4872e6f2a99a8709376b1b9646a2314a412fca4 -SIZE (KDE/release-service/20.12.0/artikulate-20.12.0.tar.xz) = 1083400 +TIMESTAMP = 1610047886 +SHA256 (KDE/release-service/20.12.1/artikulate-20.12.1.tar.xz) = 8a8d3d97a1a0530fb2f09261722ae6caac8b6c07b3a234d20da2640488f277b3 +SIZE (KDE/release-service/20.12.1/artikulate-20.12.1.tar.xz) = 1083468 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 560804) +++ head/misc/kdeedu-data/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111060 -SHA256 (KDE/release-service/20.12.0/kdeedu-data-20.12.0.tar.xz) = bb96df997b6126204c049771a4980f9f06d37af243fdac7c84567697ba779122 -SIZE (KDE/release-service/20.12.0/kdeedu-data-20.12.0.tar.xz) = 335400 +TIMESTAMP = 1610047888 +SHA256 (KDE/release-service/20.12.1/kdeedu-data-20.12.1.tar.xz) = b73ba2c73269e60649b553ade8149d4144e61e0a17141bee9e6d8c21d6e4f9c3 +SIZE (KDE/release-service/20.12.1/kdeedu-data-20.12.1.tar.xz) = 335476 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 560804) +++ head/misc/kgeography/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kgeography-20.12.0.tar.xz) = ace0252aa0c6c2b925d72b3aa781e467d6bd25a0a1d14b994ea169b6cbe6835e -SIZE (KDE/release-service/20.12.0/kgeography-20.12.0.tar.xz) = 10763904 +TIMESTAMP = 1610047885 +SHA256 (KDE/release-service/20.12.1/kgeography-20.12.1.tar.xz) = 10dd7c91dbd3bf478b0f7b355cc24cc122eab4c0289e9753e4f4d313b6cb5a8e +SIZE (KDE/release-service/20.12.1/kgeography-20.12.1.tar.xz) = 10764128 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 560804) +++ head/misc/klettres/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/klettres-20.12.0.tar.xz) = cdb85764f5f28c9f03abad20329206d5bf5a5c1481a8b9f550ef5502160f5ffa -SIZE (KDE/release-service/20.12.0/klettres-20.12.0.tar.xz) = 46836280 +TIMESTAMP = 1610047882 +SHA256 (KDE/release-service/20.12.1/klettres-20.12.1.tar.xz) = 730e9b877804d21fc75bd392ca57d8cff77ac730e96f9be6fb219aed67ebc64c +SIZE (KDE/release-service/20.12.1/klettres-20.12.1.tar.xz) = 47057632 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 560804) +++ head/misc/ktouch/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktouch-20.12.0.tar.xz) = 22ae749d176ab2aba408f670579bd993c84156d1d757e9ddf38aa43e156717e9 -SIZE (KDE/release-service/20.12.0/ktouch-20.12.0.tar.xz) = 4940596 +TIMESTAMP = 1610047883 +SHA256 (KDE/release-service/20.12.1/ktouch-20.12.1.tar.xz) = 2bb65d37a6c16b38d6e72a1f0a0f6e406be76b0063f00da9b18919c1d1159582 +SIZE (KDE/release-service/20.12.1/ktouch-20.12.1.tar.xz) = 4940268 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 560804) +++ head/misc/kwordquiz/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kwordquiz-20.12.0.tar.xz) = e8b6eb31abee41e190775a4cb9d36631e1ca93e796b9efa074751dc248f87b66 -SIZE (KDE/release-service/20.12.0/kwordquiz-20.12.0.tar.xz) = 4187232 +TIMESTAMP = 1610047890 +SHA256 (KDE/release-service/20.12.1/kwordquiz-20.12.1.tar.xz) = 5774fb347bbecb32c94238ba44ee271fff28dbba48dab8d2169628a9b8db6bb7 +SIZE (KDE/release-service/20.12.1/kwordquiz-20.12.1.tar.xz) = 4187780 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 560804) +++ head/misc/libkeduvocdocument/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkeduvocdocument-20.12.0.tar.xz) = a6df8eb7f5269f4853bee0491c6cd9d15631e734f67dddc17d7e9091443e049e -SIZE (KDE/release-service/20.12.0/libkeduvocdocument-20.12.0.tar.xz) = 211096 +TIMESTAMP = 1610047888 +SHA256 (KDE/release-service/20.12.1/libkeduvocdocument-20.12.1.tar.xz) = 9cbc816a97cc85df21a7bf58edc7058a15ba3c9396daf330652145b79482164f +SIZE (KDE/release-service/20.12.1/libkeduvocdocument-20.12.1.tar.xz) = 211112 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 560804) +++ head/misc/parley/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111060 -SHA256 (KDE/release-service/20.12.0/parley-20.12.0.tar.xz) = 18e30dccb7a5c47a1acbeca594fde7b9f4275129914aaad8e723e940af52f738 -SIZE (KDE/release-service/20.12.0/parley-20.12.0.tar.xz) = 8842204 +TIMESTAMP = 1610047884 +SHA256 (KDE/release-service/20.12.1/parley-20.12.1.tar.xz) = aadcf044c7b4e0ffa3e87997310141d588cdf37e6f40ecf21ae84837760bac03 +SIZE (KDE/release-service/20.12.1/parley-20.12.1.tar.xz) = 8842148 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 560804) +++ head/multimedia/dragon/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/dragon-20.12.0.tar.xz) = 4462fd75fde78dc8a7c97d2e93e502902d6076c2f2d78021354b359ed4a07c24 -SIZE (KDE/release-service/20.12.0/dragon-20.12.0.tar.xz) = 1656524 +TIMESTAMP = 1610047896 +SHA256 (KDE/release-service/20.12.1/dragon-20.12.1.tar.xz) = 1a5cd1c227fa623aaf4abcdc175d517067fc7ed2c36c7a78c0041f4ed462425a +SIZE (KDE/release-service/20.12.1/dragon-20.12.1.tar.xz) = 1656476 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 560804) +++ head/multimedia/kamoso/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kamoso-20.12.0.tar.xz) = 09a9d617f8521ac107545940e8d50dc393d76027a40fac18b4cecc7d54fa8114 -SIZE (KDE/release-service/20.12.0/kamoso-20.12.0.tar.xz) = 211468 +TIMESTAMP = 1610047894 +SHA256 (KDE/release-service/20.12.1/kamoso-20.12.1.tar.xz) = 8b12d51ed37bb4d912294de621488972ec045f48d0fbacb4ee401b092f4df520 +SIZE (KDE/release-service/20.12.1/kamoso-20.12.1.tar.xz) = 211304 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 560804) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ffmpegthumbs-20.12.0.tar.xz) = e4440887c7104ebb56b05bcf9a8b66e7430d838cf6894767a46c6952f6e0a259 -SIZE (KDE/release-service/20.12.0/ffmpegthumbs-20.12.0.tar.xz) = 33936 +TIMESTAMP = 1610047893 +SHA256 (KDE/release-service/20.12.1/ffmpegthumbs-20.12.1.tar.xz) = afb0a47751cee3c9e7ccfa8504076bbdd03665afa92f38dd842b2aed3ceee99e +SIZE (KDE/release-service/20.12.1/ffmpegthumbs-20.12.1.tar.xz) = 33980 Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 560804) +++ head/multimedia/kdenlive/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kdenlive-20.12.0.tar.xz) = c2be4227edc29e9d835dbe21ee3ca2986a44cd494dffc8b353a526510fb40d74 -SIZE (KDE/release-service/20.12.0/kdenlive-20.12.0.tar.xz) = 11473068 +TIMESTAMP = 1610047892 +SHA256 (KDE/release-service/20.12.1/kdenlive-20.12.1.tar.xz) = 9b6e22ad311c33457e7f7147ad873286945fc6c3b610129856fd01cbb51da458 +SIZE (KDE/release-service/20.12.1/kdenlive-20.12.1.tar.xz) = 11491488 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 560804) +++ head/net/akonadi-calendar/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/akonadi-calendar-20.12.0.tar.xz) = 6171a6b6e7e20f4de5744fb514dd3ae804871c9fe93b92cf01cc978353992821 -SIZE (KDE/release-service/20.12.0/akonadi-calendar-20.12.0.tar.xz) = 342632 +TIMESTAMP = 1610047930 +SHA256 (KDE/release-service/20.12.1/akonadi-calendar-20.12.1.tar.xz) = 85db4f06e8af322eb65ad1dd37a8a2eec6277b99d0012f3323f2fa3f8023fe7f +SIZE (KDE/release-service/20.12.1/akonadi-calendar-20.12.1.tar.xz) = 342756 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 560804) +++ head/net/akonadi-contacts/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-contacts-20.12.0.tar.xz) = 1e4d21c2897596db2f5d3b21a830c9ea9f247142bc4338013010db471f4c31bd -SIZE (KDE/release-service/20.12.0/akonadi-contacts-20.12.0.tar.xz) = 413356 +TIMESTAMP = 1610047941 +SHA256 (KDE/release-service/20.12.1/akonadi-contacts-20.12.1.tar.xz) = 34ab825e7a6e155363fc5d0b2505661dff612a836de9ea8ba5c61f602dd2ac3f +SIZE (KDE/release-service/20.12.1/akonadi-contacts-20.12.1.tar.xz) = 414204 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 560804) +++ head/net/akonadi-mime/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-mime-20.12.0.tar.xz) = bf6d0a4dd15c26bdffb4b20d6de3ca35fa5e09440c0e02f6206941d45154885b -SIZE (KDE/release-service/20.12.0/akonadi-mime-20.12.0.tar.xz) = 135144 +TIMESTAMP = 1610047899 +SHA256 (KDE/release-service/20.12.1/akonadi-mime-20.12.1.tar.xz) = e58f1c794cfc0891ec920366572f588d2392352a751e6297a29a7e710a6259f7 +SIZE (KDE/release-service/20.12.1/akonadi-mime-20.12.1.tar.xz) = 135128 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 560804) +++ head/net/akonadi-notes/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-notes-20.12.0.tar.xz) = d6237903b79d31e0a685d955c77fc216ce3ac0fcefeaec3e9326ad80d008eccd -SIZE (KDE/release-service/20.12.0/akonadi-notes-20.12.0.tar.xz) = 22924 +TIMESTAMP = 1610047919 +SHA256 (KDE/release-service/20.12.1/akonadi-notes-20.12.1.tar.xz) = 959f6964407e03801faf1b6f563b97ed57feed85e0c6c53a73b1fa092a1fa295 +SIZE (KDE/release-service/20.12.1/akonadi-notes-20.12.1.tar.xz) = 22892 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 560804) +++ head/net/akonadi-search/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/akonadi-search-20.12.0.tar.xz) = 1e5c3d22c412e25e4a93a0ab02bd94bd652965752d9001aa87ca10596766061c -SIZE (KDE/release-service/20.12.0/akonadi-search-20.12.0.tar.xz) = 93968 +TIMESTAMP = 1610047932 +SHA256 (KDE/release-service/20.12.1/akonadi-search-20.12.1.tar.xz) = 08115ac4fd33a423d6b9f68d6cdde360808b84961029bb0074e408e4ecb8b818 +SIZE (KDE/release-service/20.12.1/akonadi-search-20.12.1.tar.xz) = 93928 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 560804) +++ head/net/calendarsupport/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/calendarsupport-20.12.0.tar.xz) = 2a8fa770904c81d1f9452f2782507263c2ee8a07a5affc3ef847ea89335ed31b -SIZE (KDE/release-service/20.12.0/calendarsupport-20.12.0.tar.xz) = 664776 +TIMESTAMP = 1610047943 +SHA256 (KDE/release-service/20.12.1/calendarsupport-20.12.1.tar.xz) = 37738b20a369350d90cec17d186927e5dd9f092e88952886b9787fd3b7908ca9 +SIZE (KDE/release-service/20.12.1/calendarsupport-20.12.1.tar.xz) = 664960 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 560804) +++ head/net/eventviews/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/eventviews-20.12.0.tar.xz) = 0188442796414e1a61aa75b0dbd0dfd11d001d3f82aee05f3a7ad6cdcdff336e -SIZE (KDE/release-service/20.12.0/eventviews-20.12.0.tar.xz) = 443740 +TIMESTAMP = 1610047933 +SHA256 (KDE/release-service/20.12.1/eventviews-20.12.1.tar.xz) = 4c2afd40bdfa513dc09742f8aff6e0163daa5fe9a267db4a9770f915fa43d882 +SIZE (KDE/release-service/20.12.1/eventviews-20.12.1.tar.xz) = 444104 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 560804) +++ head/net/incidenceeditor/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/incidenceeditor-20.12.0.tar.xz) = 2e07739795a0c32039c3ee087723df4e613829897aa8ed71e3ce4156dd11f16a -SIZE (KDE/release-service/20.12.0/incidenceeditor-20.12.0.tar.xz) = 546264 +TIMESTAMP = 1610047912 +SHA256 (KDE/release-service/20.12.1/incidenceeditor-20.12.1.tar.xz) = 4ce16a4dbbf17a6427e2493968a4dc7ab3a1c85204f6fb38947d2b1d75f0bec1 +SIZE (KDE/release-service/20.12.1/incidenceeditor-20.12.1.tar.xz) = 546120 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 560804) +++ head/net/kalarmcal/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kalarmcal-20.12.0.tar.xz) = 7a6c76edfafbfc10b3f392ce05eca4921904df321c395dbc9a5b036439c924d6 -SIZE (KDE/release-service/20.12.0/kalarmcal-20.12.0.tar.xz) = 576024 +TIMESTAMP = 1610047939 +SHA256 (KDE/release-service/20.12.1/kalarmcal-20.12.1.tar.xz) = 45f3aca13d0c124bd3c057503a67d6a0a189cd80e6f4a3f331170857055e8e80 +SIZE (KDE/release-service/20.12.1/kalarmcal-20.12.1.tar.xz) = 576460 Index: head/net/kalarmcal/pkg-plist =================================================================== --- head/net/kalarmcal/pkg-plist (revision 560804) +++ head/net/kalarmcal/pkg-plist (revision 560805) @@ -1,136 +1,137 @@ include/KF5/KAlarmCal/KAlarmCal/Akonadi include/KF5/KAlarmCal/KAlarmCal/AlarmText include/KF5/KAlarmCal/KAlarmCal/CollectionAttribute include/KF5/KAlarmCal/KAlarmCal/CompatibilityAttribute include/KF5/KAlarmCal/KAlarmCal/DateTime include/KF5/KAlarmCal/KAlarmCal/EventAttribute include/KF5/KAlarmCal/KAlarmCal/Identities include/KF5/KAlarmCal/KAlarmCal/KACalendar include/KF5/KAlarmCal/KAlarmCal/KADateTime include/KF5/KAlarmCal/KAlarmCal/KAEvent include/KF5/KAlarmCal/KAlarmCal/KARecurrence include/KF5/KAlarmCal/KAlarmCal/Repetition include/KF5/KAlarmCal/KAlarmCal/Version include/KF5/KAlarmCal/kalarmcal/akonadi.h include/KF5/KAlarmCal/kalarmcal/alarmtext.h include/KF5/KAlarmCal/kalarmcal/collectionattribute.h include/KF5/KAlarmCal/kalarmcal/compatibilityattribute.h include/KF5/KAlarmCal/kalarmcal/datetime.h include/KF5/KAlarmCal/kalarmcal/eventattribute.h include/KF5/KAlarmCal/kalarmcal/identities.h include/KF5/KAlarmCal/kalarmcal/kacalendar.h include/KF5/KAlarmCal/kalarmcal/kadatetime.h include/KF5/KAlarmCal/kalarmcal/kaevent.h include/KF5/KAlarmCal/kalarmcal/kalarmcal_export.h include/KF5/KAlarmCal/kalarmcal/karecurrence.h include/KF5/KAlarmCal/kalarmcal/repetition.h include/KF5/KAlarmCal/kalarmcal/version.h include/KF5/kalarmcal_version.h lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarConfig.cmake lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarConfigVersion.cmake lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarTargets.cmake lib/libKF5AlarmCalendar.so lib/libKF5AlarmCalendar.so.5 lib/libKF5AlarmCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KAlarmCal.pri %%QT_PLUGINDIR%%/akonadi_serializer_kalarm.so share/akonadi/plugins/serializer/akonadi_serializer_kalarm.desktop share/locale/ar/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ar/LC_MESSAGES/libkalarmcal5.mo share/locale/bg/LC_MESSAGES/libkalarmcal5.mo share/locale/bs/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/bs/LC_MESSAGES/libkalarmcal5.mo share/locale/ca/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ca/LC_MESSAGES/libkalarmcal5.mo share/locale/ca@valencia/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libkalarmcal5.mo share/locale/cs/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/cs/LC_MESSAGES/libkalarmcal5.mo share/locale/da/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/da/LC_MESSAGES/libkalarmcal5.mo share/locale/de/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/de/LC_MESSAGES/libkalarmcal5.mo share/locale/el/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/el/LC_MESSAGES/libkalarmcal5.mo share/locale/en_GB/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/en_GB/LC_MESSAGES/libkalarmcal5.mo share/locale/eo/LC_MESSAGES/libkalarmcal5.mo share/locale/es/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/es/LC_MESSAGES/libkalarmcal5.mo share/locale/et/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/et/LC_MESSAGES/libkalarmcal5.mo share/locale/eu/LC_MESSAGES/libkalarmcal5.mo share/locale/fa/LC_MESSAGES/libkalarmcal5.mo share/locale/fi/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/fi/LC_MESSAGES/libkalarmcal5.mo share/locale/fr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/fr/LC_MESSAGES/libkalarmcal5.mo share/locale/ga/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ga/LC_MESSAGES/libkalarmcal5.mo share/locale/gl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/gl/LC_MESSAGES/libkalarmcal5.mo share/locale/he/LC_MESSAGES/libkalarmcal5.mo share/locale/hi/LC_MESSAGES/libkalarmcal5.mo share/locale/hr/LC_MESSAGES/libkalarmcal5.mo share/locale/hu/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/hu/LC_MESSAGES/libkalarmcal5.mo share/locale/ia/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ia/LC_MESSAGES/libkalarmcal5.mo share/locale/is/LC_MESSAGES/libkalarmcal5.mo share/locale/it/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/it/LC_MESSAGES/libkalarmcal5.mo share/locale/ja/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ja/LC_MESSAGES/libkalarmcal5.mo share/locale/kk/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/kk/LC_MESSAGES/libkalarmcal5.mo share/locale/km/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/km/LC_MESSAGES/libkalarmcal5.mo share/locale/ko/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ko/LC_MESSAGES/libkalarmcal5.mo share/locale/lt/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/lt/LC_MESSAGES/libkalarmcal5.mo share/locale/lv/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/lv/LC_MESSAGES/libkalarmcal5.mo share/locale/mr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/mr/LC_MESSAGES/libkalarmcal5.mo share/locale/nb/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nb/LC_MESSAGES/libkalarmcal5.mo share/locale/nds/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nds/LC_MESSAGES/libkalarmcal5.mo share/locale/nl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nl/LC_MESSAGES/libkalarmcal5.mo +share/locale/nn/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nn/LC_MESSAGES/libkalarmcal5.mo share/locale/pa/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pa/LC_MESSAGES/libkalarmcal5.mo share/locale/pl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pl/LC_MESSAGES/libkalarmcal5.mo share/locale/pt/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pt/LC_MESSAGES/libkalarmcal5.mo share/locale/pt_BR/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libkalarmcal5.mo share/locale/ro/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ro/LC_MESSAGES/libkalarmcal5.mo share/locale/ru/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ru/LC_MESSAGES/libkalarmcal5.mo share/locale/sk/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sk/LC_MESSAGES/libkalarmcal5.mo share/locale/sl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sl/LC_MESSAGES/libkalarmcal5.mo share/locale/sr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sr/LC_MESSAGES/libkalarmcal5.mo share/locale/sv/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sv/LC_MESSAGES/libkalarmcal5.mo share/locale/tr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/tr/LC_MESSAGES/libkalarmcal5.mo share/locale/ug/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ug/LC_MESSAGES/libkalarmcal5.mo share/locale/uk/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/uk/LC_MESSAGES/libkalarmcal5.mo share/locale/wa/LC_MESSAGES/libkalarmcal5.mo share/locale/zh_CN/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libkalarmcal5.mo share/locale/zh_TW/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libkalarmcal5.mo share/qlogging-categories5/kalarmcal.categories share/qlogging-categories5/kalarmcal.renamecategories Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 560804) +++ head/net/kcalutils/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kcalutils-20.12.0.tar.xz) = c89cc5278e2701ac25445b0cb637468b26a3d54da1f81d67b9b49920017f70bf -SIZE (KDE/release-service/20.12.0/kcalutils-20.12.0.tar.xz) = 324776 +TIMESTAMP = 1610047897 +SHA256 (KDE/release-service/20.12.1/kcalutils-20.12.1.tar.xz) = baebb2b8d3f1bf7d46b284ee255caf8668da48eb28251efb5d380ca7914dfc2c +SIZE (KDE/release-service/20.12.1/kcalutils-20.12.1.tar.xz) = 324412 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 560804) +++ head/net/kdenetwork-filesharing/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kdenetwork-filesharing-20.12.0.tar.xz) = cc0f8554e3b0ed2654d7bcfddad1fd8b5714b1852458b66775b7bcf7e9df565d -SIZE (KDE/release-service/20.12.0/kdenetwork-filesharing-20.12.0.tar.xz) = 345004 +TIMESTAMP = 1610047929 +SHA256 (KDE/release-service/20.12.1/kdenetwork-filesharing-20.12.1.tar.xz) = 9b2df94b69133a2e5a524ca54bcadc2791002d1d8b8c0ef0624d4efcda2eb12b +SIZE (KDE/release-service/20.12.1/kdenetwork-filesharing-20.12.1.tar.xz) = 346664 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 560804) +++ head/net/kget/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kget-20.12.0.tar.xz) = c67b7968f2d9bbc3528042b5fc899066783789e4d98ba4b6fe51d4030564ec59 -SIZE (KDE/release-service/20.12.0/kget-20.12.0.tar.xz) = 5583908 +TIMESTAMP = 1610047924 +SHA256 (KDE/release-service/20.12.1/kget-20.12.1.tar.xz) = 0ae245a6df334d3f397153af8eb265f029f89a5f75b9d5213772d09fdde5480f +SIZE (KDE/release-service/20.12.1/kget-20.12.1.tar.xz) = 5583860 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 560804) +++ head/net/kidentitymanagement/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kidentitymanagement-20.12.0.tar.xz) = 1063a222119a7ac5197f3adb7367eb7a5ce562da7303b899c6f964d59f103d91 -SIZE (KDE/release-service/20.12.0/kidentitymanagement-20.12.0.tar.xz) = 152036 +TIMESTAMP = 1610047909 +SHA256 (KDE/release-service/20.12.1/kidentitymanagement-20.12.1.tar.xz) = c9d3a6aa4bef1b3864e7c5dd8def3f323c086321d9cedd142c131fcf574714b9 +SIZE (KDE/release-service/20.12.1/kidentitymanagement-20.12.1.tar.xz) = 152040 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 560804) +++ head/net/kimap/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kimap-20.12.0.tar.xz) = d2f355e11f61bc25dc448b2943824940e34f918803b5af0e0079d7a914575354 -SIZE (KDE/release-service/20.12.0/kimap-20.12.0.tar.xz) = 124644 +TIMESTAMP = 1610047921 +SHA256 (KDE/release-service/20.12.1/kimap-20.12.1.tar.xz) = 9bd0b19ec6f8bacb6cf6d2e47949eaa470dde4a7359fd8da1d3cebb1ea55d4f4 +SIZE (KDE/release-service/20.12.1/kimap-20.12.1.tar.xz) = 124680 Index: head/net/kio-gdrive/distinfo =================================================================== --- head/net/kio-gdrive/distinfo (revision 560804) +++ head/net/kio-gdrive/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111060 -SHA256 (KDE/release-service/20.12.0/kio-gdrive-20.12.0.tar.xz) = 332e60ae9df25cc40b31e7afabc0dc0cadc4129a9204832e5d93cdab4746e52e -SIZE (KDE/release-service/20.12.0/kio-gdrive-20.12.0.tar.xz) = 64216 +TIMESTAMP = 1610047903 +SHA256 (KDE/release-service/20.12.1/kio-gdrive-20.12.1.tar.xz) = e07ef1431b2d9b7e12d9c09483c31f1f321351fc88177d1450d7b18c4640b02b +SIZE (KDE/release-service/20.12.1/kio-gdrive-20.12.1.tar.xz) = 64380 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 560804) +++ head/net/kitinerary/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kitinerary-20.12.0.tar.xz) = 74a11aacd790f86a5b99de152cfcd329b0c2a7697ae6f3c6f3e80fd250f87393 -SIZE (KDE/release-service/20.12.0/kitinerary-20.12.0.tar.xz) = 1809820 +TIMESTAMP = 1610047935 +SHA256 (KDE/release-service/20.12.1/kitinerary-20.12.1.tar.xz) = bffb0e0873d31166b98c4e145b6e39b90c8c545404f866d3e0d9f435e368f21f +SIZE (KDE/release-service/20.12.1/kitinerary-20.12.1.tar.xz) = 1809348 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 560804) +++ head/net/kldap/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kldap-20.12.0.tar.xz) = 938c6dfd79fcfb02aac1b08467bceab99994f861197fef82694dfa6eb3b44b02 -SIZE (KDE/release-service/20.12.0/kldap-20.12.0.tar.xz) = 164416 +TIMESTAMP = 1610047918 +SHA256 (KDE/release-service/20.12.1/kldap-20.12.1.tar.xz) = 63923db7e4a8985a3f2c6020e232ef62f20e89ccbf210966402db820d384840b +SIZE (KDE/release-service/20.12.1/kldap-20.12.1.tar.xz) = 164580 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 560804) +++ head/net/kmailtransport/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kmailtransport-20.12.0.tar.xz) = 3ead5834ecb409f04114b30656ac8849f118929dd88cd5b120338e1c50b0bc1c -SIZE (KDE/release-service/20.12.0/kmailtransport-20.12.0.tar.xz) = 168224 +TIMESTAMP = 1610047902 +SHA256 (KDE/release-service/20.12.1/kmailtransport-20.12.1.tar.xz) = 95dea10d1b4b0f2c3abc2bce14ea9400745214ec8500bb0d3e34f63b61752422 +SIZE (KDE/release-service/20.12.1/kmailtransport-20.12.1.tar.xz) = 168208 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 560804) +++ head/net/kmbox/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kmbox-20.12.0.tar.xz) = c7f32faa9b9a6424c2fa063c9b0b84c3a250a7fcd37a056e3f3997428fd28ed3 -SIZE (KDE/release-service/20.12.0/kmbox-20.12.0.tar.xz) = 24788 +TIMESTAMP = 1610047914 +SHA256 (KDE/release-service/20.12.1/kmbox-20.12.1.tar.xz) = 0d6fc76613d5cc84ecc0764cef68458ffa99aba6c230981aabf342abf01327f0 +SIZE (KDE/release-service/20.12.1/kmbox-20.12.1.tar.xz) = 24792 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 560804) +++ head/net/kmime/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kmime-20.12.0.tar.xz) = 03375fd4963ad87c675b091c82e4d4ecfd5b17ed513964f7567a38e6b33caf64 -SIZE (KDE/release-service/20.12.0/kmime-20.12.0.tar.xz) = 150892 +TIMESTAMP = 1610047928 +SHA256 (KDE/release-service/20.12.1/kmime-20.12.1.tar.xz) = 4299c59e65a4c74e5104d2349d3ce6eabc782be9a5008d1b882b2da210ac2543 +SIZE (KDE/release-service/20.12.1/kmime-20.12.1.tar.xz) = 150860 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 560804) +++ head/net/kontactinterface/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kontactinterface-20.12.0.tar.xz) = cf947c8cde12af33c25bd1fcca9a7f25828b75b25c38ea5250a1b4a9d5d188bb -SIZE (KDE/release-service/20.12.0/kontactinterface-20.12.0.tar.xz) = 36052 +TIMESTAMP = 1610047922 +SHA256 (KDE/release-service/20.12.1/kontactinterface-20.12.1.tar.xz) = 923c18164e5973494cb30a0dc407714a3895895c241a43b44f5ae4b8797db469 +SIZE (KDE/release-service/20.12.1/kontactinterface-20.12.1.tar.xz) = 36076 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 560804) +++ head/net/kpimtextedit/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kpimtextedit-20.12.0.tar.xz) = 64fb748137768b0450c202dfccaf085eb5711b5394283b73c39bc4a2c0a269e6 -SIZE (KDE/release-service/20.12.0/kpimtextedit-20.12.0.tar.xz) = 201128 +TIMESTAMP = 1610047907 +SHA256 (KDE/release-service/20.12.1/kpimtextedit-20.12.1.tar.xz) = 64a532c9cefbc9127c51c92c4820b4f1d9240c1e588652c3ee1620ae3536a296 +SIZE (KDE/release-service/20.12.1/kpimtextedit-20.12.1.tar.xz) = 201312 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 560804) +++ head/net/krdc/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/krdc-20.12.0.tar.xz) = c5c73594018f3774ff828ff0e90c22e79bf5b7a9a41447b2d8bd27c6eee62b4a -SIZE (KDE/release-service/20.12.0/krdc-20.12.0.tar.xz) = 1563948 +TIMESTAMP = 1610047925 +SHA256 (KDE/release-service/20.12.1/krdc-20.12.1.tar.xz) = b091bd12375199aee52a6cca97d715bbd2854f1794ed4e817322b65234ccfd18 +SIZE (KDE/release-service/20.12.1/krdc-20.12.1.tar.xz) = 1563980 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 560804) +++ head/net/krfb/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/krfb-20.12.0.tar.xz) = 8327804ccbdffefa7cc29f64d953d423843abe33e2af62d2a367a0645ea42e54 -SIZE (KDE/release-service/20.12.0/krfb-20.12.0.tar.xz) = 1280748 +TIMESTAMP = 1610047920 +SHA256 (KDE/release-service/20.12.1/krfb-20.12.1.tar.xz) = 46763c61ba8ea958dbebee4ad244f789e654a11ff3314ce0e4e4a5c82c68dd5d +SIZE (KDE/release-service/20.12.1/krfb-20.12.1.tar.xz) = 1280616 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 560804) +++ head/net/ksmtp/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ksmtp-20.12.0.tar.xz) = 39682dc5464fd269c75eb67a363ae438ed1e3e0af0d1cb6a742dd6fe17e437f7 -SIZE (KDE/release-service/20.12.0/ksmtp-20.12.0.tar.xz) = 43076 +TIMESTAMP = 1610047915 +SHA256 (KDE/release-service/20.12.1/ksmtp-20.12.1.tar.xz) = affb69fb3efcd8a1eb761906bd01cfd250eac412f95668ac20674207d96350f9 +SIZE (KDE/release-service/20.12.1/ksmtp-20.12.1.tar.xz) = 43084 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 560804) +++ head/net/ktnef/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktnef-20.12.0.tar.xz) = 755307e99f7ced99695a19d3beceb074c0479db2670b8feed3c25b5b1f274f97 -SIZE (KDE/release-service/20.12.0/ktnef-20.12.0.tar.xz) = 299880 +TIMESTAMP = 1610047942 +SHA256 (KDE/release-service/20.12.1/ktnef-20.12.1.tar.xz) = cd9155107c2358d0c03ffdd22d9eeba6931ab9cbb9481e05ed97be0397aa04df +SIZE (KDE/release-service/20.12.1/ktnef-20.12.1.tar.xz) = 299884 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 560804) +++ head/net/libgravatar/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/libgravatar-20.12.0.tar.xz) = 8800c4a5270725abcaa1bc2c1739e5f5e8a56e403419581946dee7994a1df375 -SIZE (KDE/release-service/20.12.0/libgravatar-20.12.0.tar.xz) = 31112 +TIMESTAMP = 1610047940 +SHA256 (KDE/release-service/20.12.1/libgravatar-20.12.1.tar.xz) = 327d019bd0d1cb4c4517a3b6608b979ffd81e112216cf682f14e7307ee717e89 +SIZE (KDE/release-service/20.12.1/libgravatar-20.12.1.tar.xz) = 31116 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 560804) +++ head/net/libkgapi/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkgapi-20.12.0.tar.xz) = da3f183df9ae5efde8244a0558203a27d0905e94b6af8721e570ad9820c31009 -SIZE (KDE/release-service/20.12.0/libkgapi-20.12.0.tar.xz) = 245920 +TIMESTAMP = 1610047900 +SHA256 (KDE/release-service/20.12.1/libkgapi-20.12.1.tar.xz) = 0df9a24e68d50f67e171ff5c6404891956c7fe675351bda8f8ab2a84ffa2a833 +SIZE (KDE/release-service/20.12.1/libkgapi-20.12.1.tar.xz) = 246024 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 560804) +++ head/net/libksieve/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/libksieve-20.12.0.tar.xz) = 45698fe9b04b1c400094aef80920acbbf9a811e64db5a3ea3d821cc7c1578da7 -SIZE (KDE/release-service/20.12.0/libksieve-20.12.0.tar.xz) = 558268 +TIMESTAMP = 1610047931 +SHA256 (KDE/release-service/20.12.1/libksieve-20.12.1.tar.xz) = bfdd5e2602ebfb568978be45fe75fa77d4738bcca1dca96ff1cda1419b66ef1f +SIZE (KDE/release-service/20.12.1/libksieve-20.12.1.tar.xz) = 558192 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 560804) +++ head/net/mailcommon/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/mailcommon-20.12.0.tar.xz) = d5601ae3b93f37216c726b8b0173b7af2023a29e9116c3c3fcf574cd944b76ce -SIZE (KDE/release-service/20.12.0/mailcommon-20.12.0.tar.xz) = 723588 +TIMESTAMP = 1610047927 +SHA256 (KDE/release-service/20.12.1/mailcommon-20.12.1.tar.xz) = 680c0592555a80211dcda96edb4ffde94f392bc6e7437c8490545a1206352da4 +SIZE (KDE/release-service/20.12.1/mailcommon-20.12.1.tar.xz) = 723516 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 560804) +++ head/net/mailimporter/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/mailimporter-20.12.0.tar.xz) = 7b7b184ce4d9e59686f9d87c6e86869bae3dfec6e44d9af3370febc3bc206b73 -SIZE (KDE/release-service/20.12.0/mailimporter-20.12.0.tar.xz) = 548588 +TIMESTAMP = 1610047926 +SHA256 (KDE/release-service/20.12.1/mailimporter-20.12.1.tar.xz) = ac4b84cc505da734cdb8ed8cfc208029c44c08d57e5bdefb27ec46caef640d4b +SIZE (KDE/release-service/20.12.1/mailimporter-20.12.1.tar.xz) = 548580 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 560804) +++ head/net/messagelib/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/messagelib-20.12.0.tar.xz) = b0a126d2544b3cdfb025caca6374dad2708e9112fe4118f8a94684a9c15fc3f1 -SIZE (KDE/release-service/20.12.0/messagelib-20.12.0.tar.xz) = 10531452 +TIMESTAMP = 1610047938 +SHA256 (KDE/release-service/20.12.1/messagelib-20.12.1.tar.xz) = c77b7f87fceea1c0eda3ce540e6ffc4ed7155c8984cbbed189deeb09903e507a +SIZE (KDE/release-service/20.12.1/messagelib-20.12.1.tar.xz) = 10536068 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 560804) +++ head/net/pimcommon/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/pimcommon-20.12.0.tar.xz) = 54c6e51730bc10c67bade70a67f2500aa4fe4d2db32572bff3fecc4f7ab85c5c -SIZE (KDE/release-service/20.12.0/pimcommon-20.12.0.tar.xz) = 361936 +TIMESTAMP = 1610047911 +SHA256 (KDE/release-service/20.12.1/pimcommon-20.12.1.tar.xz) = a7644e6a49b5fc29ff729ff688b841031b6d5d0f90e61e06eddb62ad77ddaaf0 +SIZE (KDE/release-service/20.12.1/pimcommon-20.12.1.tar.xz) = 364268 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 560804) +++ head/net/zeroconf-ioslave/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/zeroconf-ioslave-20.12.0.tar.xz) = 04d70b4b504ff157dfb7c98a0512fe066d8ff901394883064626396c4dff9d14 -SIZE (KDE/release-service/20.12.0/zeroconf-ioslave-20.12.0.tar.xz) = 43288 +TIMESTAMP = 1610047917 +SHA256 (KDE/release-service/20.12.1/zeroconf-ioslave-20.12.1.tar.xz) = 5ad187609b0c93f3f405113c50cd1afdb54517f0ffe9b3ed50db439c1f26a9d3 +SIZE (KDE/release-service/20.12.1/zeroconf-ioslave-20.12.1.tar.xz) = 43216 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 560804) +++ head/net-im/kaccounts-integration/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kaccounts-integration-20.12.0.tar.xz) = 5bc0d40fd52a01bf6d80f7d2db54414dc5bcbf693d1c01e8546e1adaf9137f8d -SIZE (KDE/release-service/20.12.0/kaccounts-integration-20.12.0.tar.xz) = 84004 +TIMESTAMP = 1610047946 +SHA256 (KDE/release-service/20.12.1/kaccounts-integration-20.12.1.tar.xz) = 22d5879dff70075092748ae04575de7bd7df025eb9a9298bb39d7027601cbe07 +SIZE (KDE/release-service/20.12.1/kaccounts-integration-20.12.1.tar.xz) = 84360 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 560804) +++ head/net-im/kaccounts-providers/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kaccounts-providers-20.12.0.tar.xz) = 77f4394b47e9787f6683dec5519d2118997baa32abcc1a09fbe4b2602d003bdd -SIZE (KDE/release-service/20.12.0/kaccounts-providers-20.12.0.tar.xz) = 61396 +TIMESTAMP = 1610047945 +SHA256 (KDE/release-service/20.12.1/kaccounts-providers-20.12.1.tar.xz) = 78a32db7363b44dae0670f50c68febea6698f57ef3d676a745eb542e87c96fb8 +SIZE (KDE/release-service/20.12.1/kaccounts-providers-20.12.1.tar.xz) = 61616 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 560804) +++ head/net-im/kopete/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kopete-20.12.0.tar.xz) = f6d3daf864004b5739c967c49c30bef1ca8fc5b266977705379499a1b2d7feda -SIZE (KDE/release-service/20.12.0/kopete-20.12.0.tar.xz) = 9380508 +TIMESTAMP = 1610047948 +SHA256 (KDE/release-service/20.12.1/kopete-20.12.1.tar.xz) = d459b794cbc8533b767e5215a3a425dd855930a18310fe33875755aae4a0cbb1 +SIZE (KDE/release-service/20.12.1/kopete-20.12.1.tar.xz) = 9380272 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 560804) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktp-accounts-kcm-20.12.0.tar.xz) = a3229b8619a01f96bc7683deec8b838278efdf96dcea98c00d47b5524704c6fd -SIZE (KDE/release-service/20.12.0/ktp-accounts-kcm-20.12.0.tar.xz) = 262192 +TIMESTAMP = 1610047944 +SHA256 (KDE/release-service/20.12.1/ktp-accounts-kcm-20.12.1.tar.xz) = a3782185087f7b3289542fea666dbc61e5675be4be9bbb0a447d0098b3d08010 +SIZE (KDE/release-service/20.12.1/ktp-accounts-kcm-20.12.1.tar.xz) = 262240 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 560804) +++ head/net-im/ktp-approver/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ktp-approver-20.12.0.tar.xz) = f29357db106e493a2f32be6c64201aeeba0c21e64c349df9f5f0c9e8de547239 -SIZE (KDE/release-service/20.12.0/ktp-approver-20.12.0.tar.xz) = 37332 +TIMESTAMP = 1610047954 +SHA256 (KDE/release-service/20.12.1/ktp-approver-20.12.1.tar.xz) = 53009296260fa21f6b2ca3730874b72f586f8d12117c1b69f6f97b2837becf93 +SIZE (KDE/release-service/20.12.1/ktp-approver-20.12.1.tar.xz) = 37296 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 560804) +++ head/net-im/ktp-auth-handler/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktp-auth-handler-20.12.0.tar.xz) = 9b414f1eeb7b3ceecf357f4feabc8a963bab372fc0c4c3f36d7a890cf1883b18 -SIZE (KDE/release-service/20.12.0/ktp-auth-handler-20.12.0.tar.xz) = 46412 +TIMESTAMP = 1610047957 +SHA256 (KDE/release-service/20.12.1/ktp-auth-handler-20.12.1.tar.xz) = 4773c0bbfd98da5ceda505d657c416601d945ea808c93f065d789e92f08ddaaf +SIZE (KDE/release-service/20.12.1/ktp-auth-handler-20.12.1.tar.xz) = 46380 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 560804) +++ head/net-im/ktp-call-ui/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktp-call-ui-20.12.0.tar.xz) = 2deabfe55dcc55c2342e2fd2281f040fcd3a4f979b4f5a0f6ff9ff907784110a -SIZE (KDE/release-service/20.12.0/ktp-call-ui-20.12.0.tar.xz) = 97264 +TIMESTAMP = 1610047949 +SHA256 (KDE/release-service/20.12.1/ktp-call-ui-20.12.1.tar.xz) = 5e234091e9fae1063d15563af2eb38774c105ce7ae6840a81a02594ad07b9f94 +SIZE (KDE/release-service/20.12.1/ktp-call-ui-20.12.1.tar.xz) = 97256 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 560804) +++ head/net-im/ktp-common-internals/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktp-common-internals-20.12.0.tar.xz) = f8e893bb3aa2cf72dc6408105935751d7c9a97aa414cd7ab449e6d3d8a6b433f -SIZE (KDE/release-service/20.12.0/ktp-common-internals-20.12.0.tar.xz) = 449560 +TIMESTAMP = 1610047956 +SHA256 (KDE/release-service/20.12.1/ktp-common-internals-20.12.1.tar.xz) = 2654bfdf2ce844d712f1f3f4d9e255a7b4b9d4f2c46d8c9c1bea75c6b80f14b9 +SIZE (KDE/release-service/20.12.1/ktp-common-internals-20.12.1.tar.xz) = 449508 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 560804) +++ head/net-im/ktp-contact-list/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktp-contact-list-20.12.0.tar.xz) = a40a66654a88895834f89a67fea6874a7d623eb5390440b6dfd6076c83ab7a87 -SIZE (KDE/release-service/20.12.0/ktp-contact-list-20.12.0.tar.xz) = 150284 +TIMESTAMP = 1610047951 +SHA256 (KDE/release-service/20.12.1/ktp-contact-list-20.12.1.tar.xz) = 9210bdebe2f30a436c1af9f6f5f277d04cbb348df6d1bbea99bb626e6e175788 +SIZE (KDE/release-service/20.12.1/ktp-contact-list-20.12.1.tar.xz) = 150236 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 560804) +++ head/net-im/ktp-contact-runner/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ktp-contact-runner-20.12.0.tar.xz) = fec5769b48b9edefd594a1f49a671bf7bc77191e481e48bc795c2f4866f1ec5b -SIZE (KDE/release-service/20.12.0/ktp-contact-runner-20.12.0.tar.xz) = 43152 +TIMESTAMP = 1610047952 +SHA256 (KDE/release-service/20.12.1/ktp-contact-runner-20.12.1.tar.xz) = 4b12840563d5746e9a784a443c92d52af1d3c65ed74951e3c54a71596db812f1 +SIZE (KDE/release-service/20.12.1/ktp-contact-runner-20.12.1.tar.xz) = 43124 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 560804) +++ head/net-im/ktp-desktop-applets/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ktp-desktop-applets-20.12.0.tar.xz) = e7eacd6cf7cd5600be8aec7cb40c2dffb714025c14586f2957ee692da5b7c168 -SIZE (KDE/release-service/20.12.0/ktp-desktop-applets-20.12.0.tar.xz) = 43688 +TIMESTAMP = 1610047959 +SHA256 (KDE/release-service/20.12.1/ktp-desktop-applets-20.12.1.tar.xz) = e4ac2cfeccc6fd31dab806ebde58a3551c6ee4750ed625467547cc59f0d97b7c +SIZE (KDE/release-service/20.12.1/ktp-desktop-applets-20.12.1.tar.xz) = 43672 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 560804) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktp-filetransfer-handler-20.12.0.tar.xz) = f2082fca6c70f5b6ccc30163b47a2d12cc0e149d4a46066fd7d412965d2a9004 -SIZE (KDE/release-service/20.12.0/ktp-filetransfer-handler-20.12.0.tar.xz) = 46180 +TIMESTAMP = 1610047950 +SHA256 (KDE/release-service/20.12.1/ktp-filetransfer-handler-20.12.1.tar.xz) = 035fcca43e07f621c15eab5ba54d7614ea94fef5a065feeb31b365d86550102d +SIZE (KDE/release-service/20.12.1/ktp-filetransfer-handler-20.12.1.tar.xz) = 46180 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 560804) +++ head/net-im/ktp-kded-module/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ktp-kded-module-20.12.0.tar.xz) = 56e8dbb1673801c99e9760e1de2e61303d155d3ca813b5967512c7f4a004716d -SIZE (KDE/release-service/20.12.0/ktp-kded-module-20.12.0.tar.xz) = 98332 +TIMESTAMP = 1610047955 +SHA256 (KDE/release-service/20.12.1/ktp-kded-module-20.12.1.tar.xz) = 0e4794bcff670c4bb56c2c030232743d66dc913a2b0b99cbd389ab37e42d6bc1 +SIZE (KDE/release-service/20.12.1/ktp-kded-module-20.12.1.tar.xz) = 98268 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 560804) +++ head/net-im/ktp-send-file/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ktp-send-file-20.12.0.tar.xz) = 3f97d06b4b8a924e1ea9fa96f24e0d8d93e5c5cf872612103e36550663657448 -SIZE (KDE/release-service/20.12.0/ktp-send-file-20.12.0.tar.xz) = 27864 +TIMESTAMP = 1610047953 +SHA256 (KDE/release-service/20.12.1/ktp-send-file-20.12.1.tar.xz) = 01333d93b6ff928b76f8edd40f6c35fbd743c4ff0286f375ebbe406180c2eeed +SIZE (KDE/release-service/20.12.1/ktp-send-file-20.12.1.tar.xz) = 27824 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 560804) +++ head/net-im/ktp-text-ui/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ktp-text-ui-20.12.0.tar.xz) = 25fd230f5fb4e688750df6fa13953c1b398372fe4846ba65541693d4e74cc395 -SIZE (KDE/release-service/20.12.0/ktp-text-ui-20.12.0.tar.xz) = 471344 +TIMESTAMP = 1610047958 +SHA256 (KDE/release-service/20.12.1/ktp-text-ui-20.12.1.tar.xz) = c1b0426b7fa2a9b36bf93e3128a50225a3402e74a13c4de27ab9624ef6159d8d +SIZE (KDE/release-service/20.12.1/ktp-text-ui-20.12.1.tar.xz) = 471364 Index: head/net-p2p/ktorrent/distinfo =================================================================== --- head/net-p2p/ktorrent/distinfo (revision 560804) +++ head/net-p2p/ktorrent/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktorrent-20.12.0.tar.xz) = e4b55c47ceea349e8cc248b74e27ae42c53cd48dc6bfcf416519c7bb5a399749 -SIZE (KDE/release-service/20.12.0/ktorrent-20.12.0.tar.xz) = 2140524 +TIMESTAMP = 1610047961 +SHA256 (KDE/release-service/20.12.1/ktorrent-20.12.1.tar.xz) = 8c5f52d9b4597c117c0ed189c2ada3b9716bc0d5ceb53fde66f6a009bee68354 +SIZE (KDE/release-service/20.12.1/ktorrent-20.12.1.tar.xz) = 2141692 Index: head/net-p2p/libktorrent/distinfo =================================================================== --- head/net-p2p/libktorrent/distinfo (revision 560804) +++ head/net-p2p/libktorrent/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/libktorrent-20.12.0.tar.xz) = 3780a29f401c02b1851d39fcad4697cc105371a70fefa28fde090830c66968e7 -SIZE (KDE/release-service/20.12.0/libktorrent-20.12.0.tar.xz) = 604492 +TIMESTAMP = 1610047960 +SHA256 (KDE/release-service/20.12.1/libktorrent-20.12.1.tar.xz) = bbaa68598993cf83e21d036b53b901efa190ea5e49b394ccc23f3e62c0caaca2 +SIZE (KDE/release-service/20.12.1/libktorrent-20.12.1.tar.xz) = 604508 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 560804) +++ head/print/print-manager/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/print-manager-20.12.0.tar.xz) = da373dbc907eda513ee8d41b8b2b3a118d390bae62b829c77076f63b1c3168d3 -SIZE (KDE/release-service/20.12.0/print-manager-20.12.0.tar.xz) = 258180 +TIMESTAMP = 1610047962 +SHA256 (KDE/release-service/20.12.1/print-manager-20.12.1.tar.xz) = de74a22b70fae943896d9e8b6bb75766370e3a44cc02492231ed05129720a4db +SIZE (KDE/release-service/20.12.1/print-manager-20.12.1.tar.xz) = 258608 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 560804) +++ head/science/kalzium/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kalzium-20.12.0.tar.xz) = aed26e1dde8393fc9bb1db15a4b9b611a472f27cce2b6cbf362466eded51ba8e -SIZE (KDE/release-service/20.12.0/kalzium-20.12.0.tar.xz) = 24521872 +TIMESTAMP = 1610047965 +SHA256 (KDE/release-service/20.12.1/kalzium-20.12.1.tar.xz) = 52dba6e638eedc6c5aaec01086123b16983aa8a907fb621b51aa0afc45c82ad8 +SIZE (KDE/release-service/20.12.1/kalzium-20.12.1.tar.xz) = 24522148 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 560804) +++ head/science/step/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/step-20.12.0.tar.xz) = 98d07be949cbca0d6088d3de2383d596a01f74c16fac73192478c34e1ebe8cc1 -SIZE (KDE/release-service/20.12.0/step-20.12.0.tar.xz) = 950848 +TIMESTAMP = 1610047964 +SHA256 (KDE/release-service/20.12.1/step-20.12.1.tar.xz) = 534487f90b31c45a68bc8a1697f8b44f35a26fae19ac9fcbb756a04cf627b217 +SIZE (KDE/release-service/20.12.1/step-20.12.1.tar.xz) = 952708 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 560804) +++ head/science/step/pkg-plist (revision 560805) @@ -1,1177 +1,1197 @@ bin/step 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/knsrcfiles/step.knsrc share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step.mo 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@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_example_files.mo share/locale/da/LC_MESSAGES/step_objinfo_files.mo share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_example_files.mo share/locale/de/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_example_files.mo share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/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/eo/LC_MESSAGES/step.mo 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/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo share/locale/eu/LC_MESSAGES/step.mo share/locale/eu/LC_MESSAGES/step_example_files.mo share/locale/eu/LC_MESSAGES/step_objinfo_files.mo share/locale/fi/LC_MESSAGES/step.mo 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/ga/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step.mo 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/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo share/locale/kk/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo share/locale/lv/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo share/locale/mr/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step.mo 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/nn/LC_MESSAGES/step.mo share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step.mo +share/locale/pl/LC_MESSAGES/step_objinfo_files.mo 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_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/ro/LC_MESSAGES/step.mo 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/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/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_objinfo_files.mo 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/tr/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step.mo 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/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_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/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/da/brownian.step %%DATADIR%%/examples/da/doublependulum.step %%DATADIR%%/examples/da/eightpendula.step %%DATADIR%%/examples/da/first.step %%DATADIR%%/examples/da/fourpendula.step %%DATADIR%%/examples/da/gas.step %%DATADIR%%/examples/da/graph.step %%DATADIR%%/examples/da/liquid.step %%DATADIR%%/examples/da/lissajous.step %%DATADIR%%/examples/da/motor.step %%DATADIR%%/examples/da/motor1.step %%DATADIR%%/examples/da/note.step %%DATADIR%%/examples/da/resonance.step %%DATADIR%%/examples/da/softbody.step %%DATADIR%%/examples/da/solar.step %%DATADIR%%/examples/da/springs.step %%DATADIR%%/examples/da/wave.step %%DATADIR%%/examples/de/brownian.step %%DATADIR%%/examples/de/doublependulum.step %%DATADIR%%/examples/de/eightpendula.step %%DATADIR%%/examples/de/first.step %%DATADIR%%/examples/de/fourpendula.step %%DATADIR%%/examples/de/gas.step %%DATADIR%%/examples/de/graph.step %%DATADIR%%/examples/de/liquid.step %%DATADIR%%/examples/de/lissajous.step %%DATADIR%%/examples/de/motor.step %%DATADIR%%/examples/de/motor1.step %%DATADIR%%/examples/de/note.step %%DATADIR%%/examples/de/resonance.step %%DATADIR%%/examples/de/softbody.step %%DATADIR%%/examples/de/solar.step %%DATADIR%%/examples/de/springs.step %%DATADIR%%/examples/de/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/el/brownian.step %%DATADIR%%/examples/el/doublependulum.step %%DATADIR%%/examples/el/eightpendula.step %%DATADIR%%/examples/el/first.step %%DATADIR%%/examples/el/fourpendula.step %%DATADIR%%/examples/el/gas.step %%DATADIR%%/examples/el/graph.step %%DATADIR%%/examples/el/liquid.step %%DATADIR%%/examples/el/lissajous.step %%DATADIR%%/examples/el/motor.step %%DATADIR%%/examples/el/motor1.step %%DATADIR%%/examples/el/note.step %%DATADIR%%/examples/el/resonance.step %%DATADIR%%/examples/el/softbody.step %%DATADIR%%/examples/el/solar.step %%DATADIR%%/examples/el/springs.step %%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/et/brownian.step %%DATADIR%%/examples/et/doublependulum.step %%DATADIR%%/examples/et/eightpendula.step %%DATADIR%%/examples/et/first.step %%DATADIR%%/examples/et/fourpendula.step %%DATADIR%%/examples/et/gas.step %%DATADIR%%/examples/et/graph.step %%DATADIR%%/examples/et/liquid.step %%DATADIR%%/examples/et/lissajous.step %%DATADIR%%/examples/et/motor.step %%DATADIR%%/examples/et/motor1.step %%DATADIR%%/examples/et/note.step %%DATADIR%%/examples/et/resonance.step %%DATADIR%%/examples/et/softbody.step %%DATADIR%%/examples/et/solar.step %%DATADIR%%/examples/et/springs.step %%DATADIR%%/examples/et/wave.step %%DATADIR%%/examples/eu/brownian.step %%DATADIR%%/examples/eu/doublependulum.step %%DATADIR%%/examples/eu/eightpendula.step %%DATADIR%%/examples/eu/first.step %%DATADIR%%/examples/eu/fourpendula.step %%DATADIR%%/examples/eu/gas.step %%DATADIR%%/examples/eu/graph.step %%DATADIR%%/examples/eu/liquid.step %%DATADIR%%/examples/eu/lissajous.step %%DATADIR%%/examples/eu/motor.step %%DATADIR%%/examples/eu/motor1.step %%DATADIR%%/examples/eu/note.step %%DATADIR%%/examples/eu/resonance.step %%DATADIR%%/examples/eu/softbody.step %%DATADIR%%/examples/eu/solar.step %%DATADIR%%/examples/eu/springs.step %%DATADIR%%/examples/eu/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/ja/brownian.step %%DATADIR%%/examples/ja/doublependulum.step %%DATADIR%%/examples/ja/eightpendula.step %%DATADIR%%/examples/ja/first.step %%DATADIR%%/examples/ja/fourpendula.step %%DATADIR%%/examples/ja/gas.step %%DATADIR%%/examples/ja/graph.step %%DATADIR%%/examples/ja/liquid.step %%DATADIR%%/examples/ja/lissajous.step %%DATADIR%%/examples/ja/motor.step %%DATADIR%%/examples/ja/motor1.step %%DATADIR%%/examples/ja/note.step %%DATADIR%%/examples/ja/resonance.step %%DATADIR%%/examples/ja/softbody.step %%DATADIR%%/examples/ja/solar.step %%DATADIR%%/examples/ja/springs.step %%DATADIR%%/examples/ja/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/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/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/eu/anchor.html %%DATADIR%%/objinfo/l10n/eu/box.html %%DATADIR%%/objinfo/l10n/eu/chargedparticle.html %%DATADIR%%/objinfo/l10n/eu/coulombforce.html %%DATADIR%%/objinfo/l10n/eu/disk.html %%DATADIR%%/objinfo/l10n/eu/gas.html %%DATADIR%%/objinfo/l10n/eu/gasljforce.html %%DATADIR%%/objinfo/l10n/eu/gasparticle.html %%DATADIR%%/objinfo/l10n/eu/gravitationforce.html %%DATADIR%%/objinfo/l10n/eu/linearmotor.html %%DATADIR%%/objinfo/l10n/eu/meter.html %%DATADIR%%/objinfo/l10n/eu/note.html %%DATADIR%%/objinfo/l10n/eu/particle.html %%DATADIR%%/objinfo/l10n/eu/pin.html %%DATADIR%%/objinfo/l10n/eu/polygon.html %%DATADIR%%/objinfo/l10n/eu/softbody.html %%DATADIR%%/objinfo/l10n/eu/spring.html %%DATADIR%%/objinfo/l10n/eu/weightforce.html %%DATADIR%%/objinfo/l10n/eu/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/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html +%%DATADIR%%/objinfo/l10n/pl/anchor.html +%%DATADIR%%/objinfo/l10n/pl/box.html +%%DATADIR%%/objinfo/l10n/pl/chargedparticle.html +%%DATADIR%%/objinfo/l10n/pl/coulombforce.html +%%DATADIR%%/objinfo/l10n/pl/disk.html +%%DATADIR%%/objinfo/l10n/pl/gas.html +%%DATADIR%%/objinfo/l10n/pl/gasljforce.html +%%DATADIR%%/objinfo/l10n/pl/gasparticle.html +%%DATADIR%%/objinfo/l10n/pl/gravitationforce.html +%%DATADIR%%/objinfo/l10n/pl/linearmotor.html +%%DATADIR%%/objinfo/l10n/pl/meter.html +%%DATADIR%%/objinfo/l10n/pl/note.html +%%DATADIR%%/objinfo/l10n/pl/particle.html +%%DATADIR%%/objinfo/l10n/pl/pin.html +%%DATADIR%%/objinfo/l10n/pl/polygon.html +%%DATADIR%%/objinfo/l10n/pl/softbody.html +%%DATADIR%%/objinfo/l10n/pl/spring.html +%%DATADIR%%/objinfo/l10n/pl/weightforce.html +%%DATADIR%%/objinfo/l10n/pl/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/sl/anchor.html %%DATADIR%%/objinfo/l10n/sl/box.html %%DATADIR%%/objinfo/l10n/sl/chargedparticle.html %%DATADIR%%/objinfo/l10n/sl/coulombforce.html %%DATADIR%%/objinfo/l10n/sl/disk.html %%DATADIR%%/objinfo/l10n/sl/gas.html %%DATADIR%%/objinfo/l10n/sl/gasljforce.html %%DATADIR%%/objinfo/l10n/sl/gasparticle.html %%DATADIR%%/objinfo/l10n/sl/gravitationforce.html %%DATADIR%%/objinfo/l10n/sl/linearmotor.html %%DATADIR%%/objinfo/l10n/sl/meter.html %%DATADIR%%/objinfo/l10n/sl/note.html %%DATADIR%%/objinfo/l10n/sl/particle.html %%DATADIR%%/objinfo/l10n/sl/pin.html %%DATADIR%%/objinfo/l10n/sl/polygon.html %%DATADIR%%/objinfo/l10n/sl/softbody.html %%DATADIR%%/objinfo/l10n/sl/spring.html %%DATADIR%%/objinfo/l10n/sl/weightforce.html %%DATADIR%%/objinfo/l10n/sl/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/eu/tutorial1.step %%DATADIR%%/tutorials/eu/tutorial2.step %%DATADIR%%/tutorials/eu/tutorial3.step %%DATADIR%%/tutorials/eu/tutorial4.step %%DATADIR%%/tutorials/eu/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 560804) +++ head/security/kgpg/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kgpg-20.12.0.tar.xz) = 8c21ad78039c7f8d7bcc5d3c25587533705e94c4c07552b36dc4e3340bfda66d -SIZE (KDE/release-service/20.12.0/kgpg-20.12.0.tar.xz) = 2884380 +TIMESTAMP = 1610047966 +SHA256 (KDE/release-service/20.12.1/kgpg-20.12.1.tar.xz) = 0af5cac559eaff20e09bb6b7009e40ffafbca66fc146064dcde37190fa6a9c17 +SIZE (KDE/release-service/20.12.1/kgpg-20.12.1.tar.xz) = 2884248 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 560804) +++ head/security/kleopatra/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kleopatra-20.12.0.tar.xz) = d99543b615b03381aa266677e81d690e57b2009d84e1a0b03f9a1ba697ce7bfc -SIZE (KDE/release-service/20.12.0/kleopatra-20.12.0.tar.xz) = 1998996 +TIMESTAMP = 1610047970 +SHA256 (KDE/release-service/20.12.1/kleopatra-20.12.1.tar.xz) = 869e4f7903647be8696f68ad8e2a01d89f4d085dfa6527b39f5006ba11ae06bc +SIZE (KDE/release-service/20.12.1/kleopatra-20.12.1.tar.xz) = 1999952 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 560804) +++ head/security/kpkpass/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kpkpass-20.12.0.tar.xz) = a337c2e374d1b2e820b921911484425aabd4fe864fd5c8103931b7294d3617ec -SIZE (KDE/release-service/20.12.0/kpkpass-20.12.0.tar.xz) = 23452 +TIMESTAMP = 1610047971 +SHA256 (KDE/release-service/20.12.1/kpkpass-20.12.1.tar.xz) = 22eb3cdbe71ed1135dc6463cd5468725dfb438fcb4d90844c9fedb97dc5b2d26 +SIZE (KDE/release-service/20.12.1/kpkpass-20.12.1.tar.xz) = 23464 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 560804) +++ head/security/kwalletmanager/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kwalletmanager-20.12.0.tar.xz) = 8253d2bdba00c8e016572296de60452fd0f82944e175d7914d7527131e74b8ee -SIZE (KDE/release-service/20.12.0/kwalletmanager-20.12.0.tar.xz) = 773584 +TIMESTAMP = 1610047968 +SHA256 (KDE/release-service/20.12.1/kwalletmanager-20.12.1.tar.xz) = 72ab9cd2a53b9cc7db144b712ef18d81b23de3ff6b05d92f961b9bff65174f5b +SIZE (KDE/release-service/20.12.1/kwalletmanager-20.12.1.tar.xz) = 773720 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 560804) +++ head/security/libkleo/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/libkleo-20.12.0.tar.xz) = 9da666931763520582047cf472dac436b6efac076f0245befc0f884658c6f91e -SIZE (KDE/release-service/20.12.0/libkleo-20.12.0.tar.xz) = 358284 +TIMESTAMP = 1610047969 +SHA256 (KDE/release-service/20.12.1/libkleo-20.12.1.tar.xz) = 8a64e16316ab0365e2db1ef60ae4c4efdd81392f658069bdbe143209de350837 +SIZE (KDE/release-service/20.12.1/libkleo-20.12.1.tar.xz) = 358472 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 560804) +++ head/sysutils/baloo-widgets/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/baloo-widgets-20.12.0.tar.xz) = 9af708f4749effb02a87ef37decb3bd3cfe1365521290a49093f86da93dd1aa2 -SIZE (KDE/release-service/20.12.0/baloo-widgets-20.12.0.tar.xz) = 261696 +TIMESTAMP = 1610047979 +SHA256 (KDE/release-service/20.12.1/baloo-widgets-20.12.1.tar.xz) = 23fb018485b778ef1e9eaa2a8f35e0becb64a3e928bf130033fd374d1b03be84 +SIZE (KDE/release-service/20.12.1/baloo-widgets-20.12.1.tar.xz) = 261700 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 560804) +++ head/sysutils/filelight/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/filelight-20.12.0.tar.xz) = 445197abf17e03f0fcfb70b8be3d8e5b5eb5a7dfafc8fbc3177bd9f860781354 -SIZE (KDE/release-service/20.12.0/filelight-20.12.0.tar.xz) = 670736 +TIMESTAMP = 1610047976 +SHA256 (KDE/release-service/20.12.1/filelight-20.12.1.tar.xz) = 91c82cc19aa3541885c1dbe8a849d99d79d7a025fba81de2b0401419f050f14c +SIZE (KDE/release-service/20.12.1/filelight-20.12.1.tar.xz) = 671212 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 560804) +++ head/sysutils/k3b/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/k3b-20.12.0.tar.xz) = 24cf0b91f4731ed04d90fb2efce3985231833dc3cd0ddc24b83eace3e060a0c7 -SIZE (KDE/release-service/20.12.0/k3b-20.12.0.tar.xz) = 10684460 +TIMESTAMP = 1610047973 +SHA256 (KDE/release-service/20.12.1/k3b-20.12.1.tar.xz) = 3753c126792558e73034b76aaddc709a7f30d4f75ca3974f3c59a0f790fdcb0b +SIZE (KDE/release-service/20.12.1/k3b-20.12.1.tar.xz) = 10684996 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 560804) +++ head/sysutils/kbackup/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kbackup-20.12.0.tar.xz) = 612302a289d5ecfa0045935dbe7e349ee0f3bab79ef4720f5390a846736cd35d -SIZE (KDE/release-service/20.12.0/kbackup-20.12.0.tar.xz) = 380096 +TIMESTAMP = 1610047972 +SHA256 (KDE/release-service/20.12.1/kbackup-20.12.1.tar.xz) = d5570d647d34dbd2f0a5ca0f26774e10c994917cf447f441afd294d9ee9b6d10 +SIZE (KDE/release-service/20.12.1/kbackup-20.12.1.tar.xz) = 380776 Index: head/sysutils/kbackup/pkg-plist =================================================================== --- head/sysutils/kbackup/pkg-plist (revision 560804) +++ head/sysutils/kbackup/pkg-plist (revision 560805) @@ -1,47 +1,48 @@ bin/kbackup man/ca/man1/kbackup.1.gz man/it/man1/kbackup.1.gz man/man1/kbackup.1.gz +man/nl/man1/kbackup.1.gz man/sv/man1/kbackup.1.gz man/uk/man1/kbackup.1.gz share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ca/LC_MESSAGES/kbackup.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo share/locale/el/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/et/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo share/locale/ko/LC_MESSAGES/kbackup.mo share/locale/lt/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sl/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 560804) +++ head/sysutils/kcron/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kcron-20.12.0.tar.xz) = 12a688f158d174b94f6ab67fb9e72b86ff5d8d34100f4093e26a837cf7894c87 -SIZE (KDE/release-service/20.12.0/kcron-20.12.0.tar.xz) = 898900 +TIMESTAMP = 1610047975 +SHA256 (KDE/release-service/20.12.1/kcron-20.12.1.tar.xz) = ac850bec99fd0da08b9a3ad7f48c133a4a20aa1b3f1302a799fc75d8155faa07 +SIZE (KDE/release-service/20.12.1/kcron-20.12.1.tar.xz) = 898832 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 560804) +++ head/sysutils/kdebugsettings/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kdebugsettings-20.12.0.tar.xz) = dc62647957f68a6579f43474d96a2efed1cd5a3249f5f6bd87a72deef02d3561 -SIZE (KDE/release-service/20.12.0/kdebugsettings-20.12.0.tar.xz) = 68168 +TIMESTAMP = 1610047981 +SHA256 (KDE/release-service/20.12.1/kdebugsettings-20.12.1.tar.xz) = 210f86b94e2a70a56a622c4dc6c18bd241f0dbe1e0b31a9c6324326fb6b99dca +SIZE (KDE/release-service/20.12.1/kdebugsettings-20.12.1.tar.xz) = 68332 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 560804) +++ head/sysutils/kdf/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/kdf-20.12.0.tar.xz) = e995da41f20c3be0f4ee81574d2b84677d4024fd41adc345f67efe70d365eb84 -SIZE (KDE/release-service/20.12.0/kdf-20.12.0.tar.xz) = 467252 +TIMESTAMP = 1610047984 +SHA256 (KDE/release-service/20.12.1/kdf-20.12.1.tar.xz) = 61961ef170aedb9ddc87846385b408ae097391abd7c2dfb6c763d14d343c462d +SIZE (KDE/release-service/20.12.1/kdf-20.12.1.tar.xz) = 467296 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 560804) +++ head/sysutils/kdialog/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kdialog-20.12.0.tar.xz) = 2479ea4a4568314abbefff4d4edb84b2ac437f59805908044d001792efc46a1d -SIZE (KDE/release-service/20.12.0/kdialog-20.12.0.tar.xz) = 108312 +TIMESTAMP = 1610047983 +SHA256 (KDE/release-service/20.12.1/kdialog-20.12.1.tar.xz) = c481729a5757d1668da648005b48b711eb4cb6fc7c6e7249343b45ac065bc68e +SIZE (KDE/release-service/20.12.1/kdialog-20.12.1.tar.xz) = 108468 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 560804) +++ head/sysutils/kfloppy/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kfloppy-20.12.0.tar.xz) = 8b8edbef665820f6b7d270f5034c4ddf04b5b8aabfffdda49d626610a929351a -SIZE (KDE/release-service/20.12.0/kfloppy-20.12.0.tar.xz) = 204132 +TIMESTAMP = 1610047974 +SHA256 (KDE/release-service/20.12.1/kfloppy-20.12.1.tar.xz) = 04b18e848c7fc2b810dcfa623322e2700ded21c7c8bd9581793f827ea3d8ecf2 +SIZE (KDE/release-service/20.12.1/kfloppy-20.12.1.tar.xz) = 204260 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 560804) +++ head/sysutils/khelpcenter/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/khelpcenter-20.12.0.tar.xz) = 8544416929518a3744b933c88a13f4f878fd6fab915866069557862f663c855a -SIZE (KDE/release-service/20.12.0/khelpcenter-20.12.0.tar.xz) = 4250636 +TIMESTAMP = 1610047977 +SHA256 (KDE/release-service/20.12.1/khelpcenter-20.12.1.tar.xz) = 66e137a74bf79bc9af4320c7803c0e03d834f79b0e567295ece8bc81a3466ab1 +SIZE (KDE/release-service/20.12.1/khelpcenter-20.12.1.tar.xz) = 4250496 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 560804) +++ head/sysutils/ksystemlog/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/ksystemlog-20.12.0.tar.xz) = dd485238d4c2cd0ab2c603d5fc4ec60c6f4603ee5e3876cca577011cd0749508 -SIZE (KDE/release-service/20.12.0/ksystemlog-20.12.0.tar.xz) = 1936384 +TIMESTAMP = 1610047978 +SHA256 (KDE/release-service/20.12.1/ksystemlog-20.12.1.tar.xz) = 80f51e5dc1dcc6a7479ab4c2a10d39e04ef9ffe822f00e766f8c7182b5d16514 +SIZE (KDE/release-service/20.12.1/ksystemlog-20.12.1.tar.xz) = 1936328 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 560804) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/signon-kwallet-extension-20.12.0.tar.xz) = 7019c1b9b42930c2b0ab197674eeb435eccf6fef2aeda8b87a989479b1ee1e2e -SIZE (KDE/release-service/20.12.0/signon-kwallet-extension-20.12.0.tar.xz) = 10696 +TIMESTAMP = 1610047982 +SHA256 (KDE/release-service/20.12.1/signon-kwallet-extension-20.12.1.tar.xz) = 4b762208b8d48c0d56b4605f701ebadc1daa59b16054c238a132f38a6b518854 +SIZE (KDE/release-service/20.12.1/signon-kwallet-extension-20.12.1.tar.xz) = 10700 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 560804) +++ head/sysutils/sweeper/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/sweeper-20.12.0.tar.xz) = 2ec17afbe7f9f575cc8f6e1f8badfeb9b743b42a7d901bb54c01d6e84c95c454 -SIZE (KDE/release-service/20.12.0/sweeper-20.12.0.tar.xz) = 371876 +TIMESTAMP = 1610047980 +SHA256 (KDE/release-service/20.12.1/sweeper-20.12.1.tar.xz) = 54cac155d316a4eff77a13721f0b5d18976b3150da1f9118a315bab976524919 +SIZE (KDE/release-service/20.12.1/sweeper-20.12.1.tar.xz) = 371936 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 560804) +++ head/textproc/kompare/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kompare-20.12.0.tar.xz) = 6d838d59031dc91cbd0f690b881ec3b35e70e63a921c5454f709520f8646576a -SIZE (KDE/release-service/20.12.0/kompare-20.12.0.tar.xz) = 921984 +TIMESTAMP = 1610047987 +SHA256 (KDE/release-service/20.12.1/kompare-20.12.1.tar.xz) = 10b32f0556e8094ab6276c66d018310e47be0314c915ad9872f4f7737f43b18d +SIZE (KDE/release-service/20.12.1/kompare-20.12.1.tar.xz) = 921748 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 560804) +++ head/textproc/libkomparediff2/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/libkomparediff2-20.12.0.tar.xz) = 8b92b729d2d1c7998b22ffd6a7ae95f46954785d4855ce6cfa7a1fb401cf66ec -SIZE (KDE/release-service/20.12.0/libkomparediff2-20.12.0.tar.xz) = 159368 +TIMESTAMP = 1610047986 +SHA256 (KDE/release-service/20.12.1/libkomparediff2-20.12.1.tar.xz) = c3a79ea99dd4f4a72db628f46720049960e6b948f5e14b97a7857e04e1c67412 +SIZE (KDE/release-service/20.12.1/libkomparediff2-20.12.1.tar.xz) = 159312 Index: head/textproc/markdownpart/distinfo =================================================================== --- head/textproc/markdownpart/distinfo (revision 560804) +++ head/textproc/markdownpart/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/markdownpart-20.12.0.tar.xz) = 49d1c972a3ded86e52b464f811ec21554cc74024c967470caaa8ed1c1ba93e57 -SIZE (KDE/release-service/20.12.0/markdownpart-20.12.0.tar.xz) = 26508 +TIMESTAMP = 1610047985 +SHA256 (KDE/release-service/20.12.1/markdownpart-20.12.1.tar.xz) = 93c3a7bd3a7175cc9d8fb3d1f7a492663b5062820598b57ca25a33b8b886098d +SIZE (KDE/release-service/20.12.1/markdownpart-20.12.1.tar.xz) = 26520 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 560804) +++ head/x11/konsole/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/konsole-20.12.0.tar.xz) = 6d3ba8a4e5baeda3f8b380f122313de1421836892994f1ddf0e6872696598d59 -SIZE (KDE/release-service/20.12.0/konsole-20.12.0.tar.xz) = 1236116 +TIMESTAMP = 1610047988 +SHA256 (KDE/release-service/20.12.1/konsole-20.12.1.tar.xz) = b690be392462cab5abac74d1e1010c3f991c3d00968b51ed5525040640d769ec +SIZE (KDE/release-service/20.12.1/konsole-20.12.1.tar.xz) = 1238484 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 560804) +++ head/x11/yakuake/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/yakuake-20.12.0.tar.xz) = a1a1f914ffb4364ba57dd66daf9366aeb9da8fe0d14b4c41b5a7ad3befdcbb9c -SIZE (KDE/release-service/20.12.0/yakuake-20.12.0.tar.xz) = 381984 +TIMESTAMP = 1610047990 +SHA256 (KDE/release-service/20.12.1/yakuake-20.12.1.tar.xz) = 4a0d934335ec74e4a09b73792ad7a6587adb035742ef1adbe177f1d07ba2ea0a +SIZE (KDE/release-service/20.12.1/yakuake-20.12.1.tar.xz) = 381960 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 560804) +++ head/x11-clocks/kteatime/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/kteatime-20.12.0.tar.xz) = fabef94581df93d805c69b62407599a4adf8fe504b60e3c2479db22223e0e9ee -SIZE (KDE/release-service/20.12.0/kteatime-20.12.0.tar.xz) = 294368 +TIMESTAMP = 1610048006 +SHA256 (KDE/release-service/20.12.1/kteatime-20.12.1.tar.xz) = fd9b504cc37c4acf495a31c576048a53f735e8d93024e7230be6a3343c1f2c49 +SIZE (KDE/release-service/20.12.1/kteatime-20.12.1.tar.xz) = 294304 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 560804) +++ head/x11-clocks/ktimer/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/ktimer-20.12.0.tar.xz) = 9a9ec2385c39b4f225bc07071de2c708cba77ec0d69543250a70003fcb2edf89 -SIZE (KDE/release-service/20.12.0/ktimer-20.12.0.tar.xz) = 385388 +TIMESTAMP = 1610047996 +SHA256 (KDE/release-service/20.12.1/ktimer-20.12.1.tar.xz) = 3cfdec0223362693689753c1f5da3470dbd690fc15e8455d78e67dfdab014c45 +SIZE (KDE/release-service/20.12.1/ktimer-20.12.1.tar.xz) = 385428 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 560804) +++ head/x11-fm/dolphin/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111072 -SHA256 (KDE/release-service/20.12.0/dolphin-20.12.0.tar.xz) = 02b384e85b00aaaf1b4efd7ee7ca9d2f98991b850aa3645b7161219e9087ccd3 -SIZE (KDE/release-service/20.12.0/dolphin-20.12.0.tar.xz) = 5115360 +TIMESTAMP = 1610048015 +SHA256 (KDE/release-service/20.12.1/dolphin-20.12.1.tar.xz) = b71652f40f28d92e790a0cdffbd0124c09a7a2264a7a798297b9238171454f58 +SIZE (KDE/release-service/20.12.1/dolphin-20.12.1.tar.xz) = 5115268 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 560804) +++ head/x11-fm/konqueror/distinfo (revision 560805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607111073 -SHA256 (KDE/release-service/20.12.0/konqueror-20.12.0.tar.xz) = 485d139eabfa5bde9be01cdd349867c9b7a68775a72d5396fd4f4d1e7d4865d8 -SIZE (KDE/release-service/20.12.0/konqueror-20.12.0.tar.xz) = 7233524 +TIMESTAMP = 1610048023 +SHA256 (KDE/release-service/20.12.1/konqueror-20.12.1.tar.xz) = 7ef0b24b3c5a373efba0ecc664cda449e27af1b8630a1edbc05fa1bcbc43ce08 +SIZE (KDE/release-service/20.12.1/konqueror-20.12.1.tar.xz) = 7239608 Index: head/x11-fm/konqueror/pkg-plist =================================================================== --- head/x11-fm/konqueror/pkg-plist (revision 560804) +++ head/x11-fm/konqueror/pkg-plist (revision 560805) @@ -1,1269 +1,1273 @@ bin/kcreatewebarchive bin/fsview bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqsidebartngrc etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h include/konqsidebarplugin.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonqsidebarplugin.so.5 lib/libkonquerorprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonquerorprivate.so.5 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so %%QT_PLUGINDIR%%/fsviewpart.so %%QT_PLUGINDIR%%/kcm_bookmarks.so %%QT_PLUGINDIR%%/kcm_history.so %%QT_PLUGINDIR%%/kcm_konq.so %%QT_PLUGINDIR%%/kcm_konqhtml.so %%QT_PLUGINDIR%%/kcm_performance.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/kimgallery.so %%QT_PLUGINDIR%%/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/konq_sidebar.so %%QT_PLUGINDIR%%/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqsidebar_history.so %%QT_PLUGINDIR%%/konqsidebar_places.so %%QT_PLUGINDIR%%/konqsidebar_tree.so %%QT_PLUGINDIR%%/searchbarplugin.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so %%DATADIR%%/about/intro.html %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/specs.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/kpartplugins/searchbar.desktop %%DATADIR%%/kpartplugins/searchbar.rc %%DATADIR%%/opensearch/google.xml %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/akregator/pics/feed.png share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/dolphinpart/kpartplugins/dirfilterplugin.desktop share/dolphinpart/kpartplugins/dirfilterplugin.rc share/dolphinpart/kpartplugins/kimgalleryplugin.desktop share/dolphinpart/kpartplugins/kimgalleryplugin.rc share/dolphinpart/kpartplugins/kshellcmdplugin.desktop share/dolphinpart/kpartplugins/kshellcmdplugin.rc share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/22x22/actions/babelfish.png share/icons/hicolor/22x22/actions/imagegallery.png share/icons/hicolor/22x22/actions/webarchiver.png share/icons/hicolor/22x22/apps/fsview.png share/icons/hicolor/22x22/apps/konqueror.png share/icons/hicolor/22x22/apps/webengine.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/kcmcss/template.css share/kconf_update/webenginepart.upd share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/khtml/kpartplugins/akregator_konqfeedicon.desktop share/khtml/kpartplugins/akregator_konqfeedicon.rc share/khtml/kpartplugins/autorefresh.desktop share/khtml/kpartplugins/autorefresh.rc share/khtml/kpartplugins/khtmlsettingsplugin.desktop share/khtml/kpartplugins/khtmlsettingsplugin.rc share/khtml/kpartplugins/khtmltts.desktop share/khtml/kpartplugins/khtmltts.rc share/khtml/kpartplugins/plugin_babelfish.rc share/khtml/kpartplugins/plugin_translator.desktop share/khtml/kpartplugins/plugin_webarchiver.desktop share/khtml/kpartplugins/plugin_webarchiver.rc share/khtml/kpartplugins/uachangerplugin.desktop share/khtml/kpartplugins/uachangerplugin.rc share/konqsidebartng/entries/bookmarks.desktop share/konqsidebartng/entries/fonts.desktop share/konqsidebartng/entries/history.desktop share/konqsidebartng/entries/home.desktop share/konqsidebartng/entries/places.desktop share/konqsidebartng/entries/remote.desktop share/konqsidebartng/entries/root.desktop share/konqsidebartng/entries/services.desktop share/konqsidebartng/entries/settings.desktop share/konqsidebartng/plugins/konqsidebar_bookmarks.desktop share/konqsidebartng/plugins/konqsidebar_history.desktop share/konqsidebartng/plugins/konqsidebar_places.desktop share/konqsidebartng/plugins/konqsidebar_tree.desktop share/kservices5/akregator_konqplugin.desktop share/kservices5/bookmarks.desktop share/kservices5/filebehavior.desktop share/kservices5/fsview_part.desktop share/kservices5/kcmhistory.desktop share/kservices5/kcmkonqyperformance.desktop share/kservices5/kcmperformance.desktop share/kservices5/khtml_appearance.desktop share/kservices5/khtml_behavior.desktop share/kservices5/khtml_filter.desktop share/kservices5/khtml_general.desktop share/kservices5/khtml_java_js.desktop share/kservices5/konq_sidebartng.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.rc share/kwebkitpart/kpartplugins/autorefresh.desktop share/kwebkitpart/kpartplugins/autorefresh.rc share/kwebkitpart/kpartplugins/khtmlsettingsplugin.desktop share/kwebkitpart/kpartplugins/khtmlsettingsplugin.rc share/kwebkitpart/kpartplugins/khtmltts.desktop share/kwebkitpart/kpartplugins/khtmltts.rc share/kwebkitpart/kpartplugins/plugin_babelfish.rc share/kwebkitpart/kpartplugins/plugin_translator.desktop share/kwebkitpart/kpartplugins/plugin_webarchiver.desktop share/kwebkitpart/kpartplugins/plugin_webarchiver.rc share/kwebkitpart/kpartplugins/uachangerplugin.desktop share/kwebkitpart/kpartplugins/uachangerplugin.rc share/kxmlgui5/fsview/fsview_part.rc share/kxmlgui5/webenginepart/webenginepart.rc share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo +share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo +share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo +share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo +share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-categories5/akregatorplugin.categories share/qlogging-categories5/fsview.categories share/qlogging-categories5/konqueror.categories share/webenginepart/error.html share/webenginepart/kpartplugins/akregator_konqfeedicon.desktop share/webenginepart/kpartplugins/akregator_konqfeedicon.rc share/webenginepart/kpartplugins/autorefresh.desktop share/webenginepart/kpartplugins/autorefresh.rc share/webenginepart/kpartplugins/khtmlsettingsplugin.desktop share/webenginepart/kpartplugins/khtmlsettingsplugin.rc share/webenginepart/kpartplugins/khtmltts.desktop share/webenginepart/kpartplugins/khtmltts.rc share/webenginepart/kpartplugins/plugin_babelfish.rc share/webenginepart/kpartplugins/plugin_translator.desktop share/webenginepart/kpartplugins/plugin_webarchiver.desktop share/webenginepart/kpartplugins/plugin_webarchiver.rc share/webenginepart/kpartplugins/uachangerplugin.desktop share/webenginepart/kpartplugins/uachangerplugin.rc