Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 519954) +++ head/Mk/Uses/kde.mk (revision 519955) @@ -1,851 +1,853 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.17.4 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.64.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.08.3 -KDE_APPLICATIONS_SHLIB_VER?= 5.12.3 +KDE_APPLICATIONS_VERSION?= 19.12.0 +KDE_APPLICATIONS_SHLIB_VER?= 5.13.0 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . 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 -. else +. elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src +. else +MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_LIB= libkdeinit5_kded5.so 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-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 519954) +++ head/accessibility/kmag/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930673 -SHA256 (KDE/applications/19.08.3/kmag-19.08.3.tar.xz) = 216e5db763f72ff1f4ada339912dc686fa7a6cea0dafc8b9eab35601edabc950 -SIZE (KDE/applications/19.08.3/kmag-19.08.3.tar.xz) = 673556 +TIMESTAMP = 1575623432 +SHA256 (KDE/applications/19.12.0/kmag-19.12.0.tar.xz) = 2525151461f2f02a40f105ff65d35eb4cb117a3117fba0accd93a5ae046f08bb +SIZE (KDE/applications/19.12.0/kmag-19.12.0.tar.xz) = 674396 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 519954) +++ head/accessibility/kmousetool/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930674 -SHA256 (KDE/applications/19.08.3/kmousetool-19.08.3.tar.xz) = 0434d4883d5478168c696ec1a43164ff09a15999416ff198b749d45981983399 -SIZE (KDE/applications/19.08.3/kmousetool-19.08.3.tar.xz) = 113556 +TIMESTAMP = 1575623431 +SHA256 (KDE/applications/19.12.0/kmousetool-19.12.0.tar.xz) = 3f4cba2a20b6002b0e88c235ad4660532facf6cfc881829ab9897385c50b8126 +SIZE (KDE/applications/19.12.0/kmousetool-19.12.0.tar.xz) = 114216 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 519954) +++ head/accessibility/kmouth/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930675 -SHA256 (KDE/applications/19.08.3/kmouth-19.08.3.tar.xz) = b962dec13a0fa610b4e9fa03f4f0c9ce28cb8c45e8fc18243c26452783ebf2a9 -SIZE (KDE/applications/19.08.3/kmouth-19.08.3.tar.xz) = 1965320 +TIMESTAMP = 1575623433 +SHA256 (KDE/applications/19.12.0/kmouth-19.12.0.tar.xz) = 697946b0a5f3c5beb60b44c9b091b200a6f4f946707f57b9e0be6784b6b5c3f3 +SIZE (KDE/applications/19.12.0/kmouth-19.12.0.tar.xz) = 1964876 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 519954) +++ head/archivers/ark/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930675 -SHA256 (KDE/applications/19.08.3/ark-19.08.3.tar.xz) = bc1fcd84632c628a10e8536d56b65a7acbd4235ed0e034fec864b78bdc36f8f1 -SIZE (KDE/applications/19.08.3/ark-19.08.3.tar.xz) = 2585196 +TIMESTAMP = 1575623413 +SHA256 (KDE/applications/19.12.0/ark-19.12.0.tar.xz) = 0f0c8a306f392573bd912a21c298734af4b73a7faec0b5fe7548d5a3ae1b4b54 +SIZE (KDE/applications/19.12.0/ark-19.12.0.tar.xz) = 2588820 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 519954) +++ head/archivers/ark/pkg-plist (revision 519955) @@ -1,95 +1,95 @@ bin/ark share/qlogging-categories5/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.19.8.3 +lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop share/kxmlgui5/ark/ark_viewer.rc share/locale/ar/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml share/mime/packages/kerfuffle.xml Index: head/astro/libkgeomap/Makefile =================================================================== --- head/astro/libkgeomap/Makefile (revision 519954) +++ head/astro/libkgeomap/Makefile (revision 519955) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= libkgeomap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE library for browsing photos on a map LICENSE= GPLv2+ BSD3CLAUSE LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/COPYING-CMAKE-SCRIPTS BUILD_DEPENDS= ${LOCALBASE}/include/boost/graph/buffer_concepts.hpp:devel/boost-libs LIB_DEPENDS= libopencv_video.so:graphics/opencv USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio marble service textwidgets USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 519954) +++ head/astro/libkgeomap/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930676 -SHA256 (KDE/applications/19.08.3/libkgeomap-19.08.3.tar.xz) = 858a6327fe45b67bd31e1f592412a30e0c0f64eb353279480f62b19e51df9576 -SIZE (KDE/applications/19.08.3/libkgeomap-19.08.3.tar.xz) = 150620 +TIMESTAMP = 1575623430 +SHA256 (KDE/applications/19.12.0/libkgeomap-19.12.0.tar.xz) = 28567e98d72ab20f8d07c8e46acd954566f318f9287d1f6740fc01adfe324286 +SIZE (KDE/applications/19.12.0/libkgeomap-19.12.0.tar.xz) = 151052 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 519954) +++ head/astro/marble/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930677 -SHA256 (KDE/applications/19.08.3/marble-19.08.3.tar.xz) = cd5d7f758d2234dc8e2fa638b9e1326461655e10dbe21910dbef029e80ef7a68 -SIZE (KDE/applications/19.08.3/marble-19.08.3.tar.xz) = 52406676 +TIMESTAMP = 1575623429 +SHA256 (KDE/applications/19.12.0/marble-19.12.0.tar.xz) = b3703714ceb49cf0b7b7db75c021509d0bb65748d2391bc8104089d801e85c54 +SIZE (KDE/applications/19.12.0/marble-19.12.0.tar.xz) = 52194536 Index: head/astro/marble/pkg-plist =================================================================== --- head/astro/marble/pkg-plist (revision 519954) +++ head/astro/marble/pkg-plist (revision 519955) @@ -1,1767 +1,1770 @@ bin/marble bin/marble-qt etc/xdg/marble.knsrc include/astro/astr2lib.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h +include/marble/MarbleDeclarativePlugin.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h +include/marble/marble_declarative_export.h include/marble/marble_export.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.0.17.20 lib/libastro.so.1 lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.0.28.0 lib/libmarblewidget-qt5.so.28 lib/marble/plugins/libAnnotatePlugin.so lib/marble/plugins/libAprsPlugin.so lib/marble/plugins/libAtmospherePlugin.so lib/marble/plugins/libCachePlugin.so lib/marble/plugins/libCompassFloatItem.so lib/marble/plugins/libCrosshairsPlugin.so lib/marble/plugins/libCycleStreetsPlugin.so lib/marble/plugins/libEarthquakePlugin.so lib/marble/plugins/libEclipsesPlugin.so lib/marble/plugins/libElevationProfileFloatItem.so lib/marble/plugins/libElevationProfileMarker.so lib/marble/plugins/libFlightGearPositionProviderPlugin.so lib/marble/plugins/libFoursquarePlugin.so lib/marble/plugins/libGeoUriPlugin.so lib/marble/plugins/libGosmoreReverseGeocodingPlugin.so lib/marble/plugins/libGosmoreRoutingPlugin.so lib/marble/plugins/libGpsInfo.so lib/marble/plugins/libGpsbabelPlugin.so %%GPS%%lib/marble/plugins/libGpsdPositionProviderPlugin.so lib/marble/plugins/libGpxPlugin.so lib/marble/plugins/libGraticulePlugin.so lib/marble/plugins/libHostipPlugin.so lib/marble/plugins/libJsonPlugin.so lib/marble/plugins/libKmlPlugin.so lib/marble/plugins/libLatLonPlugin.so lib/marble/plugins/libLicense.so lib/marble/plugins/libLocalDatabasePlugin.so lib/marble/plugins/libLocalOsmSearchPlugin.so lib/marble/plugins/libLogPlugin.so lib/marble/plugins/libMapQuestPlugin.so lib/marble/plugins/libMapScaleFloatItem.so lib/marble/plugins/libMeasureTool.so lib/marble/plugins/libMonavPlugin.so lib/marble/plugins/libNavigationFloatItem.so lib/marble/plugins/libNominatimReverseGeocodingPlugin.so lib/marble/plugins/libNominatimSearchPlugin.so lib/marble/plugins/libNotesPlugin.so lib/marble/plugins/libOSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/libOpenDesktopPlugin.so lib/marble/plugins/libOpenLocationCodeSearchPlugin.so lib/marble/plugins/libOpenRouteServicePlugin.so lib/marble/plugins/libOsmPlugin.so lib/marble/plugins/libOverviewMap.so %%WEBENGINE%%lib/marble/plugins/libPhoto.so lib/marble/plugins/libPn2Plugin.so lib/marble/plugins/libPntPlugin.so lib/marble/plugins/libPositionMarker.so lib/marble/plugins/libPostalCode.so lib/marble/plugins/libProgressFloatItem.so %%GPS%%lib/marble/plugins/libQtPositioningPositionProviderPlugin.so lib/marble/plugins/libRoutingPlugin.so lib/marble/plugins/libRoutinoPlugin.so lib/marble/plugins/libSatellitesPlugin.so lib/marble/plugins/libSpeedometer.so lib/marble/plugins/libStarsPlugin.so lib/marble/plugins/libSunPlugin.so %%WEBENGINE%%lib/marble/plugins/libWeather.so %%WEBENGINE%%lib/marble/plugins/libWikipedia.so lib/marble/plugins/libYoursPlugin.so lib/plugins/designer/libLatLonEditPlugin.so lib/plugins/designer/libMarbleNavigatorPlugin.so lib/plugins/designer/libMarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/libmarblethumbnail.so %%QT_PLUGINDIR%%/plasma_runner_marble.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/libmarblequick.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble-qt.desktop share/applications/org.kde.marble.desktop share/config.kcfg/marble.kcfg share/icons/hicolor/128x128/apps/marble.png share/icons/hicolor/16x16/apps/marble.png share/icons/hicolor/22x22/apps/marble.png share/icons/hicolor/32x32/apps/marble.png share/icons/hicolor/48x48/apps/marble.png share/icons/hicolor/64x64/apps/marble.png share/kservices5/marble_part.desktop share/kservices5/marble_thumbnail_geojson.desktop share/kservices5/marble_thumbnail_gpx.desktop share/kservices5/marble_thumbnail_kml.desktop share/kservices5/marble_thumbnail_kmz.desktop share/kservices5/marble_thumbnail_osm.desktop share/kservices5/plasma-applet-org.kde.plasma.worldclock.desktop share/kservices5/plasma-runner-marble.desktop share/kservices5/plasma-wallpaper-org.kde.plasma.worldmap.desktop share/kxmlgui5/marble/marble_part.rc share/kxmlgui5/marble/marbleui.rc share/locale/ar/LC_MESSAGES/marble.mo share/locale/ar/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/en_GB/LC_MESSAGES/marble.mo share/locale/en_GB/LC_MESSAGES/marble_qt.qm share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_marble.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eo/LC_MESSAGES/marble.mo share/locale/eo/LC_MESSAGES/marble_qt.qm share/locale/eo/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/es/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/et/LC_MESSAGES/marble.mo share/locale/et/LC_MESSAGES/marble_qt.qm share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/et/LC_MESSAGES/plasma_runner_marble.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fi/LC_MESSAGES/plasma_runner_marble.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fr/LC_MESSAGES/marble.mo share/locale/fr/LC_MESSAGES/marble_qt.qm share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fr/LC_MESSAGES/plasma_runner_marble.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ga/LC_MESSAGES/marble.mo share/locale/ga/LC_MESSAGES/marble_qt.qm share/locale/ga/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/gl/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/he/LC_MESSAGES/marble.mo share/locale/he/LC_MESSAGES/marble_qt.qm share/locale/hi/LC_MESSAGES/marble.mo share/locale/hi/LC_MESSAGES/marble_qt.qm share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/marble.mo share/locale/it/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/it/LC_MESSAGES/plasma_runner_marble.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ja/LC_MESSAGES/marble.mo share/locale/ja/LC_MESSAGES/marble_qt.qm share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ja/LC_MESSAGES/plasma_runner_marble.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/tr/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble_qt.qm share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/tr/LC_MESSAGES/plasma_runner_marble.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ug/LC_MESSAGES/marble.mo share/locale/ug/LC_MESSAGES/marble_qt.qm share/locale/ug/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/uk/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/wa/LC_MESSAGES/marble.mo share/locale/wa/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/marble.mo share/locale/zh_CN/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/zh_TW/LC_MESSAGES/marble.mo share/locale/zh_TW/LC_MESSAGES/marble_qt.qm share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo %%DATADIR%%/data/LICENSE.txt %%DATADIR%%/data/audio/KDE-Sys-App-Positive.ogg %%DATADIR%%/data/audio/KDE-Sys-List-End.ogg %%DATADIR%%/data/bitmaps/airport.png %%DATADIR%%/data/bitmaps/annotation.png %%DATADIR%%/data/bitmaps/antarctic_shelves.png %%DATADIR%%/data/bitmaps/audio-x-generic.png %%DATADIR%%/data/bitmaps/bookmark.png %%DATADIR%%/data/bitmaps/border_1.png %%DATADIR%%/data/bitmaps/border_2.png %%DATADIR%%/data/bitmaps/border_disputed.png %%DATADIR%%/data/bitmaps/border_maritime.png %%DATADIR%%/data/bitmaps/city_1_orange.png %%DATADIR%%/data/bitmaps/city_1_red.png %%DATADIR%%/data/bitmaps/city_1_white.png %%DATADIR%%/data/bitmaps/city_1_yellow.png %%DATADIR%%/data/bitmaps/city_2_orange.png %%DATADIR%%/data/bitmaps/city_2_red.png %%DATADIR%%/data/bitmaps/city_2_white.png %%DATADIR%%/data/bitmaps/city_2_yellow.png %%DATADIR%%/data/bitmaps/city_3_orange.png %%DATADIR%%/data/bitmaps/city_3_red.png %%DATADIR%%/data/bitmaps/city_3_white.png %%DATADIR%%/data/bitmaps/city_3_yellow.png %%DATADIR%%/data/bitmaps/city_4_orange.png %%DATADIR%%/data/bitmaps/city_4_red.png %%DATADIR%%/data/bitmaps/city_4_white.png %%DATADIR%%/data/bitmaps/city_4_yellow.png %%DATADIR%%/data/bitmaps/coordinate.png %%DATADIR%%/data/bitmaps/crater.png %%DATADIR%%/data/bitmaps/cursor_bc.png %%DATADIR%%/data/bitmaps/cursor_bl.png %%DATADIR%%/data/bitmaps/cursor_br.png %%DATADIR%%/data/bitmaps/cursor_cl.png %%DATADIR%%/data/bitmaps/cursor_cr.png %%DATADIR%%/data/bitmaps/cursor_tc.png %%DATADIR%%/data/bitmaps/cursor_tl.png %%DATADIR%%/data/bitmaps/cursor_tr.png %%DATADIR%%/data/bitmaps/default_location.png %%DATADIR%%/data/bitmaps/document-edit.png %%DATADIR%%/data/bitmaps/earth_apollo.jpg %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical.png %%DATADIR%%/data/bitmaps/flag.png %%DATADIR%%/data/bitmaps/folder.png %%DATADIR%%/data/bitmaps/glacier.png %%DATADIR%%/data/bitmaps/highway_footway.png %%DATADIR%%/data/bitmaps/highway_motorway.png %%DATADIR%%/data/bitmaps/highway_path.png %%DATADIR%%/data/bitmaps/highway_primary.png %%DATADIR%%/data/bitmaps/highway_secondary.png %%DATADIR%%/data/bitmaps/highway_tertiary.png %%DATADIR%%/data/bitmaps/highway_track.png %%DATADIR%%/data/bitmaps/highway_trunk.png %%DATADIR%%/data/bitmaps/highway_unclassified.png %%DATADIR%%/data/bitmaps/lake.png %%DATADIR%%/data/bitmaps/lake_historic.png %%DATADIR%%/data/bitmaps/manned_landing.png %%DATADIR%%/data/bitmaps/media-playback-pause.png %%DATADIR%%/data/bitmaps/mountain_1.png %%DATADIR%%/data/bitmaps/nation.png %%DATADIR%%/data/bitmaps/notes_closed.png %%DATADIR%%/data/bitmaps/notes_open.png %%DATADIR%%/data/bitmaps/observatory.png %%DATADIR%%/data/bitmaps/ocean.png %%DATADIR%%/data/bitmaps/osm.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/allotments.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/beach.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/danger.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/embankment.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/forest.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/glacier.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_christian.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_generic.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_jewish.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grey_vertical_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/ice.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/military_red_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/orchard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/quarry.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/rock_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scree_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scrub.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/vineyard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_bog.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_mangrove.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_marsh.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_reed.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_swamp.png %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x4.svg %%DATADIR%%/data/bitmaps/other.png %%DATADIR%%/data/bitmaps/playa.png %%DATADIR%%/data/bitmaps/player-time.png %%DATADIR%%/data/bitmaps/pole_1.png %%DATADIR%%/data/bitmaps/pole_2.png %%DATADIR%%/data/bitmaps/redflag_22.png %%DATADIR%%/data/bitmaps/redflag_32.png %%DATADIR%%/data/bitmaps/river.png %%DATADIR%%/data/bitmaps/robotic_rover.png %%DATADIR%%/data/bitmaps/routing_pick.png %%DATADIR%%/data/bitmaps/routing_remove.png %%DATADIR%%/data/bitmaps/routing_step.png %%DATADIR%%/data/bitmaps/satellite.png %%DATADIR%%/data/bitmaps/shadowframe.png %%DATADIR%%/data/bitmaps/shipwreck.png %%DATADIR%%/data/bitmaps/stars/star_0_blue.png %%DATADIR%%/data/bitmaps/stars/star_0_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_0_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_0_orange.png %%DATADIR%%/data/bitmaps/stars/star_0_red.png %%DATADIR%%/data/bitmaps/stars/star_0_white.png %%DATADIR%%/data/bitmaps/stars/star_0_yellow.png %%DATADIR%%/data/bitmaps/stars/star_3_blue.png %%DATADIR%%/data/bitmaps/stars/star_3_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_3_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_3_orange.png %%DATADIR%%/data/bitmaps/stars/star_3_red.png %%DATADIR%%/data/bitmaps/stars/star_3_white.png %%DATADIR%%/data/bitmaps/stars/star_3_yellow.png %%DATADIR%%/data/bitmaps/turn-around.png %%DATADIR%%/data/bitmaps/turn-continue.png %%DATADIR%%/data/bitmaps/turn-end.png %%DATADIR%%/data/bitmaps/turn-exit-left.png %%DATADIR%%/data/bitmaps/turn-exit-right.png %%DATADIR%%/data/bitmaps/turn-ferry.png %%DATADIR%%/data/bitmaps/turn-left.png %%DATADIR%%/data/bitmaps/turn-merge.png %%DATADIR%%/data/bitmaps/turn-right.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-third.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-third.png %%DATADIR%%/data/bitmaps/turn-sharp-left.png %%DATADIR%%/data/bitmaps/turn-sharp-right.png %%DATADIR%%/data/bitmaps/turn-slight-left.png %%DATADIR%%/data/bitmaps/turn-slight-right.png %%DATADIR%%/data/bitmaps/unmanned_hard_landing.png %%DATADIR%%/data/bitmaps/unmanned_soft_landing.png %%DATADIR%%/data/bitmaps/urban_area.png %%DATADIR%%/data/bitmaps/valley.png %%DATADIR%%/data/bitmaps/volcano_1.png %%DATADIR%%/data/bitmaps/waypoint.png %%DATADIR%%/data/bitmaps/wikipedia.png %%DATADIR%%/data/credits_authors.html %%DATADIR%%/data/credits_data.html %%DATADIR%%/data/flags/flag_ad.svg %%DATADIR%%/data/flags/flag_ae.svg %%DATADIR%%/data/flags/flag_af.svg %%DATADIR%%/data/flags/flag_ag.svg %%DATADIR%%/data/flags/flag_ai.svg %%DATADIR%%/data/flags/flag_al.svg %%DATADIR%%/data/flags/flag_am.svg %%DATADIR%%/data/flags/flag_an.svg %%DATADIR%%/data/flags/flag_ao.svg %%DATADIR%%/data/flags/flag_aq.svg %%DATADIR%%/data/flags/flag_ar.svg %%DATADIR%%/data/flags/flag_as.svg %%DATADIR%%/data/flags/flag_at.svg %%DATADIR%%/data/flags/flag_au.svg %%DATADIR%%/data/flags/flag_aw.svg %%DATADIR%%/data/flags/flag_ax.svg %%DATADIR%%/data/flags/flag_az.svg %%DATADIR%%/data/flags/flag_ba.svg %%DATADIR%%/data/flags/flag_bb.svg %%DATADIR%%/data/flags/flag_bd.svg %%DATADIR%%/data/flags/flag_be.svg %%DATADIR%%/data/flags/flag_bf.svg %%DATADIR%%/data/flags/flag_bg.svg %%DATADIR%%/data/flags/flag_bh.svg %%DATADIR%%/data/flags/flag_bi.svg %%DATADIR%%/data/flags/flag_bj.svg %%DATADIR%%/data/flags/flag_bm.svg %%DATADIR%%/data/flags/flag_bn.svg %%DATADIR%%/data/flags/flag_bo.svg %%DATADIR%%/data/flags/flag_br.svg %%DATADIR%%/data/flags/flag_bs.svg %%DATADIR%%/data/flags/flag_bt.svg %%DATADIR%%/data/flags/flag_bv.svg %%DATADIR%%/data/flags/flag_bw.svg %%DATADIR%%/data/flags/flag_by.svg %%DATADIR%%/data/flags/flag_bz.svg %%DATADIR%%/data/flags/flag_ca.svg %%DATADIR%%/data/flags/flag_cc.svg %%DATADIR%%/data/flags/flag_cd.svg %%DATADIR%%/data/flags/flag_cf.svg %%DATADIR%%/data/flags/flag_cg.svg %%DATADIR%%/data/flags/flag_ch.svg %%DATADIR%%/data/flags/flag_ci.svg %%DATADIR%%/data/flags/flag_ck.svg %%DATADIR%%/data/flags/flag_cl.svg %%DATADIR%%/data/flags/flag_cm.svg %%DATADIR%%/data/flags/flag_cn.svg %%DATADIR%%/data/flags/flag_co.svg %%DATADIR%%/data/flags/flag_cr.svg %%DATADIR%%/data/flags/flag_cu.svg %%DATADIR%%/data/flags/flag_cv.svg %%DATADIR%%/data/flags/flag_cx.svg %%DATADIR%%/data/flags/flag_cy.svg %%DATADIR%%/data/flags/flag_cz.svg %%DATADIR%%/data/flags/flag_de.svg %%DATADIR%%/data/flags/flag_dj.svg %%DATADIR%%/data/flags/flag_dk.svg %%DATADIR%%/data/flags/flag_dm.svg %%DATADIR%%/data/flags/flag_do.svg %%DATADIR%%/data/flags/flag_dz.svg %%DATADIR%%/data/flags/flag_ec.svg %%DATADIR%%/data/flags/flag_ee.svg %%DATADIR%%/data/flags/flag_eg.svg %%DATADIR%%/data/flags/flag_eh.svg %%DATADIR%%/data/flags/flag_er.svg %%DATADIR%%/data/flags/flag_es.svg %%DATADIR%%/data/flags/flag_et.svg %%DATADIR%%/data/flags/flag_fi.svg %%DATADIR%%/data/flags/flag_fj.svg %%DATADIR%%/data/flags/flag_fk.svg %%DATADIR%%/data/flags/flag_fm.svg %%DATADIR%%/data/flags/flag_fo.svg %%DATADIR%%/data/flags/flag_fr.svg %%DATADIR%%/data/flags/flag_ga.svg %%DATADIR%%/data/flags/flag_gb.svg %%DATADIR%%/data/flags/flag_gd.svg %%DATADIR%%/data/flags/flag_ge.svg %%DATADIR%%/data/flags/flag_gf.svg %%DATADIR%%/data/flags/flag_gg.svg %%DATADIR%%/data/flags/flag_gh.svg %%DATADIR%%/data/flags/flag_gi.svg %%DATADIR%%/data/flags/flag_gl.svg %%DATADIR%%/data/flags/flag_gm.svg %%DATADIR%%/data/flags/flag_gn.svg %%DATADIR%%/data/flags/flag_gp.svg %%DATADIR%%/data/flags/flag_gq.svg %%DATADIR%%/data/flags/flag_gr.svg %%DATADIR%%/data/flags/flag_gs.svg %%DATADIR%%/data/flags/flag_gt.svg %%DATADIR%%/data/flags/flag_gu.svg %%DATADIR%%/data/flags/flag_gw.svg %%DATADIR%%/data/flags/flag_gy.svg %%DATADIR%%/data/flags/flag_hk.svg %%DATADIR%%/data/flags/flag_hm.svg %%DATADIR%%/data/flags/flag_hn.svg %%DATADIR%%/data/flags/flag_hr.svg %%DATADIR%%/data/flags/flag_ht.svg %%DATADIR%%/data/flags/flag_hu.svg %%DATADIR%%/data/flags/flag_id.svg %%DATADIR%%/data/flags/flag_ie.svg %%DATADIR%%/data/flags/flag_il.svg %%DATADIR%%/data/flags/flag_im.svg %%DATADIR%%/data/flags/flag_in.svg %%DATADIR%%/data/flags/flag_io.svg %%DATADIR%%/data/flags/flag_iq.svg %%DATADIR%%/data/flags/flag_ir.svg %%DATADIR%%/data/flags/flag_is.svg %%DATADIR%%/data/flags/flag_it.svg %%DATADIR%%/data/flags/flag_je.svg %%DATADIR%%/data/flags/flag_jm.svg %%DATADIR%%/data/flags/flag_jo.svg %%DATADIR%%/data/flags/flag_jp.svg %%DATADIR%%/data/flags/flag_ke.svg %%DATADIR%%/data/flags/flag_kg.svg %%DATADIR%%/data/flags/flag_kh.svg %%DATADIR%%/data/flags/flag_ki.svg %%DATADIR%%/data/flags/flag_km.svg %%DATADIR%%/data/flags/flag_kn.svg %%DATADIR%%/data/flags/flag_kp.svg %%DATADIR%%/data/flags/flag_kr.svg %%DATADIR%%/data/flags/flag_kw.svg %%DATADIR%%/data/flags/flag_ky.svg %%DATADIR%%/data/flags/flag_kz.svg %%DATADIR%%/data/flags/flag_la.svg %%DATADIR%%/data/flags/flag_lb.svg %%DATADIR%%/data/flags/flag_lc.svg %%DATADIR%%/data/flags/flag_li.svg %%DATADIR%%/data/flags/flag_lk.svg %%DATADIR%%/data/flags/flag_lr.svg %%DATADIR%%/data/flags/flag_ls.svg %%DATADIR%%/data/flags/flag_lt.svg %%DATADIR%%/data/flags/flag_lu.svg %%DATADIR%%/data/flags/flag_lv.svg %%DATADIR%%/data/flags/flag_ly.svg %%DATADIR%%/data/flags/flag_ma.svg %%DATADIR%%/data/flags/flag_mc.svg %%DATADIR%%/data/flags/flag_md.svg %%DATADIR%%/data/flags/flag_me.svg %%DATADIR%%/data/flags/flag_mg.svg %%DATADIR%%/data/flags/flag_mh.svg %%DATADIR%%/data/flags/flag_mk.svg %%DATADIR%%/data/flags/flag_ml.svg %%DATADIR%%/data/flags/flag_mm.svg %%DATADIR%%/data/flags/flag_mn.svg %%DATADIR%%/data/flags/flag_mo.svg %%DATADIR%%/data/flags/flag_mp.svg %%DATADIR%%/data/flags/flag_mq.svg %%DATADIR%%/data/flags/flag_mr.svg %%DATADIR%%/data/flags/flag_ms.svg %%DATADIR%%/data/flags/flag_mt.svg %%DATADIR%%/data/flags/flag_mu.svg %%DATADIR%%/data/flags/flag_mv.svg %%DATADIR%%/data/flags/flag_mw.svg %%DATADIR%%/data/flags/flag_mx.svg %%DATADIR%%/data/flags/flag_my.svg %%DATADIR%%/data/flags/flag_mz.svg %%DATADIR%%/data/flags/flag_na.svg %%DATADIR%%/data/flags/flag_nc.svg %%DATADIR%%/data/flags/flag_ne.svg %%DATADIR%%/data/flags/flag_nf.svg %%DATADIR%%/data/flags/flag_ng.svg %%DATADIR%%/data/flags/flag_ni.svg %%DATADIR%%/data/flags/flag_nl.svg %%DATADIR%%/data/flags/flag_no.svg %%DATADIR%%/data/flags/flag_np.svg %%DATADIR%%/data/flags/flag_nr.svg %%DATADIR%%/data/flags/flag_nu.svg %%DATADIR%%/data/flags/flag_nz.svg %%DATADIR%%/data/flags/flag_om.svg %%DATADIR%%/data/flags/flag_pa.svg %%DATADIR%%/data/flags/flag_pe.svg %%DATADIR%%/data/flags/flag_pf.svg %%DATADIR%%/data/flags/flag_pg.svg %%DATADIR%%/data/flags/flag_ph.svg %%DATADIR%%/data/flags/flag_pk.svg %%DATADIR%%/data/flags/flag_pl.svg %%DATADIR%%/data/flags/flag_pm.svg %%DATADIR%%/data/flags/flag_pn.svg %%DATADIR%%/data/flags/flag_pr.svg %%DATADIR%%/data/flags/flag_ps.svg %%DATADIR%%/data/flags/flag_pt.svg %%DATADIR%%/data/flags/flag_pw.svg %%DATADIR%%/data/flags/flag_py.svg %%DATADIR%%/data/flags/flag_qa.svg %%DATADIR%%/data/flags/flag_re.svg %%DATADIR%%/data/flags/flag_ro.svg %%DATADIR%%/data/flags/flag_rs.svg %%DATADIR%%/data/flags/flag_ru.svg %%DATADIR%%/data/flags/flag_rw.svg %%DATADIR%%/data/flags/flag_sa.svg %%DATADIR%%/data/flags/flag_sb.svg %%DATADIR%%/data/flags/flag_sc.svg %%DATADIR%%/data/flags/flag_sd.svg %%DATADIR%%/data/flags/flag_se.svg %%DATADIR%%/data/flags/flag_sg.svg %%DATADIR%%/data/flags/flag_sh.svg %%DATADIR%%/data/flags/flag_si.svg %%DATADIR%%/data/flags/flag_sj.svg %%DATADIR%%/data/flags/flag_sk.svg %%DATADIR%%/data/flags/flag_sl.svg %%DATADIR%%/data/flags/flag_sm.svg %%DATADIR%%/data/flags/flag_sn.svg %%DATADIR%%/data/flags/flag_so.svg %%DATADIR%%/data/flags/flag_sr.svg %%DATADIR%%/data/flags/flag_st.svg %%DATADIR%%/data/flags/flag_sv.svg %%DATADIR%%/data/flags/flag_sy.svg %%DATADIR%%/data/flags/flag_sz.svg %%DATADIR%%/data/flags/flag_tc.svg %%DATADIR%%/data/flags/flag_td.svg %%DATADIR%%/data/flags/flag_tf.svg %%DATADIR%%/data/flags/flag_tg.svg %%DATADIR%%/data/flags/flag_th.svg %%DATADIR%%/data/flags/flag_tj.svg %%DATADIR%%/data/flags/flag_tk.svg %%DATADIR%%/data/flags/flag_tl.svg %%DATADIR%%/data/flags/flag_tm.svg %%DATADIR%%/data/flags/flag_tn.svg %%DATADIR%%/data/flags/flag_to.svg %%DATADIR%%/data/flags/flag_tr.svg %%DATADIR%%/data/flags/flag_tt.svg %%DATADIR%%/data/flags/flag_tv.svg %%DATADIR%%/data/flags/flag_tw.svg %%DATADIR%%/data/flags/flag_tz.svg %%DATADIR%%/data/flags/flag_ua.svg %%DATADIR%%/data/flags/flag_ug.svg %%DATADIR%%/data/flags/flag_um.svg %%DATADIR%%/data/flags/flag_us.svg %%DATADIR%%/data/flags/flag_uy.svg %%DATADIR%%/data/flags/flag_uz.svg %%DATADIR%%/data/flags/flag_vc.svg %%DATADIR%%/data/flags/flag_ve.svg %%DATADIR%%/data/flags/flag_vg.svg %%DATADIR%%/data/flags/flag_vi.svg %%DATADIR%%/data/flags/flag_vn.svg %%DATADIR%%/data/flags/flag_vu.svg %%DATADIR%%/data/flags/flag_wf.svg %%DATADIR%%/data/flags/flag_ws.svg %%DATADIR%%/data/flags/flag_ye.svg %%DATADIR%%/data/flags/flag_yt.svg %%DATADIR%%/data/flags/flag_za.svg %%DATADIR%%/data/flags/flag_zm.svg %%DATADIR%%/data/flags/flag_zw.svg %%DATADIR%%/data/landcolors.leg %%DATADIR%%/data/legend.css %%DATADIR%%/data/legend.html %%DATADIR%%/data/licenses/lgpl2.txt %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/behaim1492-preview.png %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.dgml %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.kml %%DATADIR%%/data/maps/earth/behaim1492/figuren.kml %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend.html %%DATADIR%%/data/maps/earth/behaim1492/legend/Martin_Behaim.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend/globus.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/texte.kml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble-preview.png %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.dgml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.jpg %%DATADIR%%/data/maps/earth/bluemarble/legend/desert.png %%DATADIR%%/data/maps/earth/bluemarble/legend/ice.png %%DATADIR%%/data/maps/earth/bluemarble/legend/mountain.png %%DATADIR%%/data/maps/earth/bluemarble/legend/vegetation.png %%DATADIR%%/data/maps/earth/bluemarble/legend/water.png %%DATADIR%%/data/maps/earth/citylights/citylights-preview.png %%DATADIR%%/data/maps/earth/citylights/citylights.dgml %%DATADIR%%/data/maps/earth/citylights/citylights.jpg %%DATADIR%%/data/maps/earth/citylights/legend/city.png %%DATADIR%%/data/maps/earth/citylights/legend/darkterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/lightterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/water.png %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/hillshading/0/0/0.png %%DATADIR%%/data/maps/earth/humanitarian/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/Alcatraz.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Brasilia.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Church of the Holy Sepulchre.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Death Valley.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Desert breath.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Disneyland.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Dunnottar Castle.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Eiffel Tower.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Kheops Pyramid.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Klyuchevskaya Sopka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Maree Man.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Moscow Kremlin.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Nazca Lines.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palace Het Loo.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palm Jumeirah.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Russell Square.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Santorini.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Shuttle Landing Facility.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sofievka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/St Peter's Basilica.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Stonehenge.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sydney Opera House.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taj Mahal.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taranaki.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The Great Wall of China.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The World.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Vesuvius.jpg %%DATADIR%%/data/maps/earth/openstreetmap/legend.html %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportapron.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportrunway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/boundary.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridge.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/byway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/cycleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/footway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_hotel2.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_motel.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_court.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_firestation.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_library.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_playground.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_post_office.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_public_building.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_toilets.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_college.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_nursery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_school.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_university.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_bar.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_biergarten.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_cafe.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_drinkingtap.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_fastfood.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_ice_cream.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_pub.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_restaurant.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_dentist.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_doctors.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_hospital.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_pharmacy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_veterinary.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_atm.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_bank.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_currency_exchange.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_christian.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_unknown.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/poi_embassy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/power_station_gas.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_alcohol.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_bakery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_book.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_car.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_clothes.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_convenience.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_gift.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_cinema.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_monument.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_ruin.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_theatre.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/motorway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/primaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railwaystation.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/secondaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/significantbuilding.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/subway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/summitpeak.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/track.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tram.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/trunkroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tunnel.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unclassifiedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unsurfacedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap-preview.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap.dgml %%DATADIR%%/data/maps/earth/openstreetmap/tour.kml %%DATADIR%%/data/maps/earth/plain/plain-preview.png %%DATADIR%%/data/maps/earth/plain/plain.dgml %%DATADIR%%/data/maps/earth/political/political-preview.png %%DATADIR%%/data/maps/earth/political/political.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec-preview.png %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.jpg %%DATADIR%%/data/maps/earth/precip-july/precip-july-preview.png %%DATADIR%%/data/maps/earth/precip-july/precip-july.dgml %%DATADIR%%/data/maps/earth/precip-july/precip-july.jpg %%DATADIR%%/data/maps/earth/schagen1689/legend.html %%DATADIR%%/data/maps/earth/schagen1689/legend/lake.png %%DATADIR%%/data/maps/earth/schagen1689/legend/mountain.png %%DATADIR%%/data/maps/earth/schagen1689/legend/river.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_orig.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_title.png %%DATADIR%%/data/maps/earth/schagen1689/legend/town.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689-preview.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.dgml %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.jpg %%DATADIR%%/data/maps/earth/sentinel2/0/0/0.jpg %%DATADIR%%/data/maps/earth/sentinel2/legend.html %%DATADIR%%/data/maps/earth/sentinel2/sentinel2-preview.png %%DATADIR%%/data/maps/earth/sentinel2/sentinel2.dgml %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000015.jpg %%DATADIR%%/data/maps/earth/srtm/srtm-preview.png %%DATADIR%%/data/maps/earth/srtm/srtm.dgml %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000000.png %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000001.png %%DATADIR%%/data/maps/earth/srtm2/srtm2.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec-preview.png %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.jpg %%DATADIR%%/data/maps/earth/temp-july/temp-july-preview.png %%DATADIR%%/data/maps/earth/temp-july/temp-july.dgml %%DATADIR%%/data/maps/earth/temp-july/temp-july.jpg %%DATADIR%%/data/maps/earth/vectorosm/0/0/0.o5m %%DATADIR%%/data/maps/earth/vectorosm/legend.html %%DATADIR%%/data/maps/earth/vectorosm/vectorosm-preview.png %%DATADIR%%/data/maps/earth/vectorosm/vectorosm.dgml %%DATADIR%%/data/maps/moon/clementine/clementine-preview.png %%DATADIR%%/data/maps/moon/clementine/clementine.dgml %%DATADIR%%/data/maps/moon/clementine/clementine.jpg %%DATADIR%%/data/maps/moon/clementine/legend.html %%DATADIR%%/data/maps/moon/clementine/tour.kml %%DATADIR%%/data/mwdbii/DATELINE.PNT %%DATADIR%%/data/mwdbii/PCOAST.PNT %%DATADIR%%/data/mwdbii/PDIFFBORDER.PNT %%DATADIR%%/data/mwdbii/PGLACIER.PNT %%DATADIR%%/data/mwdbii/PISLAND.PNT %%DATADIR%%/data/mwdbii/PLAKE.PNT %%DATADIR%%/data/mwdbii/PLAKEISLAND.PNT %%DATADIR%%/data/mwdbii/PUSA48.DIFF.PNT %%DATADIR%%/data/mwdbii/RIVER.PNT %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_maritime_indicator.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_breakaway_disputed_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_countries.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_pacific_groupings.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_1_states_provinces_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_polys.pn2 %%DATADIR%%/data/naturalearth/ne_50m_coastline.pn2 %%DATADIR%%/data/naturalearth/ne_50m_glaciated_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes_historic.pn2 %%DATADIR%%/data/naturalearth/ne_50m_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_playas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_rivers_lake_centerlines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_urban_areas.pn2 %%DATADIR%%/data/placemarks/baseplacemarks.cache %%DATADIR%%/data/placemarks/boundaryplacemarks.cache %%DATADIR%%/data/placemarks/cityplacemarks.cache %%DATADIR%%/data/placemarks/elevplacemarks.cache %%DATADIR%%/data/placemarks/moonlandingsites.cache %%DATADIR%%/data/placemarks/moonterrain.cache %%DATADIR%%/data/placemarks/otherplacemarks.cache %%DATADIR%%/data/precipcolors.leg %%DATADIR%%/data/seacolors.leg %%DATADIR%%/data/stars/constellations.dat %%DATADIR%%/data/stars/deepsky.png %%DATADIR%%/data/stars/dso.dat %%DATADIR%%/data/stars/names.csv %%DATADIR%%/data/stars/stars.dat %%DATADIR%%/data/svg/application-x-marble-gray.png %%DATADIR%%/data/svg/application-x-marble.png %%DATADIR%%/data/svg/application-x-marble.svg %%DATADIR%%/data/svg/bookmark.svg %%DATADIR%%/data/svg/coordinate.svg +%%DATADIR%%/data/svg/dot-circle-regular.svg %%DATADIR%%/data/svg/glow.png %%DATADIR%%/data/svg/lunarmap.svg %%DATADIR%%/data/svg/marble-logo-32dpi.png %%DATADIR%%/data/svg/marble-logo-72dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-32dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-72dpi.png %%DATADIR%%/data/svg/marble-logo.png %%DATADIR%%/data/svg/marble-logo.svg %%DATADIR%%/data/svg/marsmap.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bike_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_boat_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bus_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_car_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_railway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_run_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_subway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_walk_48px.svg %%DATADIR%%/data/svg/material/maps/ic_tram_48px.svg %%DATADIR%%/data/svg/moon.png %%DATADIR%%/data/svg/osmcarto/svg/airtransport/aerodrome.svg %%DATADIR%%/data/svg/osmcarto/svg/airtransport/helipad.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/archaeological_site.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/artwork.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/atm.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bank.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bar.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/biergarten.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cafe.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/car_wash.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cave.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cinema.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/community_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/courthouse-16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/drinking_water.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/emergency_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fast_food.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/firestation.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fountain-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/information.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/library.20.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/monument.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/mountain_rescue.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/museum.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/nightclub.18.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/picnic.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/playground.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/police.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_box-12.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_office-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/prison.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/pub.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/recycling.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/restaurant.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/social_facility.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/telephone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/theatre.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/toilets.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/tourist_memorial.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/town_hall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/viewpoint.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_tower.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/windmill.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/buddhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/christian.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/hinduist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/jewish.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/muslim.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/place_of_worship.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/power_wind-16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/shintoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/sikhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/taoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/dentist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/doctors.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/hospital.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/pharmacy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/veterinary-14.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/bench.16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/entrance.10.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/gate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/liftgate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/mini_roundabout.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/peak.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower_small.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/pylon.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/railway_station.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/saddle.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/speedcamera.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/spring.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/square.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/traffic_light.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-autumn.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-winter.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/volcano.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/waste_basket.10.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/golf.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/miniature_golf.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/communications.16.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/hunting-stand.16.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-8.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-adminlevel2.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/art.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/bag-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beauty-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beverages-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/butcher-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/car_parts-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/chemist-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/computer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/confectionery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/copyshop.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/deli.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/department_store-16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/florist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/garden_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/greengrocer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/hifi-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/ice-cream-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/kiosk-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/laundry-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/mobile_phone.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/motorcycle-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/musical_instrument-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/newsagent-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/outdoor-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/perfumery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/photo-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/seafood-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_alcohol.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bakery.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_books.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_car.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_clothes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_convenience.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_diy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_electronics.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_furniture.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_gift.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_hairdresser.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_jewelry.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_mobile_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_optician.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_pet.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_shoes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_supermarket.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shopping_car_repair.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/sports.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/stationery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tea.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tobacco.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/toys-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/travel_agency-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/variety_store-14.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/alpinehut.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bicycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_station.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_stop.12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/camping.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/car_share.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/caravan_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/charging_station.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/elevator-12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/embassy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/ford.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/fuel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/guest_house.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hostel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hotel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/lighthouse.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motorcycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/parking.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/railway_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_car.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_ski.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/shelter.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/subway_entrance.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/taxi.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/traffic_light_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/wilderness_hut.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/zebra_crossing.svg %%DATADIR%%/data/svg/sun.png %%DATADIR%%/data/svg/sunshine.png %%DATADIR%%/data/svg/thenounproject/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.svg %%DATADIR%%/data/svg/track_turtle.svg %%DATADIR%%/data/svg/wikipedia.svg %%DATADIR%%/data/svg/wikipedia_shadow.svg %%DATADIR%%/data/svg/worldmap.svg %%DATADIR%%/data/tempcolors.leg %%DATADIR%%/data/weather/bbc-stations.xml %%DATADIR%%/data/weather/weather-clear-night.png %%DATADIR%%/data/weather/weather-clear.png %%DATADIR%%/data/weather/weather-clouds-night.png %%DATADIR%%/data/weather/weather-clouds.png %%DATADIR%%/data/weather/weather-few-clouds-night.png %%DATADIR%%/data/weather/weather-few-clouds.png %%DATADIR%%/data/weather/weather-hail.png %%DATADIR%%/data/weather/weather-many-clouds.png %%DATADIR%%/data/weather/weather-mist.png %%DATADIR%%/data/weather/weather-none-available.png %%DATADIR%%/data/weather/weather-showers-day.png %%DATADIR%%/data/weather/weather-showers-night.png %%DATADIR%%/data/weather/weather-showers-scattered-day.png %%DATADIR%%/data/weather/weather-showers-scattered-night.png %%DATADIR%%/data/weather/weather-showers-scattered.png %%DATADIR%%/data/weather/weather-showers.png %%DATADIR%%/data/weather/weather-snow-rain.png %%DATADIR%%/data/weather/weather-snow-scattered-day.png %%DATADIR%%/data/weather/weather-snow-scattered-night.png %%DATADIR%%/data/weather/weather-snow-scattered.png %%DATADIR%%/data/weather/weather-snow.png %%DATADIR%%/data/weather/weather-storm-day.png %%DATADIR%%/data/weather/weather-storm-night.png %%DATADIR%%/data/weather/weather-storm.png %%DATADIR%%/data/weather/wind-arrows.svgz share/metainfo/org.kde.marble.appdata.xml share/metainfo/org.kde.plasma.worldmap.appdata.xml share/metainfo/org.kde.plasma.worldclock.appdata.xml share/mime/packages/geo.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configMapDisplay.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.json share/plasma/wallpapers/org.kde.plasma.worldmap/contents/config/main.xml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/config.qml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/main.qml share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.desktop share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 519954) +++ head/audio/audiocd-kio/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930678 -SHA256 (KDE/applications/19.08.3/audiocd-kio-19.08.3.tar.xz) = 98d836def762b839b9636acc540158d5b4789a84d1bdb535ae139b10e9e144a4 -SIZE (KDE/applications/19.08.3/audiocd-kio-19.08.3.tar.xz) = 355684 +TIMESTAMP = 1575623340 +SHA256 (KDE/applications/19.12.0/audiocd-kio-19.12.0.tar.xz) = 65f0fdd0e5ffc359cd70236a0c2b432a1c728617ec513898052e06f8112d39ff +SIZE (KDE/applications/19.12.0/audiocd-kio-19.12.0.tar.xz) = 357096 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 519954) +++ head/audio/audiocd-kio/pkg-plist (revision 519955) @@ -1,288 +1,289 @@ share/qlogging-categories5/kio_audiocd.categories include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/kservices5/audiocd.protocol share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/ast/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/el/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo -share/metainfo/org.kde.kio_audiocd.appdata.xml +share/metainfo/org.kde.kio_audiocd.metainfo.xml share/solid/actions/solid_audiocd.desktop Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 519954) +++ head/audio/juk/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930679 -SHA256 (KDE/applications/19.08.3/juk-19.08.3.tar.xz) = 6ef343b31b4b996d3a576e91a8a0b57b55b61ed76e9ddc51c5072a6243cb3030 -SIZE (KDE/applications/19.08.3/juk-19.08.3.tar.xz) = 1867552 +TIMESTAMP = 1575623343 +SHA256 (KDE/applications/19.12.0/juk-19.12.0.tar.xz) = 3d32fd9ba7d8f5a5815b278463dc54e165a669e1a9ccd655fe2ca139acc36a20 +SIZE (KDE/applications/19.12.0/juk-19.12.0.tar.xz) = 1865796 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 519954) +++ head/audio/kmix/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930700 -SHA256 (KDE/applications/19.08.3/kmix-19.08.3.tar.xz) = cf71abee1ab35423b0daeaf1fbddbcdcb2f40fd946dfabf0cb19b8762b8582bc -SIZE (KDE/applications/19.08.3/kmix-19.08.3.tar.xz) = 1005308 +TIMESTAMP = 1575623338 +SHA256 (KDE/applications/19.12.0/kmix-19.12.0.tar.xz) = 18b5b6d142dfb38f72115aad6579b4700b87958b3391094d19975c2d5ecf4edb +SIZE (KDE/applications/19.12.0/kmix-19.12.0.tar.xz) = 1007416 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 519954) +++ head/audio/kwave/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930700 -SHA256 (KDE/applications/19.08.3/kwave-19.08.3.tar.xz) = bde8d2c3805b52bdcf0371c28e870d20fdfdd8b69831a9ba4e59ee9ae0a863ef -SIZE (KDE/applications/19.08.3/kwave-19.08.3.tar.xz) = 6196324 +TIMESTAMP = 1575623341 +SHA256 (KDE/applications/19.12.0/kwave-19.12.0.tar.xz) = 08237b018ef0676ba8c5aa0cb833285e2b7e0406d86e67caacd81088f9dc1ccf +SIZE (KDE/applications/19.12.0/kwave-19.12.0.tar.xz) = 6188904 Index: head/audio/kwave/files/patch-private =================================================================== --- head/audio/kwave/files/patch-private (revision 519954) +++ head/audio/kwave/files/patch-private (nonexistent) @@ -1,127 +0,0 @@ -commit cb13b7153452060d919603d31ad4db94b3056f35 -Author: Adriaan de Groot -Date: Sat Oct 12 20:41:30 2019 +0200 - - Private inheritance hides base-class names. - - Summary: - Kwave fails to compile with clang 9.0, with this kind of error message: - - === - In file included from /wrkdirs/usr/ports/audio/kwave/work/kwave-19.08.1/libkwave/undo/UndoDeleteAction.cpp:24: - /wrkdirs/usr/ports/audio/kwave/work/kwave-19.08.1/libkwave/MultiTrackReader.h:61:24: error: 'QList' is a private member of 'QList' - const QList &track_list, - ^ - /wrkdirs/usr/ports/audio/kwave/work/kwave-19.08.1/libkwave/MultiTrackSource.h:41:36: note: constrained by private inheritance here - private QList - ^~~~~~~~~~~~~~~~~~~~~~~ - /usr/local/include/qt5/QtCore/qlist.h:127:7: note: member is declared here - class QList - ^ - 1 error generated. - === - - This can be demonstrated much more shortly with this code: - - === - class foo {}; - class bar : private foo {}; - class baz : public bar - { - public: - foo m_foo; - }; - === - - Within baz, foo is looked up in bar, and then (because it's *private* - inheritance) afterwards access-control kicks in and disallows its use. - By fully-qualifying foo (or, in Kwave's case, QList) the name-lookup - happens differently, and the public (global) name is found. - - There is also a description of the problem on StackOverflow, - https://stackoverflow.com/questions/41595208/accessing-the-name-of-a-private-inherited-class-from-a-subclass - - Test Plan: - - still compiles - - packaging on FreeBSD-CURRENT, with clang 9, works again - - Differential Revision: https://reviews.freebsd.org/D22002 -diff --git libkwave/MultiTrackReader.cpp libkwave/MultiTrackReader.cpp -index aedce6bb..0053d980 100644 ---- libkwave/MultiTrackReader.cpp -+++ libkwave/MultiTrackReader.cpp -@@ -32,7 +32,7 @@ Kwave::MultiTrackReader::MultiTrackReader() - //*************************************************************************** - Kwave::MultiTrackReader::MultiTrackReader(Kwave::ReaderMode mode, - Kwave::SignalManager &signal_manager, -- const QList &track_list, -+ const ::QList &track_list, - sample_index_t first, - sample_index_t last) - :Kwave::MultiTrackSource(0), -diff --git libkwave/MultiTrackReader.h libkwave/MultiTrackReader.h -index 5de02956..1d08c296 100644 ---- libkwave/MultiTrackReader.h -+++ libkwave/MultiTrackReader.h -@@ -58,7 +58,7 @@ namespace Kwave - */ - MultiTrackReader(Kwave::ReaderMode mode, - Kwave::SignalManager &signal_manager, -- const QList &track_list, -+ const ::QList &track_list, - sample_index_t first, sample_index_t last); - - /** Destructor */ -diff --git libkwave/MultiTrackWriter.cpp libkwave/MultiTrackWriter.cpp -index e875f445..6c6b662a 100644 ---- libkwave/MultiTrackWriter.cpp -+++ libkwave/MultiTrackWriter.cpp -@@ -35,7 +35,7 @@ Kwave::MultiTrackWriter::MultiTrackWriter() - - //*************************************************************************** - Kwave::MultiTrackWriter::MultiTrackWriter(Kwave::SignalManager &signal_manager, -- const QList &track_list, -+ const ::QList &track_list, - Kwave::InsertMode mode, - sample_index_t left, - sample_index_t right) -@@ -52,7 +52,7 @@ Kwave::MultiTrackWriter::MultiTrackWriter(Kwave::SignalManager &signal_manager, - Kwave::InsertMode mode) - :Kwave::MultiWriter() - { -- QList track_list = signal_manager.selectedTracks(); -+ ::QList track_list = signal_manager.selectedTracks(); - sample_index_t left = 0; - sample_index_t right = 0; - -@@ -82,7 +82,7 @@ Kwave::MultiTrackWriter::~MultiTrackWriter() - - //*************************************************************************** - bool Kwave::MultiTrackWriter::init(Kwave::SignalManager &signal_manager, -- const QList &track_list, -+ const ::QList &track_list, - Kwave::InsertMode mode, - sample_index_t left, - sample_index_t right) -diff --git libkwave/MultiTrackWriter.h libkwave/MultiTrackWriter.h -index df3c3086..d809680e 100644 ---- libkwave/MultiTrackWriter.h -+++ libkwave/MultiTrackWriter.h -@@ -55,7 +55,7 @@ namespace Kwave - * @param right index of the last sample - */ - MultiTrackWriter(Kwave::SignalManager &signal_manager, -- const QList &track_list, -+ const ::QList &track_list, - Kwave::InsertMode mode, - sample_index_t left, sample_index_t right); - -@@ -86,7 +86,7 @@ namespace Kwave - * @internal - */ - bool init(Kwave::SignalManager &signal_manager, -- const QList &track_list, -+ const ::QList &track_list, - Kwave::InsertMode mode, - sample_index_t left, sample_index_t right); - Property changes on: head/audio/kwave/files/patch-private ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 519954) +++ head/audio/libkcddb/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930701 -SHA256 (KDE/applications/19.08.3/libkcddb-19.08.3.tar.xz) = 56fe09cfab0455581057aa1681cec01777159a51af1871419cd1b5fb9d4e8ae6 -SIZE (KDE/applications/19.08.3/libkcddb-19.08.3.tar.xz) = 424108 +TIMESTAMP = 1575623344 +SHA256 (KDE/applications/19.12.0/libkcddb-19.12.0.tar.xz) = b60cbc09aeb2f3794b68261a50e393887fbbb897ad0cd578edd57f0e6f01f4c5 +SIZE (KDE/applications/19.12.0/libkcddb-19.12.0.tar.xz) = 425072 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 519954) +++ head/audio/libkcompactdisc/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930702 -SHA256 (KDE/applications/19.08.3/libkcompactdisc-19.08.3.tar.xz) = 912b885badf6aff6b0378fba993633c9fb5cf026dc6791e4cda0c4c27913f425 -SIZE (KDE/applications/19.08.3/libkcompactdisc-19.08.3.tar.xz) = 88900 +TIMESTAMP = 1575623342 +SHA256 (KDE/applications/19.12.0/libkcompactdisc-19.12.0.tar.xz) = a6c1c801e61e9cf933c132266857a540584e24a35367430587c7df13e5d7d49b +SIZE (KDE/applications/19.12.0/libkcompactdisc-19.12.0.tar.xz) = 89284 Index: head/databases/akonadi/Makefile =================================================================== --- head/databases/akonadi/Makefile (revision 519954) +++ head/databases/akonadi/Makefile (revision 519955) @@ -1,65 +1,64 @@ # $FreeBSD$ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt CONFLICTS= akonadi-[0-9]* akonadi-kf5-git-[0-9]* USES= cmake compiler:c++11-lib gettext gnome kde:5 qt:5 \ shared-mime-info tar:xz USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemmodels itemviews \ kio service windowsystem widgetsaddons xmlgui \ designerplugin_build designerplugin_run USE_QT= concurrent core dbus designer gui network sql testlib widgets xml \ buildtools_build qmake_build CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" USE_LDCONFIG= yes OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_SUB= yes MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= mysql:server qt:5 MYSQL_USE= QT=sql-mysql_run PGSQL_DESC= Install PostgreSQL Qt plugin # Do not add a dependency on PostgreSQL server as someone preferring # it over MySQL might like to use some advanced configuration, like a # remote server. #PGSQL_USE= PGSQL=server PGSQL_USES= qt:5 PGSQL_USE= QT=sql-pgsql_run SQLITE_DESC= Enable SQLite backend SQLITE_USES= qt:5 sqlite:3 SQLITE_USE= QT=sql-sqlite3_run SQLITE_CMAKE_ON= -DAKONADI_BUILD_QSQLITE:BOOL=ON SQLITE_CMAKE_OFF= -DAKONADI_BUILD_QSQLITE:BOOL=OFF OPTIONS_DEFAULT= MYSQL OPTIONS_DEFINE= DOCS post-patch: # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/src/server/storage/*.conf .include Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 519954) +++ head/databases/akonadi/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930723 -SHA256 (KDE/applications/19.08.3/akonadi-19.08.3.tar.xz) = cfdfa4767b1bd420c7979cf5125cc56d3926181f8484dc39ecd84a9e0808ee6c -SIZE (KDE/applications/19.08.3/akonadi-19.08.3.tar.xz) = 1579468 +TIMESTAMP = 1575623565 +SHA256 (KDE/applications/19.12.0/akonadi-19.12.0.tar.xz) = 086efe59459c3c214dc58fd612110a8b66116905abd856d35a172f20b4c56db2 +SIZE (KDE/applications/19.12.0/akonadi-19.12.0.tar.xz) = 1582164 Index: head/databases/akonadi/pkg-plist =================================================================== --- head/databases/akonadi/pkg-plist (revision 519954) +++ head/databases/akonadi/pkg-plist (revision 519955) @@ -1,465 +1,474 @@ bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat -share/qlogging-categories5/akonadi.categories -share/qlogging-categories5/akonadi.renamecategories +etc/apparmor.d/mysqld_akonadi +etc/apparmor.d/postgresql_akonadi +etc/apparmor.d/usr.bin.akonadiserver etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf +include/KF5/AkonadiAgentBase/AccountsIntegration include/KF5/AkonadiAgentBase/AgentBase include/KF5/AkonadiAgentBase/AgentSearchInterface include/KF5/AkonadiAgentBase/PreprocessorBase include/KF5/AkonadiAgentBase/ResourceBase include/KF5/AkonadiAgentBase/ResourceSettings include/KF5/AkonadiAgentBase/TransportResourceBase +include/KF5/AkonadiAgentBase/accountsintegration.h include/KF5/AkonadiAgentBase/agentbase.h include/KF5/AkonadiAgentBase/agentsearchinterface.h include/KF5/AkonadiAgentBase/akonadiagentbase_export.h include/KF5/AkonadiAgentBase/preprocessorbase.h include/KF5/AkonadiAgentBase/resourcebase.h include/KF5/AkonadiAgentBase/resourcebasesettings.h include/KF5/AkonadiAgentBase/resourcesettings.h include/KF5/AkonadiAgentBase/transportresourcebase.h include/KF5/AkonadiCore/AbstractDifferencesReporter include/KF5/AkonadiCore/AgentConfigurationBase include/KF5/AkonadiCore/AgentConfigurationFactoryBase include/KF5/AkonadiCore/AgentFilterProxyModel include/KF5/AkonadiCore/AgentInstance include/KF5/AkonadiCore/AgentInstanceCreateJob include/KF5/AkonadiCore/AgentInstanceModel include/KF5/AkonadiCore/AgentManager include/KF5/AkonadiCore/AgentType include/KF5/AkonadiCore/AgentTypeModel +include/KF5/AkonadiCore/AkOptional include/KF5/AkonadiCore/Attribute include/KF5/AkonadiCore/AttributeFactory include/KF5/AkonadiCore/CachePolicy include/KF5/AkonadiCore/ChangeNotification include/KF5/AkonadiCore/ChangeRecorder include/KF5/AkonadiCore/Collection include/KF5/AkonadiCore/CollectionAttributesSynchronizationJob include/KF5/AkonadiCore/CollectionColorAttribute include/KF5/AkonadiCore/CollectionCopyJob include/KF5/AkonadiCore/CollectionCreateJob include/KF5/AkonadiCore/CollectionDeleteJob include/KF5/AkonadiCore/CollectionFetchJob include/KF5/AkonadiCore/CollectionFetchScope include/KF5/AkonadiCore/CollectionFilterProxyModel include/KF5/AkonadiCore/CollectionIdentificationAttribute include/KF5/AkonadiCore/CollectionModifyJob include/KF5/AkonadiCore/CollectionMoveJob include/KF5/AkonadiCore/CollectionPathResolver include/KF5/AkonadiCore/CollectionQuotaAttribute include/KF5/AkonadiCore/CollectionStatistics include/KF5/AkonadiCore/CollectionStatisticsJob include/KF5/AkonadiCore/CollectionUtils include/KF5/AkonadiCore/Control include/KF5/AkonadiCore/DifferencesAlgorithmInterface include/KF5/AkonadiCore/EntityAnnotationsAttribute include/KF5/AkonadiCore/EntityDeletedAttribute include/KF5/AkonadiCore/EntityDisplayAttribute include/KF5/AkonadiCore/EntityHiddenAttribute include/KF5/AkonadiCore/EntityMimeTypeFilterModel include/KF5/AkonadiCore/EntityOrderProxyModel include/KF5/AkonadiCore/EntityRightsFilterModel include/KF5/AkonadiCore/EntityTreeModel include/KF5/AkonadiCore/ExceptionBase include/KF5/AkonadiCore/FavoriteCollectionAttribute include/KF5/AkonadiCore/FavoriteCollectionsModel include/KF5/AkonadiCore/GidExtractorInterface include/KF5/AkonadiCore/IndexPolicyAttribute include/KF5/AkonadiCore/Item include/KF5/AkonadiCore/ItemCopyJob include/KF5/AkonadiCore/ItemCreateJob include/KF5/AkonadiCore/ItemDeleteJob include/KF5/AkonadiCore/ItemFetchJob include/KF5/AkonadiCore/ItemFetchScope include/KF5/AkonadiCore/ItemModel include/KF5/AkonadiCore/ItemModifyJob include/KF5/AkonadiCore/ItemMonitor include/KF5/AkonadiCore/ItemMoveJob include/KF5/AkonadiCore/ItemSearchJob include/KF5/AkonadiCore/ItemSerializerPlugin include/KF5/AkonadiCore/ItemSync include/KF5/AkonadiCore/Job include/KF5/AkonadiCore/LinkJob include/KF5/AkonadiCore/MimeTypeChecker include/KF5/AkonadiCore/Monitor include/KF5/AkonadiCore/NewMailNotifierAttribute include/KF5/AkonadiCore/NotificationSubscriber include/KF5/AkonadiCore/PartFetcher include/KF5/AkonadiCore/PersistentSearchAttribute include/KF5/AkonadiCore/Pop3ResourceAttribute include/KF5/AkonadiCore/RecursiveCollectionFilterProxyModel include/KF5/AkonadiCore/RecursiveItemFetchJob include/KF5/AkonadiCore/Relation include/KF5/AkonadiCore/RelationCreateJob include/KF5/AkonadiCore/RelationDeleteJob include/KF5/AkonadiCore/RelationFetchJob include/KF5/AkonadiCore/ResourceSynchronizationJob include/KF5/AkonadiCore/SearchCreateJob include/KF5/AkonadiCore/SearchQuery include/KF5/AkonadiCore/SelectionProxyModel include/KF5/AkonadiCore/ServerManager include/KF5/AkonadiCore/Session include/KF5/AkonadiCore/SpecialCollectionAttribute include/KF5/AkonadiCore/SpecialCollections include/KF5/AkonadiCore/SpecialCollectionsDiscoveryJob include/KF5/AkonadiCore/SpecialCollectionsRequestJob include/KF5/AkonadiCore/StatisticsProxyModel include/KF5/AkonadiCore/Supertrait include/KF5/AkonadiCore/Tag include/KF5/AkonadiCore/TagAttribute include/KF5/AkonadiCore/TagCreateJob include/KF5/AkonadiCore/TagDeleteJob include/KF5/AkonadiCore/TagFetchJob include/KF5/AkonadiCore/TagFetchScope include/KF5/AkonadiCore/TagModel include/KF5/AkonadiCore/TagModifyJob include/KF5/AkonadiCore/TransactionJobs include/KF5/AkonadiCore/TransactionSequence include/KF5/AkonadiCore/TrashFilterProxyModel include/KF5/AkonadiCore/TrashJob include/KF5/AkonadiCore/TrashRestoreJob include/KF5/AkonadiCore/TrashSettings include/KF5/AkonadiCore/UnlinkJob include/KF5/AkonadiCore/VectorHelper include/KF5/AkonadiCore/abstractdifferencesreporter.h include/KF5/AkonadiCore/agentconfigurationbase.h include/KF5/AkonadiCore/agentconfigurationfactorybase.h include/KF5/AkonadiCore/agentfilterproxymodel.h include/KF5/AkonadiCore/agentinstance.h include/KF5/AkonadiCore/agentinstancecreatejob.h include/KF5/AkonadiCore/agentinstancemodel.h include/KF5/AkonadiCore/agentmanager.h include/KF5/AkonadiCore/agenttype.h include/KF5/AkonadiCore/agenttypemodel.h include/KF5/AkonadiCore/akonadicore_export.h +include/KF5/AkonadiCore/akoptional.h include/KF5/AkonadiCore/attribute.h include/KF5/AkonadiCore/attributefactory.h include/KF5/AkonadiCore/cachepolicy.h include/KF5/AkonadiCore/changenotification.h include/KF5/AkonadiCore/changerecorder.h include/KF5/AkonadiCore/collection.h include/KF5/AkonadiCore/collectionattributessynchronizationjob.h include/KF5/AkonadiCore/collectioncolorattribute.h include/KF5/AkonadiCore/collectioncopyjob.h include/KF5/AkonadiCore/collectioncreatejob.h include/KF5/AkonadiCore/collectiondeletejob.h include/KF5/AkonadiCore/collectionfetchjob.h include/KF5/AkonadiCore/collectionfetchscope.h include/KF5/AkonadiCore/collectionfilterproxymodel.h include/KF5/AkonadiCore/collectionidentificationattribute.h include/KF5/AkonadiCore/collectionmodifyjob.h include/KF5/AkonadiCore/collectionmovejob.h include/KF5/AkonadiCore/collectionpathresolver.h include/KF5/AkonadiCore/collectionquotaattribute.h include/KF5/AkonadiCore/collectionstatistics.h include/KF5/AkonadiCore/collectionstatisticsjob.h include/KF5/AkonadiCore/collectionutils.h +include/KF5/AkonadiCore/config-akonadi.h include/KF5/AkonadiCore/control.h include/KF5/AkonadiCore/differencesalgorithminterface.h include/KF5/AkonadiCore/entityannotationsattribute.h include/KF5/AkonadiCore/entitydeletedattribute.h include/KF5/AkonadiCore/entitydisplayattribute.h include/KF5/AkonadiCore/entityhiddenattribute.h include/KF5/AkonadiCore/entitymimetypefiltermodel.h include/KF5/AkonadiCore/entityorderproxymodel.h include/KF5/AkonadiCore/entityrightsfiltermodel.h include/KF5/AkonadiCore/entitytreemodel.h include/KF5/AkonadiCore/exceptionbase.h include/KF5/AkonadiCore/favoritecollectionattribute.h include/KF5/AkonadiCore/favoritecollectionsmodel.h include/KF5/AkonadiCore/gidextractorinterface.h include/KF5/AkonadiCore/indexpolicyattribute.h include/KF5/AkonadiCore/item.h include/KF5/AkonadiCore/itemcopyjob.h include/KF5/AkonadiCore/itemcreatejob.h include/KF5/AkonadiCore/itemdeletejob.h include/KF5/AkonadiCore/itemfetchjob.h include/KF5/AkonadiCore/itemfetchscope.h include/KF5/AkonadiCore/itemmodel.h include/KF5/AkonadiCore/itemmodifyjob.h include/KF5/AkonadiCore/itemmonitor.h include/KF5/AkonadiCore/itemmovejob.h include/KF5/AkonadiCore/itempayloadinternals_p.h include/KF5/AkonadiCore/itemsearchjob.h include/KF5/AkonadiCore/itemserializerplugin.h include/KF5/AkonadiCore/itemsync.h include/KF5/AkonadiCore/job.h include/KF5/AkonadiCore/linkjob.h include/KF5/AkonadiCore/mimetypechecker.h include/KF5/AkonadiCore/monitor.h include/KF5/AkonadiCore/newmailnotifierattribute.h include/KF5/AkonadiCore/notificationsubscriber.h +include/KF5/AkonadiCore/optional.hpp include/KF5/AkonadiCore/partfetcher.h include/KF5/AkonadiCore/persistentsearchattribute.h include/KF5/AkonadiCore/pop3resourceattribute.h include/KF5/AkonadiCore/qtest_akonadi.h include/KF5/AkonadiCore/recursivecollectionfilterproxymodel.h include/KF5/AkonadiCore/recursiveitemfetchjob.h include/KF5/AkonadiCore/relation.h include/KF5/AkonadiCore/relationcreatejob.h include/KF5/AkonadiCore/relationdeletejob.h include/KF5/AkonadiCore/relationfetchjob.h include/KF5/AkonadiCore/resourcesynchronizationjob.h include/KF5/AkonadiCore/searchcreatejob.h include/KF5/AkonadiCore/searchquery.h include/KF5/AkonadiCore/selectionproxymodel.h include/KF5/AkonadiCore/servermanager.h include/KF5/AkonadiCore/session.h include/KF5/AkonadiCore/specialcollectionattribute.h include/KF5/AkonadiCore/specialcollections.h include/KF5/AkonadiCore/specialcollectionsdiscoveryjob.h include/KF5/AkonadiCore/specialcollectionsrequestjob.h include/KF5/AkonadiCore/statisticsproxymodel.h include/KF5/AkonadiCore/supertrait.h include/KF5/AkonadiCore/tag.h include/KF5/AkonadiCore/tagattribute.h include/KF5/AkonadiCore/tagcreatejob.h include/KF5/AkonadiCore/tagdeletejob.h include/KF5/AkonadiCore/tagfetchjob.h include/KF5/AkonadiCore/tagfetchscope.h include/KF5/AkonadiCore/tagmodel.h include/KF5/AkonadiCore/tagmodifyjob.h include/KF5/AkonadiCore/transactionjobs.h include/KF5/AkonadiCore/transactionsequence.h include/KF5/AkonadiCore/trashfilterproxymodel.h include/KF5/AkonadiCore/trashjob.h include/KF5/AkonadiCore/trashrestorejob.h include/KF5/AkonadiCore/trashsettings.h include/KF5/AkonadiCore/unlinkjob.h include/KF5/AkonadiCore/vectorhelper.h include/KF5/AkonadiWidgets/AgentActionManager include/KF5/AkonadiWidgets/AgentConfigurationDialog include/KF5/AkonadiWidgets/AgentConfigurationWidget include/KF5/AkonadiWidgets/AgentInstanceWidget include/KF5/AkonadiWidgets/AgentTypeDialog include/KF5/AkonadiWidgets/AgentTypeWidget include/KF5/AkonadiWidgets/CollectionComboBox include/KF5/AkonadiWidgets/CollectionDialog include/KF5/AkonadiWidgets/CollectionMaintenancePage include/KF5/AkonadiWidgets/CollectionPropertiesDialog include/KF5/AkonadiWidgets/CollectionPropertiesPage include/KF5/AkonadiWidgets/CollectionRequester include/KF5/AkonadiWidgets/CollectionStatisticsDelegate include/KF5/AkonadiWidgets/CollectionView include/KF5/AkonadiWidgets/ControlGui include/KF5/AkonadiWidgets/ETMViewStateSaver include/KF5/AkonadiWidgets/EntityListView include/KF5/AkonadiWidgets/EntityTreeView include/KF5/AkonadiWidgets/ItemView include/KF5/AkonadiWidgets/ManageAccountWidget include/KF5/AkonadiWidgets/StandardActionManager include/KF5/AkonadiWidgets/SubscriptionDialog include/KF5/AkonadiWidgets/TagEditWidget include/KF5/AkonadiWidgets/TagManagementDialog include/KF5/AkonadiWidgets/TagSelectWidget include/KF5/AkonadiWidgets/TagSelectionDialog include/KF5/AkonadiWidgets/TagWidget include/KF5/AkonadiWidgets/agentactionmanager.h include/KF5/AkonadiWidgets/agentconfigurationdialog.h include/KF5/AkonadiWidgets/agentconfigurationwidget.h include/KF5/AkonadiWidgets/agentinstancewidget.h include/KF5/AkonadiWidgets/agenttypedialog.h include/KF5/AkonadiWidgets/agenttypewidget.h include/KF5/AkonadiWidgets/akonadiwidgets_export.h include/KF5/AkonadiWidgets/collectioncombobox.h include/KF5/AkonadiWidgets/collectiondialog.h include/KF5/AkonadiWidgets/collectionmaintenancepage.h include/KF5/AkonadiWidgets/collectionpropertiesdialog.h include/KF5/AkonadiWidgets/collectionpropertiespage.h include/KF5/AkonadiWidgets/collectionrequester.h include/KF5/AkonadiWidgets/collectionstatisticsdelegate.h include/KF5/AkonadiWidgets/collectionview.h include/KF5/AkonadiWidgets/controlgui.h include/KF5/AkonadiWidgets/entitylistview.h include/KF5/AkonadiWidgets/entitytreeview.h include/KF5/AkonadiWidgets/etmviewstatesaver.h include/KF5/AkonadiWidgets/itemview.h include/KF5/AkonadiWidgets/manageaccountwidget.h include/KF5/AkonadiWidgets/standardactionmanager.h include/KF5/AkonadiWidgets/subscriptiondialog.h include/KF5/AkonadiWidgets/tageditwidget.h include/KF5/AkonadiWidgets/tagmanagementdialog.h include/KF5/AkonadiWidgets/tagselectiondialog.h include/KF5/AkonadiWidgets/tagselectwidget.h include/KF5/AkonadiWidgets/tagwidget.h include/KF5/AkonadiXml/XmlDocument include/KF5/AkonadiXml/XmlReader include/KF5/AkonadiXml/XmlWriteJob include/KF5/AkonadiXml/XmlWriter include/KF5/AkonadiXml/akonadi-xml_export.h include/KF5/AkonadiXml/xmldocument.h include/KF5/AkonadiXml/xmlreader.h include/KF5/AkonadiXml/xmlwritejob.h include/KF5/AkonadiXml/xmlwriter.h include/KF5/akonadi/abstractsearchplugin.h include/KF5/akonadi/private/akonadiprivate_export.h include/KF5/akonadi/private/capabilities_p.h include/KF5/akonadi/private/dbus_p.h include/KF5/akonadi/private/externalpartstorage_p.h include/KF5/akonadi/private/imapparser_p.h include/KF5/akonadi/private/imapset_p.h include/KF5/akonadi/private/instance_p.h include/KF5/akonadi/private/protocol_exception_p.h include/KF5/akonadi/private/protocol_gen.h include/KF5/akonadi/private/protocol_p.h include/KF5/akonadi/private/scope_p.h include/KF5/akonadi/private/standarddirs_p.h include/KF5/akonadi/private/tristate_p.h include/KF5/akonadi_version.h lib/cmake/KF5Akonadi/KF5AkonadiConfig.cmake lib/cmake/KF5Akonadi/KF5AkonadiConfigVersion.cmake lib/cmake/KF5Akonadi/KF5AkonadiMacros.cmake lib/cmake/KF5Akonadi/KF5AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Akonadi/KF5AkonadiTargets.cmake lib/libKF5AkonadiAgentBase.so lib/libKF5AkonadiAgentBase.so.5 lib/libKF5AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiCore.so lib/libKF5AkonadiCore.so.5 lib/libKF5AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiPrivate.so lib/libKF5AkonadiPrivate.so.5 lib/libKF5AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiWidgets.so lib/libKF5AkonadiWidgets.so.5 lib/libKF5AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiXml.so lib/libKF5AkonadiXml.so.5 lib/libKF5AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiAgentBase.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiCore.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiWidgets.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiXml.pri %%QT_PLUGINDIR%%/akonadi/akonadi_test_searchplugin.so -%%QT_PLUGINDIR%%/designer/akonadi5widgets.so +%%QT_PLUGINDIR%%/designer/akonadiwidgets.so %%SQLITE%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlite3.so %%DATADIR%%/agents/knutresource.desktop share/config.kcfg/resourcebase.kcfg share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Search.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationSource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Preprocessor.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.StorageDebugger.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/icons/hicolor/128x128/apps/akonadi.png share/icons/hicolor/16x16/apps/akonadi.png share/icons/hicolor/22x22/apps/akonadi.png share/icons/hicolor/256x256/apps/akonadi.png share/icons/hicolor/32x32/apps/akonadi.png share/icons/hicolor/48x48/apps/akonadi.png share/icons/hicolor/64x64/apps/akonadi.png share/icons/hicolor/scalable/apps/akonadi.svgz share/kdevappwizard/templates/akonadiresource.tar.bz2 share/kdevappwizard/templates/akonadiserializer.tar.bz2 share/kf5/akonadi/akonadi-xml.xsd share/kf5/akonadi/kcfg2dbus.xsl share/kf5/akonadi_knut_resource/knut-template.xml share/locale/ar/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ar/LC_MESSAGES/libakonadi5.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi5.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi5.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi5.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi5.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi5.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi5.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi5.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi5.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi5.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi5.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi5.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi5.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi5.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi5.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi5.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi5.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi5.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi5.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi5.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi5.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi5.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi5.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi5.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi5.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi5.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi5.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi5.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi5.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi5.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi5.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi5.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi5.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi5.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi5.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi5.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi5.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi5.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi5.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi5.mo share/locale/tr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tr/LC_MESSAGES/libakonadi5.mo share/locale/ug/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ug/LC_MESSAGES/libakonadi5.mo share/locale/uk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/uk/LC_MESSAGES/libakonadi5.mo share/locale/zh_CN/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_CN/LC_MESSAGES/libakonadi5.mo share/locale/zh_TW/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_TW/LC_MESSAGES/libakonadi5.mo share/mime/packages/akonadi-mime.xml +share/qlogging-categories5/akonadi.categories +share/qlogging-categories5/akonadi.renamecategories Index: head/deskutils/akonadi-calendar-tools/Makefile =================================================================== --- head/deskutils/akonadi-calendar-tools/Makefile (revision 519954) +++ head/deskutils/akonadi-calendar-tools/Makefile (revision 519955) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= akonadi-calendar-tools DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= CLI tools to manage akonadi calendars LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemmodels \ itemviews jobwidgets kdelibs4support kio notifications parts \ service solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicalendar calendarsupport calendarcore calendarutils \ identitymanagement libkdepim mime pimtextedit USE_QT= core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 519954) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930724 -SHA256 (KDE/applications/19.08.3/akonadi-calendar-tools-19.08.3.tar.xz) = 539bef47c9586f1edb87cedf63cce140dab4f19b6a94fbe08b0cd4c083cf6ffc -SIZE (KDE/applications/19.08.3/akonadi-calendar-tools-19.08.3.tar.xz) = 223564 +TIMESTAMP = 1575623460 +SHA256 (KDE/applications/19.12.0/akonadi-calendar-tools-19.12.0.tar.xz) = 4829cb9ec152a89b2a8c66e5bc285f40a849cb69381e97f8712275e24a79f8a7 +SIZE (KDE/applications/19.12.0/akonadi-calendar-tools-19.12.0.tar.xz) = 223424 Index: head/deskutils/akonadi-import-wizard/Makefile =================================================================== --- head/deskutils/akonadi-import-wizard/Makefile (revision 519954) +++ head/deskutils/akonadi-import-wizard/Makefile (revision 519955) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= akonadi-import-wizard DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import data from other mail clients to KMail LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm i18n itemmodels kio service wallet \ widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts identitymanagement \ imap libkdepim libkleo mailcommon mailimporter mailtransport \ messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 519954) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930724 -SHA256 (KDE/applications/19.08.3/akonadi-import-wizard-19.08.3.tar.xz) = 1a11207826ecc59af73ca2dae1b6299a6cd9c71c093e634043295747ba8f6553 -SIZE (KDE/applications/19.08.3/akonadi-import-wizard-19.08.3.tar.xz) = 438896 +TIMESTAMP = 1575623445 +SHA256 (KDE/applications/19.12.0/akonadi-import-wizard-19.12.0.tar.xz) = 9f5a5195fef1f8b7631477dbc5c07acb61e2b981dac900f45728248e114d4a13 +SIZE (KDE/applications/19.12.0/akonadi-import-wizard-19.12.0.tar.xz) = 439116 Index: head/deskutils/akonadiconsole/Makefile =================================================================== --- head/deskutils/akonadiconsole/Makefile (revision 519954) +++ head/deskutils/akonadiconsole/Makefile (revision 519955) @@ -1,40 +1,39 @@ # $FreeBSD$ PORTNAME= akonadiconsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Akonadi management and debugging console LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 \ libical.so:devel/libical \ libxapian.so:databases/xapian-core USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kdelibs4support kio \ notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadisearch calendarcore calendarsupport contacts \ identitymanagement libkdepim libkleo messagelib mime \ pimcommon pimtextedit USE_QT= concurrent core dbus gui network printsupport sql widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 519954) +++ head/deskutils/akonadiconsole/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930725 -SHA256 (KDE/applications/19.08.3/akonadiconsole-19.08.3.tar.xz) = 37253a4b56afc34e52a05b58f63d1cdce221a11432c713f159b5c033a6018947 -SIZE (KDE/applications/19.08.3/akonadiconsole-19.08.3.tar.xz) = 193848 +TIMESTAMP = 1575623443 +SHA256 (KDE/applications/19.12.0/akonadiconsole-19.12.0.tar.xz) = 8fc9e49c465ead5d03dc9e16908e5d70d1bf01749da295ff830c5083e691adc7 +SIZE (KDE/applications/19.12.0/akonadiconsole-19.12.0.tar.xz) = 193624 Index: head/deskutils/akregator/Makefile =================================================================== --- head/deskutils/akregator/Makefile (revision 519954) +++ head/deskutils/akregator/Makefile (revision 519955) @@ -1,37 +1,36 @@ # $FreeBSD$ PORTNAME= akregator DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= A Feed Reader by KDE LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ ecm i18n iconthemes itemmodels jobwidgets kcmutils kio \ notifications notifyconfig parts service sonnet texteditor\ textwidgets widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadimime contacts grantleetheme kontactinterface \ libkdepim libkleo messagelib mime pimcommon pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 519954) +++ head/deskutils/akregator/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930726 -SHA256 (KDE/applications/19.08.3/akregator-19.08.3.tar.xz) = c3aab6ebba25eab8c76b113a900af33a90222257f957650d0bbc0c47d5cf4bc9 -SIZE (KDE/applications/19.08.3/akregator-19.08.3.tar.xz) = 2193472 +TIMESTAMP = 1575623459 +SHA256 (KDE/applications/19.12.0/akregator-19.12.0.tar.xz) = 48adb2afc9005f3b028753bf389e892283de269d93c43e2e62eef7d760033d16 +SIZE (KDE/applications/19.12.0/akregator-19.12.0.tar.xz) = 2193148 Index: head/deskutils/grantlee-editor/Makefile =================================================================== --- head/deskutils/grantlee-editor/Makefile (revision 519954) +++ head/deskutils/grantlee-editor/Makefile (revision 519955) @@ -1,38 +1,37 @@ # $FreeBSD$ PORTNAME= grantlee-editor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Editor for Grantlee themes LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 \ kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n itemmodels jobwidgets \ kio newstuff service syntaxhighlighting texteditor \ widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme \ kdepim-apps-libs libkleo messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 519954) +++ head/deskutils/grantlee-editor/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930727 -SHA256 (KDE/applications/19.08.3/grantlee-editor-19.08.3.tar.xz) = 4d81e56ee89bf8ff19ba112b2ecaf6080b7fbc6768030b4dbb4f15a1099a5bce -SIZE (KDE/applications/19.08.3/grantlee-editor-19.08.3.tar.xz) = 111720 +TIMESTAMP = 1575623448 +SHA256 (KDE/applications/19.12.0/grantlee-editor-19.12.0.tar.xz) = 21e1d51cbe7deda7c6db6eef3eae4331c55992be514b2809f200a5df39578be9 +SIZE (KDE/applications/19.12.0/grantlee-editor-19.12.0.tar.xz) = 111380 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 519954) +++ head/deskutils/grantleetheme/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930728 -SHA256 (KDE/applications/19.08.3/grantleetheme-19.08.3.tar.xz) = ab1b0f55399c520191cf1241d85881e3f5b441ee82b387e7fbef55e77dc0e748 -SIZE (KDE/applications/19.08.3/grantleetheme-19.08.3.tar.xz) = 52260 +TIMESTAMP = 1575623458 +SHA256 (KDE/applications/19.12.0/grantleetheme-19.12.0.tar.xz) = 47709809795211d69c1878617d00b3cbdb151473003b43b370920194c4702197 +SIZE (KDE/applications/19.12.0/grantleetheme-19.12.0.tar.xz) = 55136 Index: head/deskutils/kaddressbook/Makefile =================================================================== --- head/deskutils/kaddressbook/Makefile (revision 519954) +++ head/deskutils/kaddressbook/Makefile (revision 519955) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= kaddressbook DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE contact manager LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ ecm i18n iconthemes itemmodels jobwidgets kcmutils kio parts \ prison service sonnet textwidgets widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme \ imap kdepim-apps-libs kontactinterface libkdepim mime pimcommon \ kdepim-runtime5_run USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 519954) +++ head/deskutils/kaddressbook/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930728 -SHA256 (KDE/applications/19.08.3/kaddressbook-19.08.3.tar.xz) = e343187628af4b6142cc7177ea67a3460b6f2b96c608a5b4bd469f2d314bf4ae -SIZE (KDE/applications/19.08.3/kaddressbook-19.08.3.tar.xz) = 473792 +TIMESTAMP = 1575623456 +SHA256 (KDE/applications/19.12.0/kaddressbook-19.12.0.tar.xz) = d1239fe30291ffbdd220c9d2cd53def293148f3c77061e0927ecd10630a6c83e +SIZE (KDE/applications/19.12.0/kaddressbook-19.12.0.tar.xz) = 2379408 Index: head/deskutils/kalarm/Makefile =================================================================== --- head/deskutils/kalarm/Makefile (revision 519954) +++ head/deskutils/kalarm/Makefile (revision 519955) @@ -1,38 +1,37 @@ # $FreeBSD$ PORTNAME= kalarm DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Personal alarm scheduler LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ notifications parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime alarmcalendar calendarcore \ calendarutils contacts globalaccel holidays identitymanagement \ kdepim-apps-libs libkdepim mailcommon mailtransport mime \ pimcommon pimtextedit imap \ kdepim-runtime5_run USE_QT= concurrent core dbus gui network phonon4 printsupport widgets \ x11extras xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes SHEBANG_FILES= src/kconf_update/kalarm*.pl DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 519954) +++ head/deskutils/kalarm/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930729 -SHA256 (KDE/applications/19.08.3/kalarm-19.08.3.tar.xz) = 34d73be35b0cdf6189bf3792e939fa9557bffff8271966d9fc49217e488317e8 -SIZE (KDE/applications/19.08.3/kalarm-19.08.3.tar.xz) = 1823656 +TIMESTAMP = 1575623455 +SHA256 (KDE/applications/19.12.0/kalarm-19.12.0.tar.xz) = b6c0d645272b37da0757f98cbb3fc347a968d72b006ad1bbb8ed97c35aa52bfc +SIZE (KDE/applications/19.12.0/kalarm-19.12.0.tar.xz) = 1838864 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 519954) +++ head/deskutils/kcharselect/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930730 -SHA256 (KDE/applications/19.08.3/kcharselect-19.08.3.tar.xz) = f294965fc7cf8b1063b611233a98fab13a00263f1d4fd254fb8b53b3f125bc52 -SIZE (KDE/applications/19.08.3/kcharselect-19.08.3.tar.xz) = 334588 +TIMESTAMP = 1575623462 +SHA256 (KDE/applications/19.12.0/kcharselect-19.12.0.tar.xz) = 211a407478fb5df425d4716b9764f09458266a8d7d9507fba37bb91507a30864 +SIZE (KDE/applications/19.12.0/kcharselect-19.12.0.tar.xz) = 335508 Index: head/deskutils/kdepim-addons/Makefile =================================================================== --- head/deskutils/kdepim-addons/Makefile (revision 519954) +++ head/deskutils/kdepim-addons/Makefile (revision 519955) @@ -1,44 +1,43 @@ # $FreeBSD$ PORTNAME= kdepim-addons DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM addons LICENSE= LGPL21 BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels itemviews jobwidgets \ kdeclarative khtml kio prison service sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadiimportwizard \ akonadimime akonadinotes calendarcore calendarsupport \ calendarutils contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap incidenceeditor \ kdepim-apps-libs kitinerary kontactinterface kpkpass libkdepim \ libkleo libksieve mailcommon mailimporter mailtransport \ messagelib mime pimcommon pimtextedit tnef USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 519954) +++ head/deskutils/kdepim-addons/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930731 -SHA256 (KDE/applications/19.08.3/kdepim-addons-19.08.3.tar.xz) = 8c85cec6b827da6025364ec6bbccdf2ab22c73380933aed69cf3c86be52cff24 -SIZE (KDE/applications/19.08.3/kdepim-addons-19.08.3.tar.xz) = 2091080 +TIMESTAMP = 1575623466 +SHA256 (KDE/applications/19.12.0/kdepim-addons-19.12.0.tar.xz) = 88d2a087d826cd78e65b03d280d9b0d65c0632afeda7ea12b6f25e4b1da1a45b +SIZE (KDE/applications/19.12.0/kdepim-addons-19.12.0.tar.xz) = 2105188 Index: head/deskutils/kdepim-addons/pkg-plist =================================================================== --- head/deskutils/kdepim-addons/pkg-plist (revision 519954) +++ head/deskutils/kdepim-addons/pkg-plist (revision 519955) @@ -1,1021 +1,992 @@ bin/akonadimailreader bin/coisceim bin/etm_usage bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so -lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libadblocklibprivate.so.5 -lib/libcoisceim_widget.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libcoisceim_widget.so.5 -lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libcoisceim_widget.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libdkimverifyconfigure.so.5 +lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 -lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookimportexportlibprivate.so.5 -lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 -lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 -lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 -lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.5 -lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkmailquicktextpluginprivate.so.5 +lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 +lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +%%QT_PLUGINDIR%%/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/coisceimpart.so -%%QT_PLUGINDIR%%/contacteditor/addresslocationeditorplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/nylasmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antispamplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/kmail/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_expertplugin.so %%QT_PLUGINDIR%%/kmail/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/kmail/kmail_logactivitiesplugin.so %%QT_PLUGINDIR%%/kmail/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/kmail_nonbreakingspaceeditorplugin.so +%%QT_PLUGINDIR%%/kmail/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/kmail/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/korg_datenums.so %%QT_PLUGINDIR%%/korg_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/libksieve/regexpeditorlineeditplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createtodoplugin.so +%%QT_PLUGINDIR%%/messageviewer/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_PLUGINDIR%%/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_donottrackplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir - share/applications/org.kde.akonadimailreader.desktop share/config.kcfg/mailreader.kcfg -share/contacteditor/grantleetheme/default/addresseslocation.css -share/contacteditor/grantleetheme/default/addresseslocation.html share/kconf_update/languagetool_kmail.upd share/kconf_update/webengineurlinterceptoradblock.upd -share/kmail2/pics/kmwizard.png -share/kmail2/pics/kmwizard.svg share/kservices5/coisceimpart.desktop share/kservices5/korganizer/datenums.desktop share/kservices5/korganizer/picoftheday.desktop share/kservices5/korganizer/thisdayinhistory.desktop share/kxmlgui5/akonadimailreader/akonadimailreaderui.rc share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo -share/locale/ar/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/mailreader.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/mailreader.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo -share/locale/ca/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/mailreader.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo -share/locale/ca@valencia/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/mailreader.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo -share/locale/cs/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/mailreader.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/mailreader.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo -share/locale/de/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/mailreader.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/mailreader.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo -share/locale/en_GB/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/mailreader.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/mailreader.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo -share/locale/es/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/mailreader.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/mailreader.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo -share/locale/fi/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/mailreader.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo -share/locale/fr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/mailreader.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/mailreader.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo -share/locale/gl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/mailreader.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/mailreader.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/mailreader.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo -share/locale/it/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/mailreader.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo -share/locale/ja/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/mailreader.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/mailreader.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/mailreader.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo -share/locale/ko/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/mailreader.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo -share/locale/lt/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/mailreader.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/pimeventsplugin.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/mailreader.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/mailreader.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo -share/locale/nb/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/mailreader.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/mailreader.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo -share/locale/nl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/mailreader.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo -share/locale/nn/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/mailreader.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/mailreader.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo -share/locale/pl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/mailreader.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo -share/locale/pt/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/mailreader.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo -share/locale/pt_BR/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/mailreader.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/mailreader.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo -share/locale/ru/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/mailreader.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo -share/locale/sk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/mailreader.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/mailreader.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo -share/locale/sr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/mailreader.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo -share/locale/sv/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/mailreader.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/mailreader.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/mailreader.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo -share/locale/uk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/mailreader.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo -share/locale/zh_CN/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/mailreader.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo -share/locale/zh_TW/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/mailreader.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo -share/messageviewer/themes/example/header.desktop -share/messageviewer/themes/example/header.html -share/messageviewer/themes/example/header_row.html -share/messageviewer/themes/example_fancy/header.desktop -share/messageviewer/themes/example_fancy/header.html share/messageviewerplugins/externalscriptexample.desktop share/qlogging-categories5/kdepim-addons.categories share/qlogging-categories5/kdepim-addons.renamecategories share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json Index: head/deskutils/kdepim-apps-libs/Makefile =================================================================== --- head/deskutils/kdepim-apps-libs/Makefile (revision 519954) +++ head/deskutils/kdepim-apps-libs/Makefile (revision 519955) @@ -1,34 +1,33 @@ # $FreeBSD$ PORTNAME= kdepim-apps-libs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM mail related libraries LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels jobwidgets \ kdewebkit kio service sonnet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts contacts grantleetheme libkleo mime \ pimcommon pimtextedit USE_QT= concurrent core dbus gui network testlib uitools webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 519954) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930731 -SHA256 (KDE/applications/19.08.3/kdepim-apps-libs-19.08.3.tar.xz) = 3c478455a0f4704aa4f8a42e92f0657e01b749c568dc6e89bfae5496eefeab83 -SIZE (KDE/applications/19.08.3/kdepim-apps-libs-19.08.3.tar.xz) = 82380 +TIMESTAMP = 1575623463 +SHA256 (KDE/applications/19.12.0/kdepim-apps-libs-19.12.0.tar.xz) = ad881d0df4d06293f5f3c1c6e7c62ccb960571eea0af87d18b73a4e367d6becb +SIZE (KDE/applications/19.12.0/kdepim-apps-libs-19.12.0.tar.xz) = 83080 Index: head/deskutils/kdepim-runtime/Makefile =================================================================== --- head/deskutils/kdepim-runtime/Makefile (revision 519954) +++ head/deskutils/kdepim-runtime/Makefile (revision 519955) @@ -1,43 +1,42 @@ # $FreeBSD$ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services LICENSE= LGPL21 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ libqca-qt5.so:devel/qca \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c-3.2.so:textproc/xerces-c3 USES= cmake:noninja compiler:c++11-lib gettext kde:5 qt:5 \ shared-mime-info tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ kross notifications notifyconfig parts service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar calendarcore \ calendarutils contacts gapi identitymanagement imap \ kontactinterface kpimdav mailtransport mbox mime pimcommon \ pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network networkauth printsupport speech \ script webchannel webengine widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 519954) +++ head/deskutils/kdepim-runtime/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930732 -SHA256 (KDE/applications/19.08.3/kdepim-runtime-19.08.3.tar.xz) = 2673967456b7eacbd69ca678761e479bfa65a0ec6455c86b3a83c76d766a71ea -SIZE (KDE/applications/19.08.3/kdepim-runtime-19.08.3.tar.xz) = 1733348 +TIMESTAMP = 1575623461 +SHA256 (KDE/applications/19.12.0/kdepim-runtime-19.12.0.tar.xz) = ec99e1376caa42443b2c2d32f16e78df9eb4b9716338aac366de72eb94c0eec8 +SIZE (KDE/applications/19.12.0/kdepim-runtime-19.12.0.tar.xz) = 1731636 Index: head/deskutils/kdepim-runtime/pkg-plist =================================================================== --- head/deskutils/kdepim-runtime/pkg-plist (revision 519954) +++ head/deskutils/kdepim-runtime/pkg-plist (revision 519955) @@ -1,1724 +1,1721 @@ 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_facebook_resource bin/akonadi_googlecalendar_resource bin/akonadi_googlecontacts_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kalarm_dir_resource bin/akonadi_kalarm_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/akonadi/config/contactsconfig.so -%%QT_PLUGINDIR%%/akonadi/config/facebookconfig.so %%QT_PLUGINDIR%%/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/akonadi/config/kalarmconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/kf5/kio/pop3.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop -share/akonadi/agents/facebookresource.desktop share/akonadi/agents/googlecalendarresource.desktop share/akonadi/agents/googlecontactsresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kalarmdirresource.desktop share/akonadi/agents/kalarmresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi.protocol share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/kservices5/pop3.protocol share/kservices5/pop3s.protocol share/kservicetypes5/davgroupwareprovider.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ar/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/kio_pop3.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/bs/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ca/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/kio_pop3.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/kio_pop3.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/cs/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/kio_pop3.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/da/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/kio_pop3.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/de/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/kio_pop3.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/el/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/kio_pop3.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/kio_pop3.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/es/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/et/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/kio_pop3.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/kio_pop3.mo share/locale/fa/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/fi/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/fr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/kio_pop3.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ga/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/ga/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/gl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/he/LC_MESSAGES/kio_pop3.mo share/locale/hi/LC_MESSAGES/kio_pop3.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hr/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/hu/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_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_googlecalendar_resource.mo share/locale/ia/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/kio_pop3.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/is/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/it/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ja/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/kio_pop3.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/kk/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/kk/LC_MESSAGES/kio_pop3.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/km/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ko/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/lt/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/kio_pop3.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/lv/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/kio_pop3.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/mr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/mr/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nb/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nds/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/kio_pop3.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/kio_pop3.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/nn/LC_MESSAGES/kio_pop3.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pt/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/kio_pop3.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/kio_pop3.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ro/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ru/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sk/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/kio_pop3.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/kio_pop3.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/kio_pop3.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sv/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/kio_pop3.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/tr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/kio_pop3.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ug/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/ug/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/uk/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/kio_pop3.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/kio_pop3.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 519954) +++ head/deskutils/keditbookmarks/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930733 -SHA256 (KDE/applications/19.08.3/keditbookmarks-19.08.3.tar.xz) = ce2e90f24cac8dabe3e3804232715b47e247d51c86699162e2f7f63d1f290b05 -SIZE (KDE/applications/19.08.3/keditbookmarks-19.08.3.tar.xz) = 187176 +TIMESTAMP = 1575623465 +SHA256 (KDE/applications/19.12.0/keditbookmarks-19.12.0.tar.xz) = adb7d291f5daa0e85f6421abf71265c3bb1b2a887efe5f831d9adb6552e4f133 +SIZE (KDE/applications/19.12.0/keditbookmarks-19.12.0.tar.xz) = 187376 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 519954) +++ head/deskutils/kfind/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930734 -SHA256 (KDE/applications/19.08.3/kfind-19.08.3.tar.xz) = 6ebb7d361a8456e3a3bc7bac995a0224cd76eefd724ff62ba0d6348f7eb1f4f2 -SIZE (KDE/applications/19.08.3/kfind-19.08.3.tar.xz) = 269316 +TIMESTAMP = 1575623441 +SHA256 (KDE/applications/19.12.0/kfind-19.12.0.tar.xz) = 826048d289cb035faebbb64e31d058ec5c7ae56ec52d8c5a5afae7503586b01c +SIZE (KDE/applications/19.12.0/kfind-19.12.0.tar.xz) = 270092 Index: head/deskutils/kmail/Makefile =================================================================== --- head/deskutils/kmail/Makefile (revision 519954) +++ head/deskutils/kmail/Makefile (revision 519955) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= kmail DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE mail client LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 RUN_DEPENDS= accountwizard:deskutils/kmail-account-wizard \ akonadiimportwizard:deskutils/akonadi-import-wizard \ mboximporter:deskutils/mbox-importer \ sieveeditor:deskutils/pim-sieve-editor USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes imap \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ notifications notifyconfig parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ calendarutils contacts gravatar kdepim-apps-libs \ identitymanagement libkdepim libkleo libksieve \ kontactinterface ldap mailcommon mailtransport messagelib \ mime pimcommon pimtextedit tnef \ kdepim-runtime5_run USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 519954) +++ head/deskutils/kmail/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930735 -SHA256 (KDE/applications/19.08.3/kmail-19.08.3.tar.xz) = d39d40ed61fc6828af06ad2a713b4c741685cec68471c57e18001277d3be4d3f -SIZE (KDE/applications/19.08.3/kmail-19.08.3.tar.xz) = 4728620 +TIMESTAMP = 1575623449 +SHA256 (KDE/applications/19.12.0/kmail-19.12.0.tar.xz) = 21534c77bbf096e85be10d95bfdd8868c628d72638e03e6cdf3e4a416f6d7066 +SIZE (KDE/applications/19.12.0/kmail-19.12.0.tar.xz) = 4712840 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 519954) +++ head/deskutils/kmail/pkg-plist (revision 519955) @@ -1,388 +1,389 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories share/qlogging-categories5/ktnefapps.categories share/qlogging-categories5/ktnefapps.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop share/applications/org.kde.kmail-refresh-settings.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail.mo +share/locale/ru/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 519954) +++ head/deskutils/kmail-account-wizard/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930735 -SHA256 (KDE/applications/19.08.3/kmail-account-wizard-19.08.3.tar.xz) = eb998583eb99f9e06eda35c7d44819ffac33fbe1a068c597bc43db271f194f68 -SIZE (KDE/applications/19.08.3/kmail-account-wizard-19.08.3.tar.xz) = 158132 +TIMESTAMP = 1575623440 +SHA256 (KDE/applications/19.12.0/kmail-account-wizard-19.12.0.tar.xz) = 8ee7ce3eb552d03a6c625909bc8733f6244123b3d4e28524025f1879ed630509 +SIZE (KDE/applications/19.12.0/kmail-account-wizard-19.12.0.tar.xz) = 158164 Index: head/deskutils/knotes/Makefile =================================================================== --- head/deskutils/knotes/Makefile (revision 519954) +++ head/deskutils/knotes/Makefile (revision 519955) @@ -1,37 +1,36 @@ # $FreeBSD$ PORTNAME= knotes DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Popup notes LICENSE= LGPL21 LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd globalaccel guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets kcmutils \ kdelibs4support kio newstuff notifications notifyconfig parts \ service solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadinotes akonadisearch \ calendarcore calendarutils contacts grantleetheme imap kontactinterface libkdepim \ mime pimcommon pimtextedit \ kdepim-runtime5_run USE_QT= concurrent core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 519954) +++ head/deskutils/knotes/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930736 -SHA256 (KDE/applications/19.08.3/knotes-19.08.3.tar.xz) = 07ad3c7c8f5e7429c1f112aca10c164468dbbd5c356b504aa1fc172bb1bb1889 -SIZE (KDE/applications/19.08.3/knotes-19.08.3.tar.xz) = 319336 +TIMESTAMP = 1575623457 +SHA256 (KDE/applications/19.12.0/knotes-19.12.0.tar.xz) = 2c81b91b18d39c2654319e005c68ffb78599c0bca85b99de45de64fdbdacf5e3 +SIZE (KDE/applications/19.12.0/knotes-19.12.0.tar.xz) = 320516 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 519954) +++ head/deskutils/kontact/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930737 -SHA256 (KDE/applications/19.08.3/kontact-19.08.3.tar.xz) = 2bc81b4c051856894d5405532e9663a59abf25bfed1cf0394ee24e219b4752d5 -SIZE (KDE/applications/19.08.3/kontact-19.08.3.tar.xz) = 794920 +TIMESTAMP = 1575623442 +SHA256 (KDE/applications/19.12.0/kontact-19.12.0.tar.xz) = 6a48ec8e058c9bfa983804b94e3cf4e0e83d8fe38890d3ad248ba1cb7c37c269 +SIZE (KDE/applications/19.12.0/kontact-19.12.0.tar.xz) = 794248 Index: head/deskutils/korganizer/Makefile =================================================================== --- head/deskutils/korganizer/Makefile (revision 519954) +++ head/deskutils/korganizer/Makefile (revision 519955) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= korganizer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar and scheduling Program LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ newstuff notifications parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadinotes akonadisearch calendarcore calendarsupport \ calendarutils contacts eventviews holidays identitymanagement \ imap incidenceeditor kdepim-apps-libs kontactinterface ldap \ libkdepim mailtransport mime pimcommon pimtextedit \ kdepim-runtime5_run USE_QT= concurrent core dbus gui multimedia network phonon4 printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 519954) +++ head/deskutils/korganizer/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930738 -SHA256 (KDE/applications/19.08.3/korganizer-19.08.3.tar.xz) = b675b6c7a2a28a51bd377872c69795157825fd04fbef6dd4c97c33f659adadc7 -SIZE (KDE/applications/19.08.3/korganizer-19.08.3.tar.xz) = 2222956 +TIMESTAMP = 1575623451 +SHA256 (KDE/applications/19.12.0/korganizer-19.12.0.tar.xz) = 96e712b92860a826c9487337ef73a3118847b41f875e5a324c5242b97470c539 +SIZE (KDE/applications/19.12.0/korganizer-19.12.0.tar.xz) = 2227452 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 519954) +++ head/deskutils/kruler/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930738 -SHA256 (KDE/applications/19.08.3/kruler-19.08.3.tar.xz) = 1825ec4b7f6a0ffc00f1ed09d2879a8d9925da49e62bad0a7484d4e90903df79 -SIZE (KDE/applications/19.08.3/kruler-19.08.3.tar.xz) = 249500 +TIMESTAMP = 1575623446 +SHA256 (KDE/applications/19.12.0/kruler-19.12.0.tar.xz) = 1aaac8346a3c7ec15114ef046f4ba0e2342332117cdad9e244bf6cd2277bef04 +SIZE (KDE/applications/19.12.0/kruler-19.12.0.tar.xz) = 250480 Index: head/deskutils/libkdepim/Makefile =================================================================== --- head/deskutils/libkdepim/Makefile (revision 519954) +++ head/deskutils/libkdepim/Makefile (revision 519955) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= libkdepim DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM Libraries LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake gettext compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes itemmodels itemviews jobwidgets kcmutils \ kio service wallet widgetsaddons # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts ldap mime USE_QT= concurrent core dbus designer gui network testlib uiplugin uitools \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 519954) +++ head/deskutils/libkdepim/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930739 -SHA256 (KDE/applications/19.08.3/libkdepim-19.08.3.tar.xz) = 36c9457868fd98648a911304a485e8509689bfc280f9d4ad2631ba15f849b059 -SIZE (KDE/applications/19.08.3/libkdepim-19.08.3.tar.xz) = 333408 +TIMESTAMP = 1575623447 +SHA256 (KDE/applications/19.12.0/libkdepim-19.12.0.tar.xz) = 6aa6f6cdb464efb498104387bf1d6f2b762b87d3b0bd7c22014d1adf85c5f5f1 +SIZE (KDE/applications/19.12.0/libkdepim-19.12.0.tar.xz) = 333096 Index: head/deskutils/libkdepim/pkg-plist =================================================================== --- head/deskutils/libkdepim/pkg-plist (revision 519954) +++ head/deskutils/libkdepim/pkg-plist (revision 519955) @@ -1,164 +1,162 @@ share/qlogging-categories5/libkdepim.categories share/qlogging-categories5/libkdepim.renamecategories include/KF5/Libkdepim/AddHostDialog include/KF5/Libkdepim/AddresseeLineEditUtil include/KF5/Libkdepim/BroadcastStatus include/KF5/Libkdepim/CustomLogWidget include/KF5/Libkdepim/EmailValidator include/KF5/Libkdepim/KCheckComboBox include/KF5/Libkdepim/KCursorSaver include/KF5/Libkdepim/KDatePickerPopup include/KF5/Libkdepim/KPrefsDialog include/KF5/Libkdepim/KWeekdayCheckCombo include/KF5/Libkdepim/KWidgetLister include/KF5/Libkdepim/LdapClient include/KF5/Libkdepim/LdapClientSearch include/KF5/Libkdepim/LdapClientSearchConfig include/KF5/Libkdepim/LdapConfigureWidget include/KF5/Libkdepim/LdapSearchDialog include/KF5/Libkdepim/MaillistDrag include/KF5/Libkdepim/MultiplyingLine include/KF5/Libkdepim/MultiplyingLineEditor include/KF5/Libkdepim/OverlayWidget include/KF5/Libkdepim/PIMMessageBox include/KF5/Libkdepim/ProgressDialog include/KF5/Libkdepim/ProgressIndicatorLabel -include/KF5/Libkdepim/ProgressIndicatorWidget include/KF5/Libkdepim/ProgressManager include/KF5/Libkdepim/ProgressStatusBarWidget include/KF5/Libkdepim/RecentAddresses include/KF5/Libkdepim/StatusbarProgressWidget include/KF5/Libkdepim/UiStateSaver include/KF5/LibkdepimAkonadi/AddContactJob include/KF5/LibkdepimAkonadi/AddEmailAddressJob include/KF5/LibkdepimAkonadi/AddEmailDisplayJob include/KF5/LibkdepimAkonadi/AddresseeLineEdit include/KF5/LibkdepimAkonadi/CompletionConfigureDialog include/KF5/LibkdepimAkonadi/CompletionOrderEditor include/KF5/LibkdepimAkonadi/OpenEmailAddressJob include/KF5/LibkdepimAkonadi/ProgressManagerAkonadi include/KF5/LibkdepimAkonadi/TagSelectionCombo include/KF5/LibkdepimAkonadi/TagWidgets include/KF5/libkdepim/addhostdialog.h include/KF5/libkdepim/addresseelineeditutil.h include/KF5/libkdepim/broadcaststatus.h include/KF5/libkdepim/customlogwidget.h include/KF5/libkdepim/emailvalidator.h include/KF5/libkdepim/kcheckcombobox.h include/KF5/libkdepim/kcursorsaver.h include/KF5/libkdepim/kdatepickerpopup.h include/KF5/libkdepim/kdepim_export.h include/KF5/libkdepim/kprefsdialog.h include/KF5/libkdepim/kweekdaycheckcombo.h include/KF5/libkdepim/kwidgetlister.h include/KF5/libkdepim/ldapclient.h include/KF5/libkdepim/ldapclientsearch.h include/KF5/libkdepim/ldapclientsearchconfig.h include/KF5/libkdepim/ldapconfigurewidget.h include/KF5/libkdepim/ldapsearchdialog.h include/KF5/libkdepim/maillistdrag.h include/KF5/libkdepim/multiplyingline.h include/KF5/libkdepim/multiplyinglineeditor.h include/KF5/libkdepim/overlaywidget.h include/KF5/libkdepim/pimmessagebox.h include/KF5/libkdepim/progressdialog.h include/KF5/libkdepim/progressindicatorlabel.h -include/KF5/libkdepim/progressindicatorwidget.h include/KF5/libkdepim/progressmanager.h include/KF5/libkdepim/progressstatusbarwidget.h include/KF5/libkdepim/recentaddresses.h include/KF5/libkdepim/statusbarprogresswidget.h include/KF5/libkdepim/uistatesaver.h include/KF5/libkdepim_version.h include/KF5/libkdepimakonadi/addcontactjob.h include/KF5/libkdepimakonadi/addemailaddressjob.h include/KF5/libkdepimakonadi/addemaildisplayjob.h include/KF5/libkdepimakonadi/addresseelineedit.h include/KF5/libkdepimakonadi/completionconfiguredialog.h include/KF5/libkdepimakonadi/completionordereditor.h include/KF5/libkdepimakonadi/kdepimakonadi_export.h include/KF5/libkdepimakonadi/openemailaddressjob.h include/KF5/libkdepimakonadi/progressmanagerakonadi.h include/KF5/libkdepimakonadi/tagselectioncombo.h include/KF5/libkdepimakonadi/tagwidgets.h include/KF5/libkdepimakonadi_version.h lib/cmake/KF5Libkdepim/KF5LibkdepimConfig.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimConfigVersion.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimTargets.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiConfig.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiConfigVersion.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiTargets.cmake lib/cmake/MailTransportDBusService/MailTransportDBusServiceConfig.cmake lib/libKF5Libkdepim.so lib/libKF5Libkdepim.so.5 lib/libKF5Libkdepim.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5LibkdepimAkonadi.so lib/libKF5LibkdepimAkonadi.so.5 lib/libKF5LibkdepimAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkdepim.pri %%QT_MKSPECDIR%%/modules/qt_LibkdepimAkonadi.pri %%QT_PLUGINDIR%%/designer/kdepimakonadiwidgets.so %%QT_PLUGINDIR%%/designer/kdepimwidgets.so %%QT_PLUGINDIR%%/kcm_ldap.so share/dbus-1/interfaces/org.kde.addressbook.service.xml share/dbus-1/interfaces/org.kde.mailtransport.service.xml share/kdepimwidgets/pics/addresseelineedit.png share/kdepimwidgets/pics/clicklineedit.png share/kdepimwidgets/pics/kdateedit.png share/kdepimwidgets/pics/ktimeedit.png share/kservices5/kcmldap.desktop share/locale/ar/LC_MESSAGES/libkdepim.mo share/locale/bg/LC_MESSAGES/libkdepim.mo share/locale/bs/LC_MESSAGES/libkdepim.mo share/locale/ca/LC_MESSAGES/libkdepim.mo share/locale/ca@valencia/LC_MESSAGES/libkdepim.mo share/locale/cs/LC_MESSAGES/libkdepim.mo share/locale/da/LC_MESSAGES/libkdepim.mo share/locale/de/LC_MESSAGES/libkdepim.mo share/locale/el/LC_MESSAGES/libkdepim.mo share/locale/en_GB/LC_MESSAGES/libkdepim.mo share/locale/eo/LC_MESSAGES/libkdepim.mo share/locale/es/LC_MESSAGES/libkdepim.mo share/locale/et/LC_MESSAGES/libkdepim.mo share/locale/eu/LC_MESSAGES/libkdepim.mo share/locale/fa/LC_MESSAGES/libkdepim.mo share/locale/fi/LC_MESSAGES/libkdepim.mo share/locale/fr/LC_MESSAGES/libkdepim.mo share/locale/ga/LC_MESSAGES/libkdepim.mo share/locale/gl/LC_MESSAGES/libkdepim.mo share/locale/he/LC_MESSAGES/libkdepim.mo share/locale/hi/LC_MESSAGES/libkdepim.mo share/locale/hr/LC_MESSAGES/libkdepim.mo share/locale/hu/LC_MESSAGES/libkdepim.mo share/locale/ia/LC_MESSAGES/libkdepim.mo share/locale/is/LC_MESSAGES/libkdepim.mo share/locale/it/LC_MESSAGES/libkdepim.mo share/locale/ja/LC_MESSAGES/libkdepim.mo share/locale/kk/LC_MESSAGES/libkdepim.mo share/locale/km/LC_MESSAGES/libkdepim.mo share/locale/ko/LC_MESSAGES/libkdepim.mo share/locale/lt/LC_MESSAGES/libkdepim.mo share/locale/lv/LC_MESSAGES/libkdepim.mo share/locale/mr/LC_MESSAGES/libkdepim.mo share/locale/nb/LC_MESSAGES/libkdepim.mo share/locale/nds/LC_MESSAGES/libkdepim.mo share/locale/nl/LC_MESSAGES/libkdepim.mo share/locale/nn/LC_MESSAGES/libkdepim.mo share/locale/pa/LC_MESSAGES/libkdepim.mo share/locale/pl/LC_MESSAGES/libkdepim.mo share/locale/pt/LC_MESSAGES/libkdepim.mo share/locale/pt_BR/LC_MESSAGES/libkdepim.mo share/locale/ro/LC_MESSAGES/libkdepim.mo share/locale/ru/LC_MESSAGES/libkdepim.mo share/locale/sk/LC_MESSAGES/libkdepim.mo share/locale/sl/LC_MESSAGES/libkdepim.mo share/locale/sr/LC_MESSAGES/libkdepim.mo share/locale/sv/LC_MESSAGES/libkdepim.mo share/locale/tr/LC_MESSAGES/libkdepim.mo share/locale/ug/LC_MESSAGES/libkdepim.mo share/locale/uk/LC_MESSAGES/libkdepim.mo share/locale/wa/LC_MESSAGES/libkdepim.mo share/locale/zh_CN/LC_MESSAGES/libkdepim.mo share/locale/zh_TW/LC_MESSAGES/libkdepim.mo Index: head/deskutils/mbox-importer/Makefile =================================================================== --- head/deskutils/mbox-importer/Makefile (revision 519954) +++ head/deskutils/mbox-importer/Makefile (revision 519955) @@ -1,32 +1,31 @@ # $FreeBSD$ PORTNAME= mbox-importer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import mbox files to KMail LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash ecm i18n itemmodels kio service widgetsaddons # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts \ identitymanagement imap libkdepim libkleo mailcommon \ mailimporter messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 519954) +++ head/deskutils/mbox-importer/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930740 -SHA256 (KDE/applications/19.08.3/mbox-importer-19.08.3.tar.xz) = 77fadf4d2dc14830704135237fb7c5f0285204acb9822277944cc03f70b8dc3c -SIZE (KDE/applications/19.08.3/mbox-importer-19.08.3.tar.xz) = 33320 +TIMESTAMP = 1575623452 +SHA256 (KDE/applications/19.12.0/mbox-importer-19.12.0.tar.xz) = 2ae7f6de31514596dc7bb2e89fc5898a5e9436d017a8dd04d6e771c029006792 +SIZE (KDE/applications/19.12.0/mbox-importer-19.12.0.tar.xz) = 33344 Index: head/deskutils/pim-data-exporter/Makefile =================================================================== --- head/deskutils/pim-data-exporter/Makefile (revision 519954) +++ head/deskutils/pim-data-exporter/Makefile (revision 519955) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= pim-data-exporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import and export KDE PIM settings LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n itemmodels itemviews \ jobwidgets kio notifications service solid wallet \ widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes contacts \ identitymanagement imap libkdepim libkleo mailcommon \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 519954) +++ head/deskutils/pim-data-exporter/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930741 -SHA256 (KDE/applications/19.08.3/pim-data-exporter-19.08.3.tar.xz) = f89b6588822dd5501e1b93ed3abd9b822725944246ab834777ed0f91f5ab6b91 -SIZE (KDE/applications/19.08.3/pim-data-exporter-19.08.3.tar.xz) = 203340 +TIMESTAMP = 1575623454 +SHA256 (KDE/applications/19.12.0/pim-data-exporter-19.12.0.tar.xz) = fec9be3f2566ed944453cc73011c54dc9e7d536f10ba72283a8b9f30ae4096ed +SIZE (KDE/applications/19.12.0/pim-data-exporter-19.12.0.tar.xz) = 205292 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 519954) +++ head/deskutils/pim-sieve-editor/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930741 -SHA256 (KDE/applications/19.08.3/pim-sieve-editor-19.08.3.tar.xz) = 5e8aa5d71ea923baf4376986db77b6dee16d6e281caf22855e97cfeebfb4c1fe -SIZE (KDE/applications/19.08.3/pim-sieve-editor-19.08.3.tar.xz) = 451160 +TIMESTAMP = 1575623450 +SHA256 (KDE/applications/19.12.0/pim-sieve-editor-19.12.0.tar.xz) = 3569188704b8a1d6beb041cacca6fca4c6a1ee2f58c8f0c0b41033b4c21065a7 +SIZE (KDE/applications/19.12.0/pim-sieve-editor-19.12.0.tar.xz) = 451060 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 519954) +++ head/devel/cervisia/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930743 -SHA256 (KDE/applications/19.08.3/cervisia-19.08.3.tar.xz) = bf156c080f000b342f81e7a8450d6ca942627e5a08cc5ac9c02fc5b44d1f37a7 -SIZE (KDE/applications/19.08.3/cervisia-19.08.3.tar.xz) = 1894440 +TIMESTAMP = 1575623563 +SHA256 (KDE/applications/19.12.0/cervisia-19.12.0.tar.xz) = 8b49e4b23e46e2c97b6a653177d53129c2a1897fde3079cf1335ea6450e29ebf +SIZE (KDE/applications/19.12.0/cervisia-19.12.0.tar.xz) = 1896844 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 519954) +++ head/devel/dolphin-plugins/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930743 -SHA256 (KDE/applications/19.08.3/dolphin-plugins-19.08.3.tar.xz) = 82860ef615954e94f3f382ad60fb144fcfcf7777b8a890f281c0cce55da13a55 -SIZE (KDE/applications/19.08.3/dolphin-plugins-19.08.3.tar.xz) = 192608 +TIMESTAMP = 1575623557 +SHA256 (KDE/applications/19.12.0/dolphin-plugins-19.12.0.tar.xz) = 502421ebd7b41c9fed32266da3b5c22df37ab721ee5aee5b0018fe3498f01fa8 +SIZE (KDE/applications/19.12.0/dolphin-plugins-19.12.0.tar.xz) = 195968 Index: head/devel/dolphin-plugins/pkg-plist =================================================================== --- head/devel/dolphin-plugins/pkg-plist (revision 519954) +++ head/devel/dolphin-plugins/pkg-plist (revision 519955) @@ -1,165 +1,166 @@ %%QT_PLUGINDIR%%/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/fileviewgitplugin.so %%QT_PLUGINDIR%%/fileviewhgplugin.so %%QT_PLUGINDIR%%/fileviewsvnplugin.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/kservices5/fileviewbazaarplugin.desktop share/kservices5/fileviewdropboxplugin.desktop share/kservices5/fileviewgitplugin.desktop share/kservices5/fileviewhgplugin.desktop share/kservices5/fileviewsvnplugin.desktop share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fi/LC_MESSAGES/fileviewgitplugin.mo share/locale/fi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fr/LC_MESSAGES/fileviewgitplugin.mo share/locale/fr/LC_MESSAGES/fileviewhgplugin.mo share/locale/fr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo share/locale/ga/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/gl/LC_MESSAGES/fileviewgitplugin.mo share/locale/gl/LC_MESSAGES/fileviewhgplugin.mo share/locale/gl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hu/LC_MESSAGES/fileviewgitplugin.mo share/locale/hu/LC_MESSAGES/fileviewhgplugin.mo share/locale/hu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/it/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/it/LC_MESSAGES/fileviewgitplugin.mo share/locale/it/LC_MESSAGES/fileviewhgplugin.mo share/locale/it/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo share/locale/ja/LC_MESSAGES/fileviewsvnplugin.mo share/locale/kk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/kk/LC_MESSAGES/fileviewgitplugin.mo share/locale/kk/LC_MESSAGES/fileviewhgplugin.mo share/locale/kk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ko/LC_MESSAGES/fileviewgitplugin.mo share/locale/ko/LC_MESSAGES/fileviewhgplugin.mo share/locale/ko/LC_MESSAGES/fileviewsvnplugin.mo share/locale/lt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/lt/LC_MESSAGES/fileviewgitplugin.mo share/locale/lt/LC_MESSAGES/fileviewhgplugin.mo share/locale/lt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo share/locale/mr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo +share/metainfo/org.kde.dolphin-plugins.metainfo.xml Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 519954) +++ head/devel/kapptemplate/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930744 -SHA256 (KDE/applications/19.08.3/kapptemplate-19.08.3.tar.xz) = 23776b6b56e97fac0d8372d856a6fc9014b057f98ad5a96298b0685943c3da2a -SIZE (KDE/applications/19.08.3/kapptemplate-19.08.3.tar.xz) = 316724 +TIMESTAMP = 1575623564 +SHA256 (KDE/applications/19.12.0/kapptemplate-19.12.0.tar.xz) = 751865151ac09652a27af82239e7ce8c45da5e8dab2b43e06d2f58999f8ecfdf +SIZE (KDE/applications/19.12.0/kapptemplate-19.12.0.tar.xz) = 316660 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 519954) +++ head/devel/kcachegrind/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930745 -SHA256 (KDE/applications/19.08.3/kcachegrind-19.08.3.tar.xz) = 8fc5e0643bb826b07cb5d283b8bd6fd5da4979f6125b43b1db3a9db60b02a36a -SIZE (KDE/applications/19.08.3/kcachegrind-19.08.3.tar.xz) = 808788 +TIMESTAMP = 1575623559 +SHA256 (KDE/applications/19.12.0/kcachegrind-19.12.0.tar.xz) = aa5b621084abc738203ccdbba16b996e35795940f5332a425a0f2bf85ff36ccf +SIZE (KDE/applications/19.12.0/kcachegrind-19.12.0.tar.xz) = 809760 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 519954) +++ head/devel/kde-dev-scripts/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930745 -SHA256 (KDE/applications/19.08.3/kde-dev-scripts-19.08.3.tar.xz) = c7998753f67c6efbe818ca1f96c5681c7abe3078ce6beeb307562309ca243c28 -SIZE (KDE/applications/19.08.3/kde-dev-scripts-19.08.3.tar.xz) = 378160 +TIMESTAMP = 1575623553 +SHA256 (KDE/applications/19.12.0/kde-dev-scripts-19.12.0.tar.xz) = bfbe4c11b8f2f60e4509924eb27cf57213e8b6923dc60f107ea072573167298e +SIZE (KDE/applications/19.12.0/kde-dev-scripts-19.12.0.tar.xz) = 378528 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 519954) +++ head/devel/kde-dev-utils/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930746 -SHA256 (KDE/applications/19.08.3/kde-dev-utils-19.08.3.tar.xz) = 82a573941c1a99480294fe3e8658440da64e652eb62e2a7354751894a6a899e2 -SIZE (KDE/applications/19.08.3/kde-dev-utils-19.08.3.tar.xz) = 61556 +TIMESTAMP = 1575623556 +SHA256 (KDE/applications/19.12.0/kde-dev-utils-19.12.0.tar.xz) = fd6fa9f8bc8188fa682f3cf9c19627f1737bde2e60c4b9d207c552a624701f7a +SIZE (KDE/applications/19.12.0/kde-dev-utils-19.12.0.tar.xz) = 64272 Index: head/devel/kde-dev-utils/pkg-plist =================================================================== --- head/devel/kde-dev-utils/pkg-plist (revision 519954) +++ head/devel/kde-dev-utils/pkg-plist (revision 519955) @@ -1,102 +1,104 @@ bin/kpartloader bin/kuiviewer %%QT_PLUGINDIR%%/kf5/parts/kuiviewerpart.so %%QT_PLUGINDIR%%/quithumbnail.so share/applications/org.kde.kuiviewer.desktop share/icons/hicolor/128x128/apps/kuiviewer.png share/icons/hicolor/16x16/apps/kuiviewer.png share/icons/hicolor/32x32/apps/kuiviewer.png share/icons/hicolor/48x48/apps/kuiviewer.png share/icons/hicolor/64x64/apps/kuiviewer.png share/icons/hicolor/scalable/apps/kuiviewer.svg share/kservices5/designerthumbnail.desktop share/kservices5/kuiviewer_part.desktop share/locale/ar/LC_MESSAGES/kuiviewer.mo share/locale/bg/LC_MESSAGES/kuiviewer.mo share/locale/bs/LC_MESSAGES/kpartloader.mo share/locale/bs/LC_MESSAGES/kuiviewer.mo share/locale/ca/LC_MESSAGES/kpartloader.mo share/locale/ca/LC_MESSAGES/kuiviewer.mo share/locale/ca@valencia/LC_MESSAGES/kpartloader.mo share/locale/ca@valencia/LC_MESSAGES/kuiviewer.mo share/locale/cs/LC_MESSAGES/kpartloader.mo share/locale/cs/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/en_GB/LC_MESSAGES/kpartloader.mo share/locale/en_GB/LC_MESSAGES/kuiviewer.mo share/locale/eo/LC_MESSAGES/kpartloader.mo share/locale/eo/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kpartloader.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo share/locale/fa/LC_MESSAGES/kuiviewer.mo share/locale/fi/LC_MESSAGES/kpartloader.mo share/locale/fi/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/hi/LC_MESSAGES/kuiviewer.mo share/locale/hr/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kuiviewer.mo share/locale/is/LC_MESSAGES/kuiviewer.mo share/locale/it/LC_MESSAGES/kpartloader.mo share/locale/it/LC_MESSAGES/kuiviewer.mo share/locale/ja/LC_MESSAGES/kpartloader.mo share/locale/ja/LC_MESSAGES/kuiviewer.mo share/locale/kk/LC_MESSAGES/kpartloader.mo share/locale/kk/LC_MESSAGES/kuiviewer.mo share/locale/km/LC_MESSAGES/kuiviewer.mo share/locale/ko/LC_MESSAGES/kpartloader.mo share/locale/ko/LC_MESSAGES/kuiviewer.mo share/locale/lt/LC_MESSAGES/kpartloader.mo share/locale/lt/LC_MESSAGES/kuiviewer.mo share/locale/lv/LC_MESSAGES/kpartloader.mo share/locale/lv/LC_MESSAGES/kuiviewer.mo share/locale/mr/LC_MESSAGES/kpartloader.mo share/locale/mr/LC_MESSAGES/kuiviewer.mo share/locale/nb/LC_MESSAGES/kpartloader.mo share/locale/nb/LC_MESSAGES/kuiviewer.mo share/locale/nds/LC_MESSAGES/kpartloader.mo share/locale/nds/LC_MESSAGES/kuiviewer.mo share/locale/nl/LC_MESSAGES/kpartloader.mo share/locale/nl/LC_MESSAGES/kuiviewer.mo share/locale/nn/LC_MESSAGES/kpartloader.mo share/locale/nn/LC_MESSAGES/kuiviewer.mo share/locale/pa/LC_MESSAGES/kpartloader.mo share/locale/pa/LC_MESSAGES/kuiviewer.mo share/locale/pl/LC_MESSAGES/kpartloader.mo share/locale/pl/LC_MESSAGES/kuiviewer.mo share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kpartloader.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo share/locale/sk/LC_MESSAGES/kpartloader.mo share/locale/sk/LC_MESSAGES/kuiviewer.mo share/locale/sl/LC_MESSAGES/kpartloader.mo share/locale/sl/LC_MESSAGES/kuiviewer.mo share/locale/sv/LC_MESSAGES/kpartloader.mo share/locale/sv/LC_MESSAGES/kuiviewer.mo share/locale/tr/LC_MESSAGES/kpartloader.mo share/locale/tr/LC_MESSAGES/kuiviewer.mo share/locale/ug/LC_MESSAGES/kpartloader.mo share/locale/ug/LC_MESSAGES/kuiviewer.mo share/locale/uk/LC_MESSAGES/kpartloader.mo share/locale/uk/LC_MESSAGES/kuiviewer.mo share/locale/zh_CN/LC_MESSAGES/kpartloader.mo share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo share/locale/zh_TW/LC_MESSAGES/kpartloader.mo share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo +share/metainfo/org.kde.kuiviewer.metainfo.xml +share/metainfo/org.kde.kuiviewerpart.metainfo.xml Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 519954) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930747 -SHA256 (KDE/applications/19.08.3/kdesdk-thumbnailers-19.08.3.tar.xz) = 62757c71653d9a9541410104f13035b024e8bab7b21b729a306cb2ac445db8ac -SIZE (KDE/applications/19.08.3/kdesdk-thumbnailers-19.08.3.tar.xz) = 17292 +TIMESTAMP = 1575623561 +SHA256 (KDE/applications/19.12.0/kdesdk-thumbnailers-19.12.0.tar.xz) = 7f6a86fcce183393abd8ab873d0bc8d86e2f65629bee52346efafeae9b6a8805 +SIZE (KDE/applications/19.12.0/kdesdk-thumbnailers-19.12.0.tar.xz) = 17464 Index: head/devel/kio-extras/files/patch-D25170 =================================================================== --- head/devel/kio-extras/files/patch-D25170 (revision 519954) +++ head/devel/kio-extras/files/patch-D25170 (nonexistent) @@ -1,54 +0,0 @@ -diff --git a/cmake/Findlibssh.cmake b/cmake/Findlibssh.cmake ---- cmake/Findlibssh.cmake -+++ cmake/Findlibssh.cmake -@@ -32,13 +32,29 @@ - # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - # SUCH DAMAGE. - -+# Define an imported target to have compatibility with newer libssh and so -+# we have a single target to use regardless of the code path taken in the -+# finder and the actual libssh version defining the target. -+macro(libssh_ensure_imported_target) -+ if(NOT TARGET ssh) -+ add_library(ssh SHARED IMPORTED) -+ set_target_properties(ssh PROPERTIES -+ IMPORTED_LOCATION "${LIBSSH_LIBRARIES}" -+ INTERFACE_INCLUDE_DIRECTORIES "${LIBSSH_INCLUDE_DIR}" -+ ) -+ endif() -+endmacro() -+ - # We prefer the config, but on Ubuntu 18.04 LTS (and to some extent later - # versions it seems) they've not packaged the config properly. So, go for the - # config by default and fall back to manual lookup iff the config was not found. - # https://bugs.kde.org/show_bug.cgi?id=400291 - # https://bugs.launchpad.net/ubuntu/+source/libssh/+bug/1800135 - find_package(libssh ${libssh_FIND_VERSION} NO_MODULE QUIET) - if(libssh_FOUND) -+ # Certain versions with config may not have the target, so make sure it's -+ # defined. -+ libssh_ensure_imported_target() - return() - endif() - -@@ -109,5 +125,7 @@ - VERSION_VAR - LIBSSH_VERSION) - -+libssh_ensure_imported_target() -+ - # show the LIBSSH_INCLUDE_DIRS and LIBSSH_LIBRARIES variables only in the advanced view - mark_as_advanced(LIBSSH_INCLUDE_DIR LIBSSH_LIBRARIES) -diff --git a/sftp/CMakeLists.txt b/sftp/CMakeLists.txt ---- sftp/CMakeLists.txt -+++ sftp/CMakeLists.txt -@@ -22,7 +22,7 @@ - KF5::WidgetsAddons # KMessageBox - KF5::I18n - Qt5::Network -- ${LIBSSH_LIBRARIES}) -+ ssh) - set_target_properties(kio_sftp PROPERTIES OUTPUT_NAME "sftp") - - install(TARGETS kio_sftp DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/kio) - Property changes on: head/devel/kio-extras/files/patch-D25170 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 519954) +++ head/devel/kio-extras/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930748 -SHA256 (KDE/applications/19.08.3/kio-extras-19.08.3.tar.xz) = e38e872f78ff24fe512ec7ff9ed4f6b6a8e1fef6111fdb0222c133bed0a8861f -SIZE (KDE/applications/19.08.3/kio-extras-19.08.3.tar.xz) = 577520 +TIMESTAMP = 1575623555 +SHA256 (KDE/applications/19.12.0/kio-extras-19.12.0.tar.xz) = 7943c14a5a095a8d8d3ee868be085ddc59d6a0ec172637c3551e148fadc9ac6c +SIZE (KDE/applications/19.12.0/kio-extras-19.12.0.tar.xz) = 579188 Index: head/devel/kio-extras/pkg-plist =================================================================== --- head/devel/kio-extras/pkg-plist (revision 519954) +++ head/devel/kio-extras/pkg-plist (revision 519955) @@ -1,793 +1,791 @@ share/qlogging-categories5/kio-extras.categories include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION%% %%TAGLIB%%%%QT_PLUGINDIR%%/audiothumbnail.so %%QT_PLUGINDIR%%/comicbookthumbnail.so %%QT_PLUGINDIR%%/djvuthumbnail.so %%QT_PLUGINDIR%%/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/exrthumbnail.so %%QT_PLUGINDIR%%/imagethumbnail.so %%QT_PLUGINDIR%%/jpegthumbnail.so %%QT_PLUGINDIR%%/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/networkwatcher.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.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/parts/kmanpart.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/network.so %%QT_PLUGINDIR%%/kf5/kio/nfs.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%QT_PLUGINDIR%%/kf5/kio/settings.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%QT_PLUGINDIR%%/kfileaudiopreview.so %%QT_PLUGINDIR%%/kritathumbnail.so %%QT_PLUGINDIR%%/opendocumentthumbnail.so %%QT_PLUGINDIR%%/svgthumbnail.so %%QT_PLUGINDIR%%/textthumbnail.so %%QT_PLUGINDIR%%/windowsexethumbnail.so %%QT_PLUGINDIR%%/windowsimagethumbnail.so share/config.kcfg/jpegcreatorsettings5.kcfg share/dbus-1/interfaces/kf5_org.kde.network.kioslavenotifier.xml %%MTP%%share/dbus-1/services/org.kde.kmtp.daemon.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf share/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/about.protocol share/kservices5/activities.protocol share/kservices5/ar.protocol %%TAGLIB%%share/kservices5/audiothumbnail.desktop share/kservices5/bookmarks.protocol share/kservices5/bzip.protocol share/kservices5/bzip2.protocol share/kservices5/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/kactivitymanagerd_fileitem_linking_plugin.desktop -share/kservices5/kmanpart.desktop share/kservices5/kraorathumbnail.desktop share/kservices5/lzma.protocol share/kservices5/man.protocol %%MTP%%share/kservices5/mtp.protocol share/kservices5/network.protocol share/kservices5/nfs.protocol share/kservices5/opendocumentthumbnail.desktop share/kservices5/recentdocuments.protocol share/kservices5/settings.protocol %%SSH%%share/kservices5/sftp.protocol %%SAMBA%%share/kservices5/smb.protocol share/kservices5/svgthumbnail.desktop share/kservices5/tar.protocol share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.protocol share/kservices5/zip.protocol share/kservicetypes5/thumbcreator.desktop share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/ast/LC_MESSAGES/kio5_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_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_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_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_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_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_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_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_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_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_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_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_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_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_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_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_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_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_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_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_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_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_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_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_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_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_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo share/mime/packages/kf5_network.xml %%MTP%%share/remoteview/mtp-network.desktop share/remoteview/network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 519954) +++ head/devel/lokalize/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930749 -SHA256 (KDE/applications/19.08.3/lokalize-19.08.3.tar.xz) = e25de54944ca32b32b4eeddd85e8ca9764a04de7c1d7a2d350d41cbda8105aef -SIZE (KDE/applications/19.08.3/lokalize-19.08.3.tar.xz) = 1694144 +TIMESTAMP = 1575623560 +SHA256 (KDE/applications/19.12.0/lokalize-19.12.0.tar.xz) = 8999f5e3aae5c6decfbc772f747b57cca26c1770480056cef03004a4a65df4f4 +SIZE (KDE/applications/19.12.0/lokalize-19.12.0.tar.xz) = 1701644 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 519954) +++ head/devel/poxml/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930749 -SHA256 (KDE/applications/19.08.3/poxml-19.08.3.tar.xz) = be5feaf46d424a4a4edc5936924f9a8a6d1d5467ecedd0e415aa88e2c3170502 -SIZE (KDE/applications/19.08.3/poxml-19.08.3.tar.xz) = 43192 +TIMESTAMP = 1575623562 +SHA256 (KDE/applications/19.12.0/poxml-19.12.0.tar.xz) = 6a4506b4f936e9dc869fc416c4dbcbe9d3ec0d0d3d6126efa4ae2f9eec1bf616 +SIZE (KDE/applications/19.12.0/poxml-19.12.0.tar.xz) = 43240 Index: head/devel/umbrello/Makefile =================================================================== --- head/devel/umbrello/Makefile (revision 519954) +++ head/devel/umbrello/Makefile (revision 519955) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= UML modeller for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemviews \ jobwidgets kdelibs4support kio notifications parts service \ solid sonnet texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport svg webkit widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS post-patch: # The CMakeFile sets BUILD_UNITTESTS to 1, not respecting the # value passed via CMAKE_ARGS. ${REINPLACE_CMD} -e '/BUILD_UNITTESTS/s|1|0|' \ ${PATCH_WRKSRC}/CMakeLists.txt .include Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 519954) +++ head/devel/umbrello/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930750 -SHA256 (KDE/applications/19.08.3/umbrello-19.08.3.tar.xz) = c4c56354d2765c0d03ffda02cc098cc3e9d72b0c7c22bb0c1cc03dcf5ac31a6a -SIZE (KDE/applications/19.08.3/umbrello-19.08.3.tar.xz) = 3703784 +TIMESTAMP = 1575623554 +SHA256 (KDE/applications/19.12.0/umbrello-19.12.0.tar.xz) = 9b9bb640a2d2a26f285584a86908e58e73c5906b1643e254bbc157935150e31f +SIZE (KDE/applications/19.12.0/umbrello-19.12.0.tar.xz) = 3797988 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 519954) +++ head/editors/kate/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930751 -SHA256 (KDE/applications/19.08.3/kate-19.08.3.tar.xz) = ab9f076e7e825fca64252b366e637e34157f1f875aa573bdae333fc240e0ec71 -SIZE (KDE/applications/19.08.3/kate-19.08.3.tar.xz) = 5844532 +TIMESTAMP = 1575623490 +SHA256 (KDE/applications/19.12.0/kate-19.12.0.tar.xz) = 7e3d9a83508a77adb5262b58411004ade37599d36f6207b20af7ba3ff81ba153 +SIZE (KDE/applications/19.12.0/kate-19.12.0.tar.xz) = 5695096 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 519954) +++ head/editors/kate/pkg-plist (revision 519955) @@ -1,1254 +1,1244 @@ bin/kate bin/kwrite +%%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so -%%QT_PLUGINDIR%%/ktexteditor/kterustcompletionplugin.so -%%QT_PLUGINDIR%%/ktexteditor/ktexteditor_lumen.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so +%%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svgz share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo -share/locale/ar/LC_MESSAGES/kterustcompletion.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo -share/locale/ast/LC_MESSAGES/kterustcompletion.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo -share/locale/ca/LC_MESSAGES/kterustcompletion.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo -share/locale/ca@valencia/LC_MESSAGES/kterustcompletion.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo -share/locale/cs/LC_MESSAGES/kterustcompletion.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo -share/locale/da/LC_MESSAGES/kterustcompletion.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo -share/locale/de/LC_MESSAGES/kterustcompletion.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo -share/locale/el/LC_MESSAGES/kterustcompletion.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo +share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo -share/locale/en_GB/LC_MESSAGES/kterustcompletion.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo -share/locale/es/LC_MESSAGES/kterustcompletion.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo -share/locale/et/LC_MESSAGES/kterustcompletion.mo +share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/kwrite.mo +share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo -share/locale/eu/LC_MESSAGES/kterustcompletion.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo -share/locale/fi/LC_MESSAGES/kterustcompletion.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo -share/locale/fr/LC_MESSAGES/kterustcompletion.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo -share/locale/gl/LC_MESSAGES/kterustcompletion.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo -share/locale/hi/LC_MESSAGES/kterustcompletion.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo -share/locale/hu/LC_MESSAGES/kterustcompletion.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo -share/locale/ia/LC_MESSAGES/kterustcompletion.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo +share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo -share/locale/id/LC_MESSAGES/kterustcompletion.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo -share/locale/it/LC_MESSAGES/kterustcompletion.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo -share/locale/ja/LC_MESSAGES/kterustcompletion.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo -share/locale/ko/LC_MESSAGES/kterustcompletion.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo -share/locale/lt/LC_MESSAGES/kterustcompletion.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo -share/locale/ml/LC_MESSAGES/kterustcompletion.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo -share/locale/nl/LC_MESSAGES/kterustcompletion.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo -share/locale/nn/LC_MESSAGES/kterustcompletion.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo -share/locale/pl/LC_MESSAGES/kterustcompletion.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo -share/locale/pt/LC_MESSAGES/kterustcompletion.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo -share/locale/pt_BR/LC_MESSAGES/kterustcompletion.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo -share/locale/ru/LC_MESSAGES/kterustcompletion.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo -share/locale/sk/LC_MESSAGES/kterustcompletion.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo -share/locale/sl/LC_MESSAGES/kterustcompletion.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo -share/locale/sr/LC_MESSAGES/kterustcompletion.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo -share/locale/sv/LC_MESSAGES/kterustcompletion.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo -share/locale/tr/LC_MESSAGES/kterustcompletion.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo -share/locale/uk/LC_MESSAGES/kterustcompletion.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo -share/locale/zh_CN/LC_MESSAGES/kterustcompletion.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo -share/locale/zh_TW/LC_MESSAGES/kterustcompletion.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 519954) +++ head/games/blinken/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930752 -SHA256 (KDE/applications/19.08.3/blinken-19.08.3.tar.xz) = 620fe5ffb656f829a7ca72a2df40c19ff0562e3700f51bd66b7d8a6a486ed3c9 -SIZE (KDE/applications/19.08.3/blinken-19.08.3.tar.xz) = 2820600 +TIMESTAMP = 1575623377 +SHA256 (KDE/applications/19.12.0/blinken-19.12.0.tar.xz) = c67e0ae1a1b9315a530b9af49d81245c76658c4a8bb4ca6eeb89df30e3d811fc +SIZE (KDE/applications/19.12.0/blinken-19.12.0.tar.xz) = 2820412 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 519954) +++ head/games/bomber/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930752 -SHA256 (KDE/applications/19.08.3/bomber-19.08.3.tar.xz) = 3a0ef6ca5a05253b1554218a1dc699c5547a073da5cecdf75445e0f72b687fd3 -SIZE (KDE/applications/19.08.3/bomber-19.08.3.tar.xz) = 821164 +TIMESTAMP = 1575623367 +SHA256 (KDE/applications/19.12.0/bomber-19.12.0.tar.xz) = f6dd3229c1f4c46463a85cdb6450129bc0d752e57e0781907aeebd6fd1515832 +SIZE (KDE/applications/19.12.0/bomber-19.12.0.tar.xz) = 820508 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 519954) +++ head/games/bovo/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930753 -SHA256 (KDE/applications/19.08.3/bovo-19.08.3.tar.xz) = 2f950820ebdb52f1c81476b36b5ea07808fe8da154e7757a85ca8ac2c1b37735 -SIZE (KDE/applications/19.08.3/bovo-19.08.3.tar.xz) = 200164 +TIMESTAMP = 1575623359 +SHA256 (KDE/applications/19.12.0/bovo-19.12.0.tar.xz) = b16593a49244ec323e6b14fe1d10d6b4a579e3d615844b89e9cc8629d0d281ed +SIZE (KDE/applications/19.12.0/bovo-19.12.0.tar.xz) = 200168 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 519954) +++ head/games/granatier/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930754 -SHA256 (KDE/applications/19.08.3/granatier-19.08.3.tar.xz) = eac24bb0b0bcf7e12e4059187e0fd542503bae620637a4f35a339e6f63ab3890 -SIZE (KDE/applications/19.08.3/granatier-19.08.3.tar.xz) = 1945196 +TIMESTAMP = 1575623383 +SHA256 (KDE/applications/19.12.0/granatier-19.12.0.tar.xz) = 8fdcaf2de2c17a4f96828771af9a9038218469b07e8a46f3930e93a3ab6efcb1 +SIZE (KDE/applications/19.12.0/granatier-19.12.0.tar.xz) = 1943484 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 519954) +++ head/games/kanagram/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930755 -SHA256 (KDE/applications/19.08.3/kanagram-19.08.3.tar.xz) = 74f7daaed8db4f2b445479307dbe974d3f3f1c8197ab8604712e109c8a4d36d2 -SIZE (KDE/applications/19.08.3/kanagram-19.08.3.tar.xz) = 8031760 +TIMESTAMP = 1575623388 +SHA256 (KDE/applications/19.12.0/kanagram-19.12.0.tar.xz) = d567affb16023e83e1d794ccfaf93e7dd341edf9aaace75a967467d5ced79dc1 +SIZE (KDE/applications/19.12.0/kanagram-19.12.0.tar.xz) = 8028824 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 519954) +++ head/games/kapman/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930756 -SHA256 (KDE/applications/19.08.3/kapman-19.08.3.tar.xz) = 0edc811df5d4e729851e4af980fb414d70af66218091c017c16054a5181af80e -SIZE (KDE/applications/19.08.3/kapman-19.08.3.tar.xz) = 2525336 +TIMESTAMP = 1575623353 +SHA256 (KDE/applications/19.12.0/kapman-19.12.0.tar.xz) = 17b3cec9969bb0ef1211fb95d10df0bcb95f4ef54cac6820e9bb487f349bfd32 +SIZE (KDE/applications/19.12.0/kapman-19.12.0.tar.xz) = 2526380 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 519954) +++ head/games/katomic/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930756 -SHA256 (KDE/applications/19.08.3/katomic-19.08.3.tar.xz) = a02df5d0d03fdd478ead1ba705089514b6debfae553be8d814edfb6952149eac -SIZE (KDE/applications/19.08.3/katomic-19.08.3.tar.xz) = 1423744 +TIMESTAMP = 1575623362 +SHA256 (KDE/applications/19.12.0/katomic-19.12.0.tar.xz) = a20ef505566461259d34ebbd856db050c69a8bc38c767a8ae549da25179dcdb4 +SIZE (KDE/applications/19.12.0/katomic-19.12.0.tar.xz) = 1423304 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 519954) +++ head/games/kblackbox/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930757 -SHA256 (KDE/applications/19.08.3/kblackbox-19.08.3.tar.xz) = 16f885a5baa0ee593c85f745246f2b3af9106a3befb0c9b7aa8695e3aed382f4 -SIZE (KDE/applications/19.08.3/kblackbox-19.08.3.tar.xz) = 446396 +TIMESTAMP = 1575623352 +SHA256 (KDE/applications/19.12.0/kblackbox-19.12.0.tar.xz) = bbb59729ac892bcea566c854e29c08c15af72c9b88bc4478fa31ad70dfc1a0f4 +SIZE (KDE/applications/19.12.0/kblackbox-19.12.0.tar.xz) = 447576 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 519954) +++ head/games/kblocks/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930758 -SHA256 (KDE/applications/19.08.3/kblocks-19.08.3.tar.xz) = 9d2553472a3f61e1be584bed2d9295a60b8074fdcd264213d67dc20f63033563 -SIZE (KDE/applications/19.08.3/kblocks-19.08.3.tar.xz) = 1906952 +TIMESTAMP = 1575623357 +SHA256 (KDE/applications/19.12.0/kblocks-19.12.0.tar.xz) = f03846d9fe6fac74706b2f044d328c00a49a5a82c842690bce0d04d196565f4f +SIZE (KDE/applications/19.12.0/kblocks-19.12.0.tar.xz) = 1907700 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 519954) +++ head/games/kbounce/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930759 -SHA256 (KDE/applications/19.08.3/kbounce-19.08.3.tar.xz) = 21e4bc2e2f3c23d4b954c8b336aab9faa5ba6021ca1487baf39595ff31d82e0b -SIZE (KDE/applications/19.08.3/kbounce-19.08.3.tar.xz) = 3470400 +TIMESTAMP = 1575623347 +SHA256 (KDE/applications/19.12.0/kbounce-19.12.0.tar.xz) = 8cbb46e45859eb6b6770e7398da33f0d247ee71bcc9e7f5a7511d81740d5a521 +SIZE (KDE/applications/19.12.0/kbounce-19.12.0.tar.xz) = 3468908 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 519954) +++ head/games/kbreakout/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930759 -SHA256 (KDE/applications/19.08.3/kbreakout-19.08.3.tar.xz) = 1c49d80dcbaa7745932c6b64c520072099e66767e8d1f725a332f79a7ee89f3f -SIZE (KDE/applications/19.08.3/kbreakout-19.08.3.tar.xz) = 2276292 +TIMESTAMP = 1575623381 +SHA256 (KDE/applications/19.12.0/kbreakout-19.12.0.tar.xz) = e78d11e49b5dc9a61cc063060fd0fc252c100ba86319890d68d42e9c99ec5af4 +SIZE (KDE/applications/19.12.0/kbreakout-19.12.0.tar.xz) = 2280612 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 519954) +++ head/games/kdiamond/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930781 -SHA256 (KDE/applications/19.08.3/kdiamond-19.08.3.tar.xz) = 6a433c8b628f105d210efd5b5532763e09a4e7190d71f8cf11931ab1605abeec -SIZE (KDE/applications/19.08.3/kdiamond-19.08.3.tar.xz) = 4694440 +TIMESTAMP = 1575623348 +SHA256 (KDE/applications/19.12.0/kdiamond-19.12.0.tar.xz) = bf51e52679ad35083e0d6ad838451365d89bb9e83743cc2c1f40313fc6d473a3 +SIZE (KDE/applications/19.12.0/kdiamond-19.12.0.tar.xz) = 4694340 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 519954) +++ head/games/kfourinline/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930782 -SHA256 (KDE/applications/19.08.3/kfourinline-19.08.3.tar.xz) = c35b52b41398616798d75e62fa77488bf84e924e91a432cd1b96b1c09ad1f9ee -SIZE (KDE/applications/19.08.3/kfourinline-19.08.3.tar.xz) = 638368 +TIMESTAMP = 1575623370 +SHA256 (KDE/applications/19.12.0/kfourinline-19.12.0.tar.xz) = 6d520b46e92e2685104437ceb1c80cd5ca62fa84e2bfbb2eb6363986d19881e2 +SIZE (KDE/applications/19.12.0/kfourinline-19.12.0.tar.xz) = 638496 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 519954) +++ head/games/kgoldrunner/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930782 -SHA256 (KDE/applications/19.08.3/kgoldrunner-19.08.3.tar.xz) = 44aec483cbd9d0bffb4eb9606d456ba375cb772fe72ab2c9d76a64930ede2c9b -SIZE (KDE/applications/19.08.3/kgoldrunner-19.08.3.tar.xz) = 4435920 +TIMESTAMP = 1575623373 +SHA256 (KDE/applications/19.12.0/kgoldrunner-19.12.0.tar.xz) = cfa075397de2c850b9bab964278da8aebb2cbebbe9ab69c83e0f93ee6d4b4209 +SIZE (KDE/applications/19.12.0/kgoldrunner-19.12.0.tar.xz) = 4431120 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 519954) +++ head/games/khangman/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930783 -SHA256 (KDE/applications/19.08.3/khangman-19.08.3.tar.xz) = 82e34738f34efef5f03bf98a3a99a0590a5a265cce016b4a2f25ca05e9d078c3 -SIZE (KDE/applications/19.08.3/khangman-19.08.3.tar.xz) = 7116224 +TIMESTAMP = 1575623390 +SHA256 (KDE/applications/19.12.0/khangman-19.12.0.tar.xz) = 05f343e7e9ed13a43b4c190c0fc764f5e9126226f968f89f404bf705bed97e3b +SIZE (KDE/applications/19.12.0/khangman-19.12.0.tar.xz) = 7118956 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 519954) +++ head/games/kigo/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930784 -SHA256 (KDE/applications/19.08.3/kigo-19.08.3.tar.xz) = 2e20837b52550c7c33bd2e5f741a2395a8a1666b793e4b034bd27714177b8502 -SIZE (KDE/applications/19.08.3/kigo-19.08.3.tar.xz) = 5227988 +TIMESTAMP = 1575623358 +SHA256 (KDE/applications/19.12.0/kigo-19.12.0.tar.xz) = 04e778a0ced1fb88594f31128cfc6847c5fac5523597a32905c286bcd626c3ba +SIZE (KDE/applications/19.12.0/kigo-19.12.0.tar.xz) = 5227572 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 519954) +++ head/games/killbots/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930785 -SHA256 (KDE/applications/19.08.3/killbots-19.08.3.tar.xz) = 75f5d53eda4dbe96250caa2faa16514d7c68538d7e8c9deea4eff0d80e3628e2 -SIZE (KDE/applications/19.08.3/killbots-19.08.3.tar.xz) = 1175900 +TIMESTAMP = 1575623385 +SHA256 (KDE/applications/19.12.0/killbots-19.12.0.tar.xz) = ccd9525b6f451c3d658ac2af70ef615ee99c72b9770a8a09cfb99a8653a1356d +SIZE (KDE/applications/19.12.0/killbots-19.12.0.tar.xz) = 1175136 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 519954) +++ head/games/kiriki/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930785 -SHA256 (KDE/applications/19.08.3/kiriki-19.08.3.tar.xz) = 1ceaea286294d8a5371d0792ee38cf4b8922495587cc430b6b01bd92642be2f5 -SIZE (KDE/applications/19.08.3/kiriki-19.08.3.tar.xz) = 373104 +TIMESTAMP = 1575623346 +SHA256 (KDE/applications/19.12.0/kiriki-19.12.0.tar.xz) = fba8d5d1fbc22ae9ff955e6c7325d1fa9b2e5cc1f2e85249a958831a765017bf +SIZE (KDE/applications/19.12.0/kiriki-19.12.0.tar.xz) = 373632 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 519954) +++ head/games/kjumpingcube/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930786 -SHA256 (KDE/applications/19.08.3/kjumpingcube-19.08.3.tar.xz) = a1e6147105a0d467629118bf6cac974a1a698d15f48563e494ce75e126fec734 -SIZE (KDE/applications/19.08.3/kjumpingcube-19.08.3.tar.xz) = 288612 +TIMESTAMP = 1575623355 +SHA256 (KDE/applications/19.12.0/kjumpingcube-19.12.0.tar.xz) = a15351f43c24c4f3ed201f22dc8fc6349e51bcb011406175c68baf7aed49d50c +SIZE (KDE/applications/19.12.0/kjumpingcube-19.12.0.tar.xz) = 289272 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 519954) +++ head/games/klickety/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930787 -SHA256 (KDE/applications/19.08.3/klickety-19.08.3.tar.xz) = 7e4509d47c363173630d536b401d8f1ccb7db4c62d75dd4a449e89dc56c9632e -SIZE (KDE/applications/19.08.3/klickety-19.08.3.tar.xz) = 1389972 +TIMESTAMP = 1575623379 +SHA256 (KDE/applications/19.12.0/klickety-19.12.0.tar.xz) = 79a5db378dd513fcb11fc5dea0e9ef204b0e9d8619ca8e3602cecb81b4f75fcb +SIZE (KDE/applications/19.12.0/klickety-19.12.0.tar.xz) = 1390044 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 519954) +++ head/games/klines/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930788 -SHA256 (KDE/applications/19.08.3/klines-19.08.3.tar.xz) = aaa7825b4bfd61b650ddf28dd975b04cebdb7c09c9b137f17d686570a5212ebc -SIZE (KDE/applications/19.08.3/klines-19.08.3.tar.xz) = 1781396 +TIMESTAMP = 1575623368 +SHA256 (KDE/applications/19.12.0/klines-19.12.0.tar.xz) = a3076dba4498d6d66f22310ef1af5cc717670aac2f759e2cf436a47dd91abb2e +SIZE (KDE/applications/19.12.0/klines-19.12.0.tar.xz) = 1782432 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 519954) +++ head/games/kmahjongg/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930789 -SHA256 (KDE/applications/19.08.3/kmahjongg-19.08.3.tar.xz) = d74446083f6ead6d7571e0ca4ff37af3f8167cc16ed7f67576155a000b41ca22 -SIZE (KDE/applications/19.08.3/kmahjongg-19.08.3.tar.xz) = 3379632 +TIMESTAMP = 1575623354 +SHA256 (KDE/applications/19.12.0/kmahjongg-19.12.0.tar.xz) = 448d5a58c72feece0aef126dcd2ba08fc1b54f4395c493485276aceb0bad1052 +SIZE (KDE/applications/19.12.0/kmahjongg-19.12.0.tar.xz) = 3424940 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 519954) +++ head/games/kmines/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930789 -SHA256 (KDE/applications/19.08.3/kmines-19.08.3.tar.xz) = 4ebb5d932ab43f11f81d0fa64aef871ffecaab4a2c3a5c4dbf10416a86fa8329 -SIZE (KDE/applications/19.08.3/kmines-19.08.3.tar.xz) = 898548 +TIMESTAMP = 1575623389 +SHA256 (KDE/applications/19.12.0/kmines-19.12.0.tar.xz) = 84ec9dd6920ac34206df283ce0c90db50775e2cff562a18f583c1447c76696ed +SIZE (KDE/applications/19.12.0/kmines-19.12.0.tar.xz) = 899840 Index: head/games/kmines/pkg-plist =================================================================== --- head/games/kmines/pkg-plist (revision 519954) +++ head/games/kmines/pkg-plist (revision 519955) @@ -1,74 +1,75 @@ bin/kmines share/applications/org.kde.kmines.desktop share/icons/hicolor/128x128/apps/kmines.png share/icons/hicolor/16x16/apps/kmines.png share/icons/hicolor/22x22/apps/kmines.png share/icons/hicolor/32x32/apps/kmines.png share/icons/hicolor/48x48/apps/kmines.png share/icons/hicolor/64x64/apps/kmines.png %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/graveyard-mayhem-preview.png %%DATADIR%%/themes/graveyard-mayhem.desktop %%DATADIR%%/themes/graveyard-mayhem.svgz %%DATADIR%%/themes/green.desktop %%DATADIR%%/themes/green.png %%DATADIR%%/themes/kmines_classic.svgz %%DATADIR%%/themes/kmines_green.svgz %%DATADIR%%/themes/kmines_oxygen.svgz share/locale/ar/LC_MESSAGES/kmines.mo share/locale/bg/LC_MESSAGES/kmines.mo share/locale/bs/LC_MESSAGES/kmines.mo share/locale/ca/LC_MESSAGES/kmines.mo share/locale/ca@valencia/LC_MESSAGES/kmines.mo share/locale/cs/LC_MESSAGES/kmines.mo share/locale/da/LC_MESSAGES/kmines.mo share/locale/de/LC_MESSAGES/kmines.mo share/locale/el/LC_MESSAGES/kmines.mo share/locale/en_GB/LC_MESSAGES/kmines.mo share/locale/eo/LC_MESSAGES/kmines.mo share/locale/es/LC_MESSAGES/kmines.mo share/locale/et/LC_MESSAGES/kmines.mo share/locale/eu/LC_MESSAGES/kmines.mo share/locale/fa/LC_MESSAGES/kmines.mo share/locale/fi/LC_MESSAGES/kmines.mo share/locale/fr/LC_MESSAGES/kmines.mo share/locale/ga/LC_MESSAGES/kmines.mo share/locale/gl/LC_MESSAGES/kmines.mo share/locale/he/LC_MESSAGES/kmines.mo share/locale/hi/LC_MESSAGES/kmines.mo share/locale/hr/LC_MESSAGES/kmines.mo share/locale/hu/LC_MESSAGES/kmines.mo +share/locale/id/LC_MESSAGES/kmines.mo share/locale/is/LC_MESSAGES/kmines.mo share/locale/it/LC_MESSAGES/kmines.mo share/locale/ja/LC_MESSAGES/kmines.mo share/locale/kk/LC_MESSAGES/kmines.mo share/locale/km/LC_MESSAGES/kmines.mo share/locale/ko/LC_MESSAGES/kmines.mo share/locale/lt/LC_MESSAGES/kmines.mo share/locale/lv/LC_MESSAGES/kmines.mo share/locale/ml/LC_MESSAGES/kmines.mo share/locale/mr/LC_MESSAGES/kmines.mo share/locale/nb/LC_MESSAGES/kmines.mo share/locale/nds/LC_MESSAGES/kmines.mo share/locale/nl/LC_MESSAGES/kmines.mo share/locale/nn/LC_MESSAGES/kmines.mo share/locale/pa/LC_MESSAGES/kmines.mo share/locale/pl/LC_MESSAGES/kmines.mo share/locale/pt/LC_MESSAGES/kmines.mo share/locale/pt_BR/LC_MESSAGES/kmines.mo share/locale/ro/LC_MESSAGES/kmines.mo share/locale/ru/LC_MESSAGES/kmines.mo share/locale/sk/LC_MESSAGES/kmines.mo share/locale/sl/LC_MESSAGES/kmines.mo share/locale/sr/LC_MESSAGES/kmines.mo share/locale/sv/LC_MESSAGES/kmines.mo share/locale/tr/LC_MESSAGES/kmines.mo share/locale/ug/LC_MESSAGES/kmines.mo share/locale/uk/LC_MESSAGES/kmines.mo share/locale/wa/LC_MESSAGES/kmines.mo share/locale/zh_CN/LC_MESSAGES/kmines.mo share/locale/zh_TW/LC_MESSAGES/kmines.mo share/metainfo/org.kde.kmines.appdata.xml Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 519954) +++ head/games/knavalbattle/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930790 -SHA256 (KDE/applications/19.08.3/knavalbattle-19.08.3.tar.xz) = e4a50d3873865e8ab4803a9d7350bfc56ee3d59fd718b8abe860ac89e995ae69 -SIZE (KDE/applications/19.08.3/knavalbattle-19.08.3.tar.xz) = 1281260 +TIMESTAMP = 1575623391 +SHA256 (KDE/applications/19.12.0/knavalbattle-19.12.0.tar.xz) = 0d9ff193ad927faf21312e845e83d07692575f600b1a22e6b8d65c751b5625de +SIZE (KDE/applications/19.12.0/knavalbattle-19.12.0.tar.xz) = 1281504 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 519954) +++ head/games/knetwalk/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930791 -SHA256 (KDE/applications/19.08.3/knetwalk-19.08.3.tar.xz) = ed74cd88364eb263209574655e1cdf77f4776bf339f3313ce20dbf4f950664c4 -SIZE (KDE/applications/19.08.3/knetwalk-19.08.3.tar.xz) = 1038688 +TIMESTAMP = 1575623392 +SHA256 (KDE/applications/19.12.0/knetwalk-19.12.0.tar.xz) = 5a757fe22827956e9957bb193e1bd5099f7b8b3ad9f1729845945b304d83ed2d +SIZE (KDE/applications/19.12.0/knetwalk-19.12.0.tar.xz) = 1040756 Index: head/games/knetwalk/pkg-plist =================================================================== --- head/games/knetwalk/pkg-plist (revision 519954) +++ head/games/knetwalk/pkg-plist (revision 519955) @@ -1,76 +1,77 @@ bin/knetwalk share/applications/org.kde.knetwalk.desktop share/icons/hicolor/128x128/apps/knetwalk.png share/icons/hicolor/16x16/apps/knetwalk.png share/icons/hicolor/22x22/apps/knetwalk.png share/icons/hicolor/32x32/apps/knetwalk.png share/icons/hicolor/48x48/apps/knetwalk.png share/icons/hicolor/64x64/apps/knetwalk.png %%DATADIR%%/qml/Cable.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/sounds/click.wav %%DATADIR%%/sounds/connect.wav %%DATADIR%%/sounds/start.wav %%DATADIR%%/sounds/turn.wav %%DATADIR%%/sounds/win.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/electronic.desktop %%DATADIR%%/themes/electronic.svgz %%DATADIR%%/themes/electronic_preview.png share/locale/ar/LC_MESSAGES/knetwalk.mo share/locale/bg/LC_MESSAGES/knetwalk.mo share/locale/bs/LC_MESSAGES/knetwalk.mo share/locale/ca/LC_MESSAGES/knetwalk.mo share/locale/ca@valencia/LC_MESSAGES/knetwalk.mo share/locale/cs/LC_MESSAGES/knetwalk.mo share/locale/da/LC_MESSAGES/knetwalk.mo share/locale/de/LC_MESSAGES/knetwalk.mo share/locale/el/LC_MESSAGES/knetwalk.mo share/locale/en_GB/LC_MESSAGES/knetwalk.mo share/locale/eo/LC_MESSAGES/knetwalk.mo share/locale/es/LC_MESSAGES/knetwalk.mo share/locale/et/LC_MESSAGES/knetwalk.mo share/locale/eu/LC_MESSAGES/knetwalk.mo share/locale/fa/LC_MESSAGES/knetwalk.mo share/locale/fi/LC_MESSAGES/knetwalk.mo share/locale/fr/LC_MESSAGES/knetwalk.mo share/locale/ga/LC_MESSAGES/knetwalk.mo share/locale/gl/LC_MESSAGES/knetwalk.mo share/locale/he/LC_MESSAGES/knetwalk.mo share/locale/hi/LC_MESSAGES/knetwalk.mo share/locale/hr/LC_MESSAGES/knetwalk.mo share/locale/hu/LC_MESSAGES/knetwalk.mo +share/locale/id/LC_MESSAGES/knetwalk.mo share/locale/is/LC_MESSAGES/knetwalk.mo share/locale/it/LC_MESSAGES/knetwalk.mo share/locale/ja/LC_MESSAGES/knetwalk.mo share/locale/kk/LC_MESSAGES/knetwalk.mo share/locale/km/LC_MESSAGES/knetwalk.mo share/locale/ko/LC_MESSAGES/knetwalk.mo share/locale/lt/LC_MESSAGES/knetwalk.mo share/locale/lv/LC_MESSAGES/knetwalk.mo share/locale/mr/LC_MESSAGES/knetwalk.mo share/locale/nb/LC_MESSAGES/knetwalk.mo share/locale/nds/LC_MESSAGES/knetwalk.mo share/locale/nl/LC_MESSAGES/knetwalk.mo share/locale/nn/LC_MESSAGES/knetwalk.mo share/locale/pa/LC_MESSAGES/knetwalk.mo share/locale/pl/LC_MESSAGES/knetwalk.mo share/locale/pt/LC_MESSAGES/knetwalk.mo share/locale/pt_BR/LC_MESSAGES/knetwalk.mo share/locale/ro/LC_MESSAGES/knetwalk.mo share/locale/ru/LC_MESSAGES/knetwalk.mo share/locale/sk/LC_MESSAGES/knetwalk.mo share/locale/sl/LC_MESSAGES/knetwalk.mo share/locale/sr/LC_MESSAGES/knetwalk.mo share/locale/sv/LC_MESSAGES/knetwalk.mo share/locale/tr/LC_MESSAGES/knetwalk.mo share/locale/ug/LC_MESSAGES/knetwalk.mo share/locale/uk/LC_MESSAGES/knetwalk.mo share/locale/zh_CN/LC_MESSAGES/knetwalk.mo share/locale/zh_TW/LC_MESSAGES/knetwalk.mo share/metainfo/org.kde.knetwalk.appdata.xml Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 519954) +++ head/games/knights/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930792 -SHA256 (KDE/applications/19.08.3/knights-19.08.3.tar.xz) = 1a60de6e31340ecdd3b454d0a90f74f9ab0b81ff9166869d402da77d0acdc93e -SIZE (KDE/applications/19.08.3/knights-19.08.3.tar.xz) = 3515644 +TIMESTAMP = 1575623366 +SHA256 (KDE/applications/19.12.0/knights-19.12.0.tar.xz) = 135b8975ee10791552d6906ca562652a014187aa6eeb0c6e84391b4dd04aa0c6 +SIZE (KDE/applications/19.12.0/knights-19.12.0.tar.xz) = 3516612 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 519954) +++ head/games/kolf/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930793 -SHA256 (KDE/applications/19.08.3/kolf-19.08.3.tar.xz) = 1c864f1abb31b168fd1402217ffc4c00d495f8ebece61ddc1f8c954c29684e1b -SIZE (KDE/applications/19.08.3/kolf-19.08.3.tar.xz) = 1029800 +TIMESTAMP = 1575623351 +SHA256 (KDE/applications/19.12.0/kolf-19.12.0.tar.xz) = 0b63c8aceec8a9200a44b74bf76eb4d360c41c3ed311ed0a1837002a15bb596d +SIZE (KDE/applications/19.12.0/kolf-19.12.0.tar.xz) = 1024888 Index: head/games/kolf/pkg-plist =================================================================== --- head/games/kolf/pkg-plist (revision 519954) +++ head/games/kolf/pkg-plist (revision 519955) @@ -1,85 +1,84 @@ bin/kolf -lib/libkolfprivate.so.5.0.0 share/applications/org.kde.kolf.desktop share/icons/hicolor/128x128/apps/kolf.png share/icons/hicolor/16x16/apps/kolf.png share/icons/hicolor/22x22/apps/kolf.png share/icons/hicolor/32x32/apps/kolf.png share/icons/hicolor/48x48/apps/kolf.png share/icons/hicolor/64x64/apps/kolf.png share/icons/hicolor/scalable/apps/kolf.svgz %%DATADIR%%/courses/Classic.kolf %%DATADIR%%/courses/Easy.kolf %%DATADIR%%/courses/Hard.kolf %%DATADIR%%/courses/Impossible %%DATADIR%%/courses/Medium.kolf %%DATADIR%%/courses/Practice %%DATADIR%%/courses/ReallyEasy %%DATADIR%%/courses/USApro %%DATADIR%%/intro %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/sounds/blackhole.wav %%DATADIR%%/sounds/blackholeeject.wav %%DATADIR%%/sounds/blackholeputin.wav %%DATADIR%%/sounds/bumper.wav %%DATADIR%%/sounds/hit.wav %%DATADIR%%/sounds/holed.wav %%DATADIR%%/sounds/holeinone.wav %%DATADIR%%/sounds/puddle.wav %%DATADIR%%/sounds/wall.wav %%DATADIR%%/sounds/woohoo.wav %%DATADIR%%/tutorial.kolf %%DATADIR%%/tutorial.kolfgame share/kxmlgui5/kolf/kolfui.rc share/locale/ar/LC_MESSAGES/kolf.mo share/locale/bg/LC_MESSAGES/kolf.mo share/locale/bs/LC_MESSAGES/kolf.mo share/locale/ca/LC_MESSAGES/kolf.mo share/locale/ca@valencia/LC_MESSAGES/kolf.mo share/locale/cs/LC_MESSAGES/kolf.mo share/locale/da/LC_MESSAGES/kolf.mo share/locale/de/LC_MESSAGES/kolf.mo share/locale/el/LC_MESSAGES/kolf.mo share/locale/en_GB/LC_MESSAGES/kolf.mo share/locale/eo/LC_MESSAGES/kolf.mo share/locale/es/LC_MESSAGES/kolf.mo share/locale/et/LC_MESSAGES/kolf.mo share/locale/eu/LC_MESSAGES/kolf.mo share/locale/fa/LC_MESSAGES/kolf.mo share/locale/fi/LC_MESSAGES/kolf.mo share/locale/fr/LC_MESSAGES/kolf.mo share/locale/ga/LC_MESSAGES/kolf.mo share/locale/gl/LC_MESSAGES/kolf.mo share/locale/he/LC_MESSAGES/kolf.mo share/locale/hi/LC_MESSAGES/kolf.mo share/locale/hr/LC_MESSAGES/kolf.mo share/locale/hu/LC_MESSAGES/kolf.mo share/locale/is/LC_MESSAGES/kolf.mo share/locale/it/LC_MESSAGES/kolf.mo share/locale/ja/LC_MESSAGES/kolf.mo share/locale/kk/LC_MESSAGES/kolf.mo share/locale/km/LC_MESSAGES/kolf.mo share/locale/ko/LC_MESSAGES/kolf.mo share/locale/lt/LC_MESSAGES/kolf.mo share/locale/lv/LC_MESSAGES/kolf.mo share/locale/mr/LC_MESSAGES/kolf.mo share/locale/nb/LC_MESSAGES/kolf.mo share/locale/nds/LC_MESSAGES/kolf.mo share/locale/nl/LC_MESSAGES/kolf.mo share/locale/nn/LC_MESSAGES/kolf.mo share/locale/pa/LC_MESSAGES/kolf.mo share/locale/pl/LC_MESSAGES/kolf.mo share/locale/pt/LC_MESSAGES/kolf.mo share/locale/pt_BR/LC_MESSAGES/kolf.mo share/locale/ro/LC_MESSAGES/kolf.mo share/locale/ru/LC_MESSAGES/kolf.mo share/locale/sk/LC_MESSAGES/kolf.mo share/locale/sl/LC_MESSAGES/kolf.mo share/locale/sr/LC_MESSAGES/kolf.mo share/locale/sv/LC_MESSAGES/kolf.mo share/locale/tr/LC_MESSAGES/kolf.mo share/locale/ug/LC_MESSAGES/kolf.mo share/locale/uk/LC_MESSAGES/kolf.mo share/locale/zh_CN/LC_MESSAGES/kolf.mo share/locale/zh_TW/LC_MESSAGES/kolf.mo share/metainfo/org.kde.kolf.appdata.xml Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 519954) +++ head/games/kollision/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930794 -SHA256 (KDE/applications/19.08.3/kollision-19.08.3.tar.xz) = 2240563774c22bf0552504a501710e37eb468afcbc4c3313db7779d086cdf8dc -SIZE (KDE/applications/19.08.3/kollision-19.08.3.tar.xz) = 280844 +TIMESTAMP = 1575623384 +SHA256 (KDE/applications/19.12.0/kollision-19.12.0.tar.xz) = 0a646f4f4079501e66ab8094e7448fd9d6df48eaec8c83754b0a51b83463e41c +SIZE (KDE/applications/19.12.0/kollision-19.12.0.tar.xz) = 280988 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 519954) +++ head/games/konquest/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930794 -SHA256 (KDE/applications/19.08.3/konquest-19.08.3.tar.xz) = 619a834341377475fed24485cf2c3f2ae68f1a8d6cea01b10e0a8408a7eef209 -SIZE (KDE/applications/19.08.3/konquest-19.08.3.tar.xz) = 659172 +TIMESTAMP = 1575623374 +SHA256 (KDE/applications/19.12.0/konquest-19.12.0.tar.xz) = 05f0cfb9a87833323a104048d43f70986db554d892a4328967b1975c7ae005df +SIZE (KDE/applications/19.12.0/konquest-19.12.0.tar.xz) = 659640 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 519954) +++ head/games/kpat/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930795 -SHA256 (KDE/applications/19.08.3/kpat-19.08.3.tar.xz) = b1414eb0c04396468f40ea84fe71077b98476b4b76c0d3abb95ae4afd49e27a7 -SIZE (KDE/applications/19.08.3/kpat-19.08.3.tar.xz) = 3578320 +TIMESTAMP = 1575623356 +SHA256 (KDE/applications/19.12.0/kpat-19.12.0.tar.xz) = ba279766e7059c27b889577428847a58b96709635126a0fb6cd4e9b2375883c0 +SIZE (KDE/applications/19.12.0/kpat-19.12.0.tar.xz) = 3577680 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 519954) +++ head/games/kreversi/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930796 -SHA256 (KDE/applications/19.08.3/kreversi-19.08.3.tar.xz) = 30f15e40e1347c7d746bfdef7dffc0a0a9aecef8a960c875b68fab255c43d82c -SIZE (KDE/applications/19.08.3/kreversi-19.08.3.tar.xz) = 945652 +TIMESTAMP = 1575623380 +SHA256 (KDE/applications/19.12.0/kreversi-19.12.0.tar.xz) = 855dae16b754eaea763c5d28d8fa56d72ad82459d2b7e7fc951d43084ff98ffa +SIZE (KDE/applications/19.12.0/kreversi-19.12.0.tar.xz) = 946104 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 519954) +++ head/games/kshisen/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930797 -SHA256 (KDE/applications/19.08.3/kshisen-19.08.3.tar.xz) = bae9f0ed77f7b1b33f21a53dc07481665f6acdb9daad71dd550512a710a905af -SIZE (KDE/applications/19.08.3/kshisen-19.08.3.tar.xz) = 821980 +TIMESTAMP = 1575623361 +SHA256 (KDE/applications/19.12.0/kshisen-19.12.0.tar.xz) = a650a45d0d614edd9a99b070b5edd642b6a6e2cc528fb74eb076b3a617bcfaab +SIZE (KDE/applications/19.12.0/kshisen-19.12.0.tar.xz) = 823312 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 519954) +++ head/games/ksirk/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930797 -SHA256 (KDE/applications/19.08.3/ksirk-19.08.3.tar.xz) = 8ab94b45767e648341ead545a2b427c94ee0f71c8abbe7dbb6b85c28748f3cac -SIZE (KDE/applications/19.08.3/ksirk-19.08.3.tar.xz) = 6996284 +TIMESTAMP = 1575623375 +SHA256 (KDE/applications/19.12.0/ksirk-19.12.0.tar.xz) = 796d01962a1de332ba4cb6b513c29455b1f006035e30cd939f27e46a383d5804 +SIZE (KDE/applications/19.12.0/ksirk-19.12.0.tar.xz) = 6997032 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 519954) +++ head/games/ksnakeduel/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930798 -SHA256 (KDE/applications/19.08.3/ksnakeduel-19.08.3.tar.xz) = d6361ce5a46d6e8ca4b5e674f31017a545245ddb907f33963afba2aeaecdf956 -SIZE (KDE/applications/19.08.3/ksnakeduel-19.08.3.tar.xz) = 604504 +TIMESTAMP = 1575623364 +SHA256 (KDE/applications/19.12.0/ksnakeduel-19.12.0.tar.xz) = c6dea596aeaf0c71df6e7819dae474a5451272d2c7edc28d7b2ad284be15dcdc +SIZE (KDE/applications/19.12.0/ksnakeduel-19.12.0.tar.xz) = 605824 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 519954) +++ head/games/kspaceduel/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930799 -SHA256 (KDE/applications/19.08.3/kspaceduel-19.08.3.tar.xz) = 88e25bc037034e3a22f4cea71729fc160d25bcefb978da00d3f7681841b4f7c2 -SIZE (KDE/applications/19.08.3/kspaceduel-19.08.3.tar.xz) = 611304 +TIMESTAMP = 1575623345 +SHA256 (KDE/applications/19.12.0/kspaceduel-19.12.0.tar.xz) = c4dc62fdf6b30510c419860a85c80451f6da8cc485c2e4139b493f495c7b022a +SIZE (KDE/applications/19.12.0/kspaceduel-19.12.0.tar.xz) = 612188 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 519954) +++ head/games/ksquares/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930800 -SHA256 (KDE/applications/19.08.3/ksquares-19.08.3.tar.xz) = 7e1798e6a306d6ef948035915bdb904ee9efb238dc5a04b4a747185d34856843 -SIZE (KDE/applications/19.08.3/ksquares-19.08.3.tar.xz) = 260604 +TIMESTAMP = 1575623350 +SHA256 (KDE/applications/19.12.0/ksquares-19.12.0.tar.xz) = d1d755d4be82d7eda1f8cbcc75ef29715f9e0b970013049a597a570bc6650c6e +SIZE (KDE/applications/19.12.0/ksquares-19.12.0.tar.xz) = 260788 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 519954) +++ head/games/ksudoku/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930821 -SHA256 (KDE/applications/19.08.3/ksudoku-19.08.3.tar.xz) = 82bf07385d131968ffd49a58404984fd506481158097aa063d954618d2679a65 -SIZE (KDE/applications/19.08.3/ksudoku-19.08.3.tar.xz) = 1649140 +TIMESTAMP = 1575623365 +SHA256 (KDE/applications/19.12.0/ksudoku-19.12.0.tar.xz) = b3d4fe449e76763b9d04b3d15c960e67f55b5b0f9aae607abae52529e06a4182 +SIZE (KDE/applications/19.12.0/ksudoku-19.12.0.tar.xz) = 1650052 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 519954) +++ head/games/ktuberling/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930822 -SHA256 (KDE/applications/19.08.3/ktuberling-19.08.3.tar.xz) = 5204b6eee57554e90d542dc4eca45fbbf0246f261fb1c231b53440c90d26aee1 -SIZE (KDE/applications/19.08.3/ktuberling-19.08.3.tar.xz) = 32640240 +TIMESTAMP = 1575623386 +SHA256 (KDE/applications/19.12.0/ktuberling-19.12.0.tar.xz) = 36e3b55734f53c519508f37997386e3509e39f3ca84825672406f24ef236f46e +SIZE (KDE/applications/19.12.0/ktuberling-19.12.0.tar.xz) = 70729804 Index: head/games/ktuberling/pkg-plist =================================================================== --- head/games/ktuberling/pkg-plist (revision 519954) +++ head/games/ktuberling/pkg-plist (revision 519955) @@ -1,1584 +1,1782 @@ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/mimetypes/application-x-tuberling.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/mimetypes/application-x-tuberling.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/mimetypes/application-x-tuberling.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/mimetypes/application-x-tuberling.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/mimetypes/application-x-tuberling.png %%DATADIR%%/pics/butterflies.desktop %%DATADIR%%/pics/butterflies.svgz %%DATADIR%%/pics/butterflies.theme %%DATADIR%%/pics/christmas.desktop %%DATADIR%%/pics/christmas.svgz %%DATADIR%%/pics/christmas.theme %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svg %%DATADIR%%/pics/default_theme.theme %%DATADIR%%/pics/egypt.desktop %%DATADIR%%/pics/egypt.svg %%DATADIR%%/pics/egypt.theme %%DATADIR%%/pics/moon.desktop %%DATADIR%%/pics/moon.svg %%DATADIR%%/pics/moon.theme %%DATADIR%%/pics/pizzeria.desktop %%DATADIR%%/pics/pizzeria.svgz %%DATADIR%%/pics/pizzeria.theme %%DATADIR%%/pics/potato-game.desktop %%DATADIR%%/pics/potato-game.svg %%DATADIR%%/pics/potato-game.theme %%DATADIR%%/pics/robin-tux.desktop %%DATADIR%%/pics/robin-tux.svgz %%DATADIR%%/pics/robin-tux.theme %%DATADIR%%/pics/robot_workshop.desktop %%DATADIR%%/pics/robot_workshop.svgz %%DATADIR%%/pics/robot_workshop.theme %%DATADIR%%/pics/train_valley.desktop %%DATADIR%%/pics/train_valley.svgz %%DATADIR%%/pics/train_valley.theme %%DATADIR%%/sounds/ca.soundtheme %%DATADIR%%/sounds/ca/Frier-Tux.ogg %%DATADIR%%/sounds/ca/Guard-Tux.ogg %%DATADIR%%/sounds/ca/Kid-Tux.ogg %%DATADIR%%/sounds/ca/Little-Tux.ogg %%DATADIR%%/sounds/ca/Maiden-Tux.ogg %%DATADIR%%/sounds/ca/Prince-Tux.ogg %%DATADIR%%/sounds/ca/Robin-Tux.ogg %%DATADIR%%/sounds/ca/Sherif-Tux.ogg %%DATADIR%%/sounds/ca/Whitch-Tux.ogg %%DATADIR%%/sounds/ca/apple.ogg %%DATADIR%%/sounds/ca/arrow.ogg %%DATADIR%%/sounds/ca/arrows.ogg %%DATADIR%%/sounds/ca/bow-shoot.ogg %%DATADIR%%/sounds/ca/bow.ogg %%DATADIR%%/sounds/ca/bullseye.ogg %%DATADIR%%/sounds/ca/butterflies_body.ogg %%DATADIR%%/sounds/ca/butterflies_circle.ogg %%DATADIR%%/sounds/ca/butterflies_circles.ogg %%DATADIR%%/sounds/ca/butterflies_eye.ogg %%DATADIR%%/sounds/ca/butterflies_heart.ogg %%DATADIR%%/sounds/ca/butterflies_purple_shape.ogg %%DATADIR%%/sounds/ca/butterflies_spiral.ogg %%DATADIR%%/sounds/ca/butterflies_wing.ogg %%DATADIR%%/sounds/ca/candles-glow.ogg %%DATADIR%%/sounds/ca/candles.ogg %%DATADIR%%/sounds/ca/egypt_arch.ogg %%DATADIR%%/sounds/ca/egypt_birds.ogg %%DATADIR%%/sounds/ca/egypt_boy.ogg %%DATADIR%%/sounds/ca/egypt_bridge.ogg %%DATADIR%%/sounds/ca/egypt_camel.ogg %%DATADIR%%/sounds/ca/egypt_cart.ogg %%DATADIR%%/sounds/ca/egypt_column.ogg %%DATADIR%%/sounds/ca/egypt_donkey.ogg %%DATADIR%%/sounds/ca/egypt_girl.ogg %%DATADIR%%/sounds/ca/egypt_grass.ogg %%DATADIR%%/sounds/ca/egypt_man.ogg %%DATADIR%%/sounds/ca/egypt_oasis.ogg %%DATADIR%%/sounds/ca/egypt_palmtree.ogg %%DATADIR%%/sounds/ca/egypt_pyramid.ogg %%DATADIR%%/sounds/ca/egypt_road.ogg %%DATADIR%%/sounds/ca/egypt_sphynx.ogg %%DATADIR%%/sounds/ca/egypt_well.ogg %%DATADIR%%/sounds/ca/egypt_woman.ogg %%DATADIR%%/sounds/ca/fish.ogg %%DATADIR%%/sounds/ca/flask-poison.ogg %%DATADIR%%/sounds/ca/flask.ogg %%DATADIR%%/sounds/ca/goblet.ogg %%DATADIR%%/sounds/ca/guitar.ogg %%DATADIR%%/sounds/ca/key.ogg %%DATADIR%%/sounds/ca/letter-love.ogg %%DATADIR%%/sounds/ca/letter.ogg %%DATADIR%%/sounds/ca/moon_alien.ogg %%DATADIR%%/sounds/ca/moon_astronaut.ogg %%DATADIR%%/sounds/ca/moon_earth.ogg %%DATADIR%%/sounds/ca/moon_fallingstar.ogg %%DATADIR%%/sounds/ca/moon_hotel.ogg %%DATADIR%%/sounds/ca/moon_monster.ogg %%DATADIR%%/sounds/ca/moon_moonwalker.ogg %%DATADIR%%/sounds/ca/moon_planet.ogg %%DATADIR%%/sounds/ca/moon_radar.ogg %%DATADIR%%/sounds/ca/moon_rocket.ogg %%DATADIR%%/sounds/ca/moon_satellite.ogg %%DATADIR%%/sounds/ca/moon_sign.ogg %%DATADIR%%/sounds/ca/moon_star.ogg %%DATADIR%%/sounds/ca/moon_ufo.ogg %%DATADIR%%/sounds/ca/note.ogg %%DATADIR%%/sounds/ca/notes.ogg %%DATADIR%%/sounds/ca/patata_arrecada.ogg %%DATADIR%%/sounds/ca/patata_barret.ogg %%DATADIR%%/sounds/ca/patata_basto.ogg %%DATADIR%%/sounds/ca/patata_bermudes.ogg %%DATADIR%%/sounds/ca/patata_bigoti.ogg %%DATADIR%%/sounds/ca/patata_cabell.ogg %%DATADIR%%/sounds/ca/patata_cella.ogg %%DATADIR%%/sounds/ca/patata_corbata.ogg %%DATADIR%%/sounds/ca/patata_corbati.ogg %%DATADIR%%/sounds/ca/patata_faldilla.ogg %%DATADIR%%/sounds/ca/patata_flors.ogg %%DATADIR%%/sounds/ca/patata_llavis.ogg %%DATADIR%%/sounds/ca/patata_nas.ogg %%DATADIR%%/sounds/ca/patata_orella.ogg %%DATADIR%%/sounds/ca/patata_paraigua.ogg %%DATADIR%%/sounds/ca/patata_pilota.ogg %%DATADIR%%/sounds/ca/patata_sabata.ogg %%DATADIR%%/sounds/ca/patata_ull.ogg %%DATADIR%%/sounds/ca/patata_ulleres.ogg %%DATADIR%%/sounds/ca/patata_ulleresdesol.ogg %%DATADIR%%/sounds/ca/patata_vestit.ogg %%DATADIR%%/sounds/ca/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ca/pizzeria_bacon.ogg %%DATADIR%%/sounds/ca/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ca/pizzeria_cheese.ogg %%DATADIR%%/sounds/ca/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ca/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ca/pizzeria_olive.ogg %%DATADIR%%/sounds/ca/pizzeria_onion.ogg %%DATADIR%%/sounds/ca/pizzeria_oregano.ogg %%DATADIR%%/sounds/ca/pizzeria_pepper.ogg %%DATADIR%%/sounds/ca/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ca/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ca/pizzeria_salami.ogg %%DATADIR%%/sounds/ca/pizzeria_tomato.ogg %%DATADIR%%/sounds/ca/plate.ogg %%DATADIR%%/sounds/ca/robot_workshop_antenna.ogg %%DATADIR%%/sounds/ca/robot_workshop_arm.ogg %%DATADIR%%/sounds/ca/robot_workshop_ball.ogg %%DATADIR%%/sounds/ca/robot_workshop_base.ogg %%DATADIR%%/sounds/ca/robot_workshop_block.ogg %%DATADIR%%/sounds/ca/robot_workshop_body.ogg %%DATADIR%%/sounds/ca/robot_workshop_claw.ogg %%DATADIR%%/sounds/ca/robot_workshop_eye.ogg %%DATADIR%%/sounds/ca/robot_workshop_foot.ogg %%DATADIR%%/sounds/ca/robot_workshop_hand.ogg %%DATADIR%%/sounds/ca/robot_workshop_head.ogg %%DATADIR%%/sounds/ca/robot_workshop_panel.ogg %%DATADIR%%/sounds/ca/robot_workshop_rocket.ogg %%DATADIR%%/sounds/ca/robot_workshop_rod.ogg %%DATADIR%%/sounds/ca/robot_workshop_wheel.ogg %%DATADIR%%/sounds/ca/say-angry.ogg %%DATADIR%%/sounds/ca/say-huh.ogg %%DATADIR%%/sounds/ca/say-idea.ogg %%DATADIR%%/sounds/ca/say-laugh.ogg %%DATADIR%%/sounds/ca/say-love.ogg %%DATADIR%%/sounds/ca/say-sick.ogg %%DATADIR%%/sounds/ca/say-stare.ogg %%DATADIR%%/sounds/ca/say-what.ogg %%DATADIR%%/sounds/ca/say-wow.ogg %%DATADIR%%/sounds/ca/say-zzz.ogg %%DATADIR%%/sounds/ca/teacup.ogg %%DATADIR%%/sounds/ca/tv_accident.ogg %%DATADIR%%/sounds/ca/tv_ball.ogg %%DATADIR%%/sounds/ca/tv_barrier.ogg %%DATADIR%%/sounds/ca/tv_bicycle.ogg %%DATADIR%%/sounds/ca/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ca/tv_car.ogg %%DATADIR%%/sounds/ca/tv_caravan.ogg %%DATADIR%%/sounds/ca/tv_cyclist.ogg %%DATADIR%%/sounds/ca/tv_elephant.ogg %%DATADIR%%/sounds/ca/tv_excavator.ogg %%DATADIR%%/sounds/ca/tv_fence.ogg %%DATADIR%%/sounds/ca/tv_fire.ogg %%DATADIR%%/sounds/ca/tv_fireengine.ogg %%DATADIR%%/sounds/ca/tv_fireman.ogg %%DATADIR%%/sounds/ca/tv_fisherman.ogg %%DATADIR%%/sounds/ca/tv_giraffe.ogg %%DATADIR%%/sounds/ca/tv_guitar.ogg %%DATADIR%%/sounds/ca/tv_guitarist.ogg %%DATADIR%%/sounds/ca/tv_house.ogg %%DATADIR%%/sounds/ca/tv_ladder.ogg %%DATADIR%%/sounds/ca/tv_lion.ogg %%DATADIR%%/sounds/ca/tv_lorry.ogg %%DATADIR%%/sounds/ca/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ca/tv_man.ogg %%DATADIR%%/sounds/ca/tv_mechanic.ogg %%DATADIR%%/sounds/ca/tv_monkey.ogg %%DATADIR%%/sounds/ca/tv_path.ogg %%DATADIR%%/sounds/ca/tv_rock.ogg %%DATADIR%%/sounds/ca/tv_school.ogg %%DATADIR%%/sounds/ca/tv_shop.ogg %%DATADIR%%/sounds/ca/tv_smoke.ogg %%DATADIR%%/sounds/ca/tv_tipper.ogg %%DATADIR%%/sounds/ca/tv_trailer.ogg %%DATADIR%%/sounds/ca/tv_train.ogg %%DATADIR%%/sounds/ca/tv_tree.ogg %%DATADIR%%/sounds/ca/tv_tunnel.ogg %%DATADIR%%/sounds/ca/tv_volley_net.ogg %%DATADIR%%/sounds/ca/tv_wagon.ogg %%DATADIR%%/sounds/ca/tv_woman.ogg %%DATADIR%%/sounds/ca/vase.ogg %%DATADIR%%/sounds/ca/wanted.ogg %%DATADIR%%/sounds/ca/white-dowe-fly.ogg %%DATADIR%%/sounds/ca/white-dowe.ogg %%DATADIR%%/sounds/ca/xmas_angel.ogg %%DATADIR%%/sounds/ca/xmas_ball.ogg %%DATADIR%%/sounds/ca/xmas_boot.ogg %%DATADIR%%/sounds/ca/xmas_candle.ogg %%DATADIR%%/sounds/ca/xmas_comet.ogg %%DATADIR%%/sounds/ca/xmas_garland.ogg %%DATADIR%%/sounds/ca/xmas_lights.ogg %%DATADIR%%/sounds/ca/xmas_mistletoe.ogg %%DATADIR%%/sounds/ca/xmas_moon.ogg %%DATADIR%%/sounds/ca/xmas_owl.ogg %%DATADIR%%/sounds/ca/xmas_present.ogg %%DATADIR%%/sounds/ca/xmas_rabbit.ogg %%DATADIR%%/sounds/ca/xmas_reindeer.ogg %%DATADIR%%/sounds/ca/xmas_shoe.ogg %%DATADIR%%/sounds/ca/xmas_snowflake.ogg %%DATADIR%%/sounds/ca/xmas_snowman.ogg %%DATADIR%%/sounds/ca/xmas_star.ogg %%DATADIR%%/sounds/ca/xmas_tree.ogg %%DATADIR%%/sounds/ca/xmas_turtle.ogg %%DATADIR%%/sounds/ca/xmas_tux.ogg %%DATADIR%%/sounds/da.soundtheme %%DATADIR%%/sounds/da/blomst.ogg %%DATADIR%%/sounds/da/bold.ogg %%DATADIR%%/sounds/da/briller.ogg %%DATADIR%%/sounds/da/egypt_aesel.ogg %%DATADIR%%/sounds/da/egypt_bro.ogg %%DATADIR%%/sounds/da/egypt_broend.ogg %%DATADIR%%/sounds/da/egypt_bue.ogg %%DATADIR%%/sounds/da/egypt_dreng.ogg %%DATADIR%%/sounds/da/egypt_fugle.ogg %%DATADIR%%/sounds/da/egypt_graes.ogg %%DATADIR%%/sounds/da/egypt_kamel.ogg %%DATADIR%%/sounds/da/egypt_kvinde.ogg %%DATADIR%%/sounds/da/egypt_mand.ogg %%DATADIR%%/sounds/da/egypt_oase.ogg %%DATADIR%%/sounds/da/egypt_palme.ogg %%DATADIR%%/sounds/da/egypt_pige.ogg %%DATADIR%%/sounds/da/egypt_pyramide.ogg %%DATADIR%%/sounds/da/egypt_sfinx.ogg %%DATADIR%%/sounds/da/egypt_soejle.ogg %%DATADIR%%/sounds/da/egypt_vej.ogg %%DATADIR%%/sounds/da/egypt_vogn.ogg %%DATADIR%%/sounds/da/frakke.ogg %%DATADIR%%/sounds/da/frier-tux.ogg %%DATADIR%%/sounds/da/guard-tux.ogg %%DATADIR%%/sounds/da/haar.ogg %%DATADIR%%/sounds/da/hat.ogg %%DATADIR%%/sounds/da/kid-tux.ogg %%DATADIR%%/sounds/da/little-tux.ogg %%DATADIR%%/sounds/da/maiden-tux.ogg %%DATADIR%%/sounds/da/moon_astronaut.ogg %%DATADIR%%/sounds/da/moon_hotel.ogg %%DATADIR%%/sounds/da/moon_jorden.ogg %%DATADIR%%/sounds/da/moon_maanefartoej.ogg %%DATADIR%%/sounds/da/moon_planet.ogg %%DATADIR%%/sounds/da/moon_radar.ogg %%DATADIR%%/sounds/da/moon_raket.ogg %%DATADIR%%/sounds/da/moon_rumvaesen.ogg %%DATADIR%%/sounds/da/moon_satellit.ogg %%DATADIR%%/sounds/da/moon_skilt.ogg %%DATADIR%%/sounds/da/moon_stjerne.ogg %%DATADIR%%/sounds/da/moon_stjerneskud.ogg %%DATADIR%%/sounds/da/moon_ufo.ogg %%DATADIR%%/sounds/da/moon_uhyre.ogg %%DATADIR%%/sounds/da/mund.ogg %%DATADIR%%/sounds/da/naese.ogg %%DATADIR%%/sounds/da/nederdel.ogg %%DATADIR%%/sounds/da/oeje.ogg %%DATADIR%%/sounds/da/oejenbryn.ogg %%DATADIR%%/sounds/da/oere.ogg %%DATADIR%%/sounds/da/oerering.ogg %%DATADIR%%/sounds/da/overskaeg.ogg %%DATADIR%%/sounds/da/paraply.ogg %%DATADIR%%/sounds/da/pizza_agurk.ogg %%DATADIR%%/sounds/da/pizza_ananas.ogg %%DATADIR%%/sounds/da/pizza_ansjos.ogg %%DATADIR%%/sounds/da/pizza_bacon.ogg %%DATADIR%%/sounds/da/pizza_broccoli.ogg %%DATADIR%%/sounds/da/pizza_champignon.ogg %%DATADIR%%/sounds/da/pizza_loeg.ogg %%DATADIR%%/sounds/da/pizza_oliven.ogg %%DATADIR%%/sounds/da/pizza_oregano.ogg %%DATADIR%%/sounds/da/pizza_ost.ogg %%DATADIR%%/sounds/da/pizza_pebber.ogg %%DATADIR%%/sounds/da/pizza_pebberoni.ogg %%DATADIR%%/sounds/da/pizza_salami.ogg %%DATADIR%%/sounds/da/pizza_tomat.ogg %%DATADIR%%/sounds/da/prince-tux.ogg %%DATADIR%%/sounds/da/robin-tux.ogg %%DATADIR%%/sounds/da/sherif-tux.ogg %%DATADIR%%/sounds/da/shorts.ogg %%DATADIR%%/sounds/da/sko.ogg %%DATADIR%%/sounds/da/slips.ogg %%DATADIR%%/sounds/da/sloejfe.ogg %%DATADIR%%/sounds/da/solbriller.ogg %%DATADIR%%/sounds/da/stok.ogg %%DATADIR%%/sounds/da/tux-angry.ogg %%DATADIR%%/sounds/da/tux-apple.ogg %%DATADIR%%/sounds/da/tux-arrow.ogg %%DATADIR%%/sounds/da/tux-arrows.ogg %%DATADIR%%/sounds/da/tux-bow.ogg %%DATADIR%%/sounds/da/tux-bullseye.ogg %%DATADIR%%/sounds/da/tux-candles.ogg %%DATADIR%%/sounds/da/tux-dowe.ogg %%DATADIR%%/sounds/da/tux-fish.ogg %%DATADIR%%/sounds/da/tux-flask.ogg %%DATADIR%%/sounds/da/tux-fly.ogg %%DATADIR%%/sounds/da/tux-goblet.ogg %%DATADIR%%/sounds/da/tux-guitar.ogg %%DATADIR%%/sounds/da/tux-huh.ogg %%DATADIR%%/sounds/da/tux-idea.ogg %%DATADIR%%/sounds/da/tux-key.ogg %%DATADIR%%/sounds/da/tux-laugh.ogg %%DATADIR%%/sounds/da/tux-letter.ogg %%DATADIR%%/sounds/da/tux-love.ogg %%DATADIR%%/sounds/da/tux-note.ogg %%DATADIR%%/sounds/da/tux-notes.ogg %%DATADIR%%/sounds/da/tux-plate.ogg %%DATADIR%%/sounds/da/tux-poison.ogg %%DATADIR%%/sounds/da/tux-sick.ogg %%DATADIR%%/sounds/da/tux-stare.ogg %%DATADIR%%/sounds/da/tux-teacup.ogg %%DATADIR%%/sounds/da/tux-vase.ogg %%DATADIR%%/sounds/da/tux-wanted.ogg %%DATADIR%%/sounds/da/tux-what.ogg %%DATADIR%%/sounds/da/tux-wow.ogg %%DATADIR%%/sounds/da/tux-zzz.ogg %%DATADIR%%/sounds/da/tv_accident.ogg %%DATADIR%%/sounds/da/tv_ball.ogg %%DATADIR%%/sounds/da/tv_barrier.ogg %%DATADIR%%/sounds/da/tv_bil.ogg %%DATADIR%%/sounds/da/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/da/tv_caravan.ogg %%DATADIR%%/sounds/da/tv_cykel.ogg %%DATADIR%%/sounds/da/tv_cyklist.ogg %%DATADIR%%/sounds/da/tv_elephant.ogg %%DATADIR%%/sounds/da/tv_excavator.ogg %%DATADIR%%/sounds/da/tv_fence.ogg %%DATADIR%%/sounds/da/tv_fire.ogg %%DATADIR%%/sounds/da/tv_fireengine.ogg %%DATADIR%%/sounds/da/tv_fireman.ogg %%DATADIR%%/sounds/da/tv_fisherman.ogg %%DATADIR%%/sounds/da/tv_giraffe.ogg %%DATADIR%%/sounds/da/tv_guitar.ogg %%DATADIR%%/sounds/da/tv_guitarist.ogg %%DATADIR%%/sounds/da/tv_house.ogg %%DATADIR%%/sounds/da/tv_ladder.ogg %%DATADIR%%/sounds/da/tv_lion.ogg %%DATADIR%%/sounds/da/tv_lorry.ogg %%DATADIR%%/sounds/da/tv_lorry_tractor.ogg %%DATADIR%%/sounds/da/tv_man.ogg %%DATADIR%%/sounds/da/tv_mechanic.ogg %%DATADIR%%/sounds/da/tv_monkey.ogg %%DATADIR%%/sounds/da/tv_path.ogg %%DATADIR%%/sounds/da/tv_rock.ogg %%DATADIR%%/sounds/da/tv_school.ogg %%DATADIR%%/sounds/da/tv_shop.ogg %%DATADIR%%/sounds/da/tv_smoke.ogg %%DATADIR%%/sounds/da/tv_tipper.ogg %%DATADIR%%/sounds/da/tv_tog.ogg %%DATADIR%%/sounds/da/tv_trailer.ogg %%DATADIR%%/sounds/da/tv_tree.ogg %%DATADIR%%/sounds/da/tv_tunnel.ogg %%DATADIR%%/sounds/da/tv_volley_net.ogg %%DATADIR%%/sounds/da/tv_wagon.ogg %%DATADIR%%/sounds/da/tv_woman.ogg %%DATADIR%%/sounds/da/whitch-tux.ogg %%DATADIR%%/sounds/da/xmas_angel.ogg %%DATADIR%%/sounds/da/xmas_ball.ogg %%DATADIR%%/sounds/da/xmas_boot.ogg %%DATADIR%%/sounds/da/xmas_candle.ogg %%DATADIR%%/sounds/da/xmas_comet.ogg %%DATADIR%%/sounds/da/xmas_garland.ogg %%DATADIR%%/sounds/da/xmas_lights.ogg %%DATADIR%%/sounds/da/xmas_mistletoe.ogg %%DATADIR%%/sounds/da/xmas_moon.ogg %%DATADIR%%/sounds/da/xmas_owl.ogg %%DATADIR%%/sounds/da/xmas_present.ogg %%DATADIR%%/sounds/da/xmas_rabbit.ogg %%DATADIR%%/sounds/da/xmas_reindeer.ogg %%DATADIR%%/sounds/da/xmas_shoe.ogg %%DATADIR%%/sounds/da/xmas_snowflake.ogg %%DATADIR%%/sounds/da/xmas_snowman.ogg %%DATADIR%%/sounds/da/xmas_star.ogg %%DATADIR%%/sounds/da/xmas_tree.ogg %%DATADIR%%/sounds/da/xmas_turtle.ogg %%DATADIR%%/sounds/da/xmas_tux.ogg %%DATADIR%%/sounds/de.soundtheme %%DATADIR%%/sounds/de/ball.ogg %%DATADIR%%/sounds/de/bow.ogg %%DATADIR%%/sounds/de/coat.ogg %%DATADIR%%/sounds/de/ear.ogg %%DATADIR%%/sounds/de/earring.ogg %%DATADIR%%/sounds/de/egypt_arch.ogg %%DATADIR%%/sounds/de/egypt_birds.ogg %%DATADIR%%/sounds/de/egypt_boy.ogg %%DATADIR%%/sounds/de/egypt_bridge.ogg %%DATADIR%%/sounds/de/egypt_camel.ogg %%DATADIR%%/sounds/de/egypt_cart.ogg %%DATADIR%%/sounds/de/egypt_column.ogg %%DATADIR%%/sounds/de/egypt_donkey.ogg %%DATADIR%%/sounds/de/egypt_girl.ogg %%DATADIR%%/sounds/de/egypt_grass.ogg %%DATADIR%%/sounds/de/egypt_man.ogg %%DATADIR%%/sounds/de/egypt_oasis.ogg %%DATADIR%%/sounds/de/egypt_palmtree.ogg %%DATADIR%%/sounds/de/egypt_pyramid.ogg %%DATADIR%%/sounds/de/egypt_road.ogg %%DATADIR%%/sounds/de/egypt_sphynx.ogg %%DATADIR%%/sounds/de/egypt_well.ogg %%DATADIR%%/sounds/de/egypt_woman.ogg %%DATADIR%%/sounds/de/eye.ogg %%DATADIR%%/sounds/de/eyebrow.ogg %%DATADIR%%/sounds/de/flower.ogg %%DATADIR%%/sounds/de/hair.ogg %%DATADIR%%/sounds/de/hat.ogg %%DATADIR%%/sounds/de/moon_alien.ogg %%DATADIR%%/sounds/de/moon_astronaut.ogg %%DATADIR%%/sounds/de/moon_earth.ogg %%DATADIR%%/sounds/de/moon_fallingstar.ogg %%DATADIR%%/sounds/de/moon_hotel.ogg %%DATADIR%%/sounds/de/moon_monster.ogg %%DATADIR%%/sounds/de/moon_moonwalker.ogg %%DATADIR%%/sounds/de/moon_planet.ogg %%DATADIR%%/sounds/de/moon_radar.ogg %%DATADIR%%/sounds/de/moon_rocket.ogg %%DATADIR%%/sounds/de/moon_satellite.ogg %%DATADIR%%/sounds/de/moon_sign.ogg %%DATADIR%%/sounds/de/moon_star.ogg %%DATADIR%%/sounds/de/moon_ufo.ogg %%DATADIR%%/sounds/de/moustache.ogg %%DATADIR%%/sounds/de/mouth.ogg %%DATADIR%%/sounds/de/nose.ogg %%DATADIR%%/sounds/de/pizzeria_anchovy.ogg %%DATADIR%%/sounds/de/pizzeria_bacon.ogg %%DATADIR%%/sounds/de/pizzeria_broccolli.ogg %%DATADIR%%/sounds/de/pizzeria_cheese.ogg %%DATADIR%%/sounds/de/pizzeria_cucumber.ogg %%DATADIR%%/sounds/de/pizzeria_mushroom.ogg %%DATADIR%%/sounds/de/pizzeria_olive.ogg %%DATADIR%%/sounds/de/pizzeria_onion.ogg %%DATADIR%%/sounds/de/pizzeria_oregano.ogg %%DATADIR%%/sounds/de/pizzeria_pepper.ogg %%DATADIR%%/sounds/de/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/de/pizzeria_pineapple.ogg %%DATADIR%%/sounds/de/pizzeria_salami.ogg %%DATADIR%%/sounds/de/pizzeria_tomato.ogg %%DATADIR%%/sounds/de/shoes.ogg %%DATADIR%%/sounds/de/shorts.ogg %%DATADIR%%/sounds/de/skirt.ogg %%DATADIR%%/sounds/de/spectacles.ogg %%DATADIR%%/sounds/de/stick.ogg %%DATADIR%%/sounds/de/sunglasses.ogg %%DATADIR%%/sounds/de/tie.ogg %%DATADIR%%/sounds/de/tv_bicycle.ogg %%DATADIR%%/sounds/de/tv_car.ogg %%DATADIR%%/sounds/de/tv_cyclist.ogg %%DATADIR%%/sounds/de/tv_train.ogg %%DATADIR%%/sounds/de/tv_tree.ogg %%DATADIR%%/sounds/de/umbrella.ogg %%DATADIR%%/sounds/el.soundtheme %%DATADIR%%/sounds/el/arrow.ogg %%DATADIR%%/sounds/el/ball.ogg %%DATADIR%%/sounds/el/cheese.ogg %%DATADIR%%/sounds/el/coat.ogg %%DATADIR%%/sounds/el/ear.ogg %%DATADIR%%/sounds/el/earring.ogg %%DATADIR%%/sounds/el/egypt_arch.ogg %%DATADIR%%/sounds/el/egypt_birds.ogg %%DATADIR%%/sounds/el/egypt_boy.ogg %%DATADIR%%/sounds/el/egypt_bridge.ogg %%DATADIR%%/sounds/el/egypt_camel.ogg %%DATADIR%%/sounds/el/egypt_cart.ogg %%DATADIR%%/sounds/el/egypt_column.ogg %%DATADIR%%/sounds/el/egypt_donkey.ogg %%DATADIR%%/sounds/el/egypt_girl.ogg %%DATADIR%%/sounds/el/egypt_grass.ogg %%DATADIR%%/sounds/el/egypt_man.ogg %%DATADIR%%/sounds/el/egypt_oasis.ogg %%DATADIR%%/sounds/el/egypt_palmtree.ogg %%DATADIR%%/sounds/el/egypt_pyramid.ogg %%DATADIR%%/sounds/el/egypt_road.ogg %%DATADIR%%/sounds/el/egypt_sphynx.ogg %%DATADIR%%/sounds/el/egypt_well.ogg %%DATADIR%%/sounds/el/egypt_woman.ogg %%DATADIR%%/sounds/el/eye.ogg %%DATADIR%%/sounds/el/eyebrow.ogg %%DATADIR%%/sounds/el/flower.ogg %%DATADIR%%/sounds/el/hair.ogg %%DATADIR%%/sounds/el/hat.ogg %%DATADIR%%/sounds/el/moon_alien.ogg %%DATADIR%%/sounds/el/moon_astronaut.ogg %%DATADIR%%/sounds/el/moon_earth.ogg %%DATADIR%%/sounds/el/moon_fallingstar.ogg %%DATADIR%%/sounds/el/moon_hotel.ogg %%DATADIR%%/sounds/el/moon_monster.ogg %%DATADIR%%/sounds/el/moon_moonwalker.ogg %%DATADIR%%/sounds/el/moon_planet.ogg %%DATADIR%%/sounds/el/moon_radar.ogg %%DATADIR%%/sounds/el/moon_rocket.ogg %%DATADIR%%/sounds/el/moon_satellite.ogg %%DATADIR%%/sounds/el/moon_sign.ogg %%DATADIR%%/sounds/el/moon_star.ogg %%DATADIR%%/sounds/el/moon_ufo.ogg %%DATADIR%%/sounds/el/moustache.ogg %%DATADIR%%/sounds/el/mouth.ogg %%DATADIR%%/sounds/el/nose.ogg %%DATADIR%%/sounds/el/pizzeria_anchovy.ogg %%DATADIR%%/sounds/el/pizzeria_bacon.ogg %%DATADIR%%/sounds/el/pizzeria_broccolli.ogg %%DATADIR%%/sounds/el/pizzeria_cheese.ogg %%DATADIR%%/sounds/el/pizzeria_cucumber.ogg %%DATADIR%%/sounds/el/pizzeria_mushroom.ogg %%DATADIR%%/sounds/el/pizzeria_olive.ogg %%DATADIR%%/sounds/el/pizzeria_onion.ogg %%DATADIR%%/sounds/el/pizzeria_oregano.ogg %%DATADIR%%/sounds/el/pizzeria_pepper.ogg %%DATADIR%%/sounds/el/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/el/pizzeria_pineapple.ogg %%DATADIR%%/sounds/el/pizzeria_salami.ogg %%DATADIR%%/sounds/el/pizzeria_tomato.ogg %%DATADIR%%/sounds/el/shoe.ogg %%DATADIR%%/sounds/el/shorts.ogg %%DATADIR%%/sounds/el/skirt.ogg %%DATADIR%%/sounds/el/spectacles.ogg %%DATADIR%%/sounds/el/stick.ogg %%DATADIR%%/sounds/el/stick2.ogg %%DATADIR%%/sounds/el/sunglasses.ogg %%DATADIR%%/sounds/el/tie.ogg %%DATADIR%%/sounds/el/tv_bicycle.ogg %%DATADIR%%/sounds/el/tv_car.ogg %%DATADIR%%/sounds/el/tv_cyclist.ogg %%DATADIR%%/sounds/el/tv_train.ogg %%DATADIR%%/sounds/el/tv_tree.ogg %%DATADIR%%/sounds/el/umbrella.ogg %%DATADIR%%/sounds/en.soundtheme %%DATADIR%%/sounds/en/ball.ogg %%DATADIR%%/sounds/en/bow.ogg %%DATADIR%%/sounds/en/coat.ogg %%DATADIR%%/sounds/en/ear.ogg %%DATADIR%%/sounds/en/earring.ogg %%DATADIR%%/sounds/en/egypt_arch.ogg %%DATADIR%%/sounds/en/egypt_birds.ogg %%DATADIR%%/sounds/en/egypt_boy.ogg %%DATADIR%%/sounds/en/egypt_bridge.ogg %%DATADIR%%/sounds/en/egypt_camel.ogg %%DATADIR%%/sounds/en/egypt_cart.ogg %%DATADIR%%/sounds/en/egypt_column.ogg %%DATADIR%%/sounds/en/egypt_donkey.ogg %%DATADIR%%/sounds/en/egypt_girl.ogg %%DATADIR%%/sounds/en/egypt_grass.ogg %%DATADIR%%/sounds/en/egypt_man.ogg %%DATADIR%%/sounds/en/egypt_oasis.ogg %%DATADIR%%/sounds/en/egypt_palmtree.ogg %%DATADIR%%/sounds/en/egypt_pyramid.ogg %%DATADIR%%/sounds/en/egypt_road.ogg %%DATADIR%%/sounds/en/egypt_sphynx.ogg %%DATADIR%%/sounds/en/egypt_well.ogg %%DATADIR%%/sounds/en/egypt_woman.ogg %%DATADIR%%/sounds/en/eye.ogg %%DATADIR%%/sounds/en/eyebrow.ogg %%DATADIR%%/sounds/en/flower.ogg %%DATADIR%%/sounds/en/hair.ogg %%DATADIR%%/sounds/en/hat.ogg %%DATADIR%%/sounds/en/moon_alien.ogg %%DATADIR%%/sounds/en/moon_astronaut.ogg %%DATADIR%%/sounds/en/moon_earth.ogg %%DATADIR%%/sounds/en/moon_fallingstar.ogg %%DATADIR%%/sounds/en/moon_hotel.ogg %%DATADIR%%/sounds/en/moon_monster.ogg %%DATADIR%%/sounds/en/moon_moonwalker.ogg %%DATADIR%%/sounds/en/moon_planet.ogg %%DATADIR%%/sounds/en/moon_radar.ogg %%DATADIR%%/sounds/en/moon_rocket.ogg %%DATADIR%%/sounds/en/moon_satellite.ogg %%DATADIR%%/sounds/en/moon_sign.ogg %%DATADIR%%/sounds/en/moon_star.ogg %%DATADIR%%/sounds/en/moon_ufo.ogg %%DATADIR%%/sounds/en/moustache.ogg %%DATADIR%%/sounds/en/mouth.ogg %%DATADIR%%/sounds/en/nose.ogg %%DATADIR%%/sounds/en/pizzeria_anchovy.ogg %%DATADIR%%/sounds/en/pizzeria_bacon.ogg %%DATADIR%%/sounds/en/pizzeria_broccolli.ogg %%DATADIR%%/sounds/en/pizzeria_cheese.ogg %%DATADIR%%/sounds/en/pizzeria_cucumber.ogg %%DATADIR%%/sounds/en/pizzeria_mushroom.ogg %%DATADIR%%/sounds/en/pizzeria_olive.ogg %%DATADIR%%/sounds/en/pizzeria_onion.ogg %%DATADIR%%/sounds/en/pizzeria_oregano.ogg %%DATADIR%%/sounds/en/pizzeria_pepper.ogg %%DATADIR%%/sounds/en/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/en/pizzeria_pineapple.ogg %%DATADIR%%/sounds/en/pizzeria_salami.ogg %%DATADIR%%/sounds/en/pizzeria_tomato.ogg %%DATADIR%%/sounds/en/shoe.ogg %%DATADIR%%/sounds/en/shorts.ogg %%DATADIR%%/sounds/en/skirt.ogg %%DATADIR%%/sounds/en/spectacles.ogg %%DATADIR%%/sounds/en/stick.ogg %%DATADIR%%/sounds/en/sunglasses.ogg %%DATADIR%%/sounds/en/tie.ogg %%DATADIR%%/sounds/en/tv_bicycle.ogg %%DATADIR%%/sounds/en/tv_car.ogg %%DATADIR%%/sounds/en/tv_cyclist.ogg %%DATADIR%%/sounds/en/tv_train.ogg %%DATADIR%%/sounds/en/tv_tree.ogg %%DATADIR%%/sounds/en/umbrella.ogg %%DATADIR%%/sounds/es.soundtheme %%DATADIR%%/sounds/es/anteojos.wav %%DATADIR%%/sounds/es/bigote.wav %%DATADIR%%/sounds/es/boca.wav %%DATADIR%%/sounds/es/ceja.wav %%DATADIR%%/sounds/es/gafasdesol.wav %%DATADIR%%/sounds/es/lazo.wav %%DATADIR%%/sounds/es/nariz.wav %%DATADIR%%/sounds/es/ojo.wav %%DATADIR%%/sounds/es/oreja.wav %%DATADIR%%/sounds/es/pelo.wav %%DATADIR%%/sounds/es/pendiente.wav %%DATADIR%%/sounds/es/sombrero.wav %%DATADIR%%/sounds/fi.soundtheme %%DATADIR%%/sounds/fi/aurinkolasit.wav %%DATADIR%%/sounds/fi/hattu.wav %%DATADIR%%/sounds/fi/korva.wav %%DATADIR%%/sounds/fi/korvakoru.wav %%DATADIR%%/sounds/fi/kulmakarva.wav %%DATADIR%%/sounds/fi/nena.wav %%DATADIR%%/sounds/fi/rusetti.wav %%DATADIR%%/sounds/fi/silma.wav %%DATADIR%%/sounds/fi/silmalasit.wav %%DATADIR%%/sounds/fi/suu.wav %%DATADIR%%/sounds/fi/viikset.wav %%DATADIR%%/sounds/fr.soundtheme %%DATADIR%%/sounds/fr/bouche.wav %%DATADIR%%/sounds/fr/boucle-d-oreille.wav %%DATADIR%%/sounds/fr/chapeau.wav %%DATADIR%%/sounds/fr/cheveux.wav %%DATADIR%%/sounds/fr/cravate.wav +%%DATADIR%%/sounds/fr/egypte_ane.wav +%%DATADIR%%/sounds/fr/egypte_arche.wav +%%DATADIR%%/sounds/fr/egypte_chameau.wav +%%DATADIR%%/sounds/fr/egypte_charette.wav +%%DATADIR%%/sounds/fr/egypte_colonne.wav +%%DATADIR%%/sounds/fr/egypte_femme.wav +%%DATADIR%%/sounds/fr/egypte_fille.wav +%%DATADIR%%/sounds/fr/egypte_garcon.wav +%%DATADIR%%/sounds/fr/egypte_herbe.wav +%%DATADIR%%/sounds/fr/egypte_homme.wav +%%DATADIR%%/sounds/fr/egypte_oasis.wav +%%DATADIR%%/sounds/fr/egypte_oiseaux.wav +%%DATADIR%%/sounds/fr/egypte_palmier.wav +%%DATADIR%%/sounds/fr/egypte_pont.wav +%%DATADIR%%/sounds/fr/egypte_puits.wav +%%DATADIR%%/sounds/fr/egypte_pyramide.wav +%%DATADIR%%/sounds/fr/egypte_route.wav +%%DATADIR%%/sounds/fr/egypte_sphinx.wav +%%DATADIR%%/sounds/fr/lune_astronaute.wav +%%DATADIR%%/sounds/fr/lune_etoile-filante.wav +%%DATADIR%%/sounds/fr/lune_etoile.wav +%%DATADIR%%/sounds/fr/lune_extraterrestre.wav +%%DATADIR%%/sounds/fr/lune_fusee.wav +%%DATADIR%%/sounds/fr/lune_hotel.wav +%%DATADIR%%/sounds/fr/lune_monstre.wav +%%DATADIR%%/sounds/fr/lune_ovni.wav +%%DATADIR%%/sounds/fr/lune_planete.wav +%%DATADIR%%/sounds/fr/lune_radar.wav +%%DATADIR%%/sounds/fr/lune_rover.wav +%%DATADIR%%/sounds/fr/lune_satellite.wav +%%DATADIR%%/sounds/fr/lune_signe.wav +%%DATADIR%%/sounds/fr/lune_terre.wav %%DATADIR%%/sounds/fr/lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/lunettes.wav %%DATADIR%%/sounds/fr/moustache.wav %%DATADIR%%/sounds/fr/nez.wav +%%DATADIR%%/sounds/fr/noel_Tux-le-pingouin.wav +%%DATADIR%%/sounds/fr/noel_ange.wav +%%DATADIR%%/sounds/fr/noel_arbre.wav +%%DATADIR%%/sounds/fr/noel_bonhomme-de-neige.wav +%%DATADIR%%/sounds/fr/noel_botte.wav +%%DATADIR%%/sounds/fr/noel_bougie.wav +%%DATADIR%%/sounds/fr/noel_boule-de-noel.wav +%%DATADIR%%/sounds/fr/noel_boule.wav +%%DATADIR%%/sounds/fr/noel_branche-de-gui.wav +%%DATADIR%%/sounds/fr/noel_branche-de-houx.wav +%%DATADIR%%/sounds/fr/noel_chaussure.wav +%%DATADIR%%/sounds/fr/noel_chouette.wav +%%DATADIR%%/sounds/fr/noel_comete.wav +%%DATADIR%%/sounds/fr/noel_etoile.wav +%%DATADIR%%/sounds/fr/noel_flocon.wav +%%DATADIR%%/sounds/fr/noel_guirlande-lumineuse.wav +%%DATADIR%%/sounds/fr/noel_guirlande.wav +%%DATADIR%%/sounds/fr/noel_lapin.wav +%%DATADIR%%/sounds/fr/noel_lune.wav +%%DATADIR%%/sounds/fr/noel_paquet-cadeau.wav +%%DATADIR%%/sounds/fr/noel_renne.wav +%%DATADIR%%/sounds/fr/noel_tortue.wav %%DATADIR%%/sounds/fr/noeud-papillon.wav %%DATADIR%%/sounds/fr/oeil.wav %%DATADIR%%/sounds/fr/oreille.wav +%%DATADIR%%/sounds/fr/papillons_aile.wav +%%DATADIR%%/sounds/fr/papillons_ailes.wav +%%DATADIR%%/sounds/fr/papillons_cercle.wav +%%DATADIR%%/sounds/fr/papillons_cercles.wav +%%DATADIR%%/sounds/fr/papillons_coeur.wav +%%DATADIR%%/sounds/fr/papillons_corps.wav +%%DATADIR%%/sounds/fr/papillons_forme-violette.wav +%%DATADIR%%/sounds/fr/papillons_oeil.wav +%%DATADIR%%/sounds/fr/papillons_spirale.wav +%%DATADIR%%/sounds/fr/patate_ballon.wav +%%DATADIR%%/sounds/fr/patate_baton.wav +%%DATADIR%%/sounds/fr/patate_bouche.wav +%%DATADIR%%/sounds/fr/patate_boucle-d-oreille.wav +%%DATADIR%%/sounds/fr/patate_chapeau.wav +%%DATADIR%%/sounds/fr/patate_chaussure.wav +%%DATADIR%%/sounds/fr/patate_cheveu.wav +%%DATADIR%%/sounds/fr/patate_cheveux.wav +%%DATADIR%%/sounds/fr/patate_cravate.wav +%%DATADIR%%/sounds/fr/patate_fleur.wav +%%DATADIR%%/sounds/fr/patate_jupe.wav +%%DATADIR%%/sounds/fr/patate_lunettes-de-soleil.wav +%%DATADIR%%/sounds/fr/patate_lunettes.wav +%%DATADIR%%/sounds/fr/patate_manteau.wav +%%DATADIR%%/sounds/fr/patate_moustache.wav +%%DATADIR%%/sounds/fr/patate_nez.wav +%%DATADIR%%/sounds/fr/patate_noeud-papillon.wav +%%DATADIR%%/sounds/fr/patate_oeil.wav +%%DATADIR%%/sounds/fr/patate_oreille.wav +%%DATADIR%%/sounds/fr/patate_parapluie.wav +%%DATADIR%%/sounds/fr/patate_short.wav +%%DATADIR%%/sounds/fr/patate_sourcil.wav +%%DATADIR%%/sounds/fr/pizzeria_ananas.wav +%%DATADIR%%/sounds/fr/pizzeria_anchois.wav +%%DATADIR%%/sounds/fr/pizzeria_brocoli.wav +%%DATADIR%%/sounds/fr/pizzeria_champignon.wav +%%DATADIR%%/sounds/fr/pizzeria_concombre.wav +%%DATADIR%%/sounds/fr/pizzeria_fromage.wav +%%DATADIR%%/sounds/fr/pizzeria_lardon.wav +%%DATADIR%%/sounds/fr/pizzeria_oignon.wav +%%DATADIR%%/sounds/fr/pizzeria_olive.wav +%%DATADIR%%/sounds/fr/pizzeria_origan.wav +%%DATADIR%%/sounds/fr/pizzeria_pepperoni.wav +%%DATADIR%%/sounds/fr/pizzeria_piment.wav +%%DATADIR%%/sounds/fr/pizzeria_poivre.wav +%%DATADIR%%/sounds/fr/pizzeria_poivron.wav +%%DATADIR%%/sounds/fr/pizzeria_salami.wav +%%DATADIR%%/sounds/fr/pizzeria_tomate.wav +%%DATADIR%%/sounds/fr/robin_Tux-Robin.wav +%%DATADIR%%/sounds/fr/robin_Tux-l-enfant.wav +%%DATADIR%%/sounds/fr/robin_Tux-la-jeune-fille.wav +%%DATADIR%%/sounds/fr/robin_Tux-la-sorciere.wav +%%DATADIR%%/sounds/fr/robin_Tux-le-frere.wav +%%DATADIR%%/sounds/fr/robin_Tux-le-garde.wav +%%DATADIR%%/sounds/fr/robin_Tux-le-petit.wav +%%DATADIR%%/sounds/fr/robin_Tux-le-prince.wav +%%DATADIR%%/sounds/fr/robin_Tux-le-sheriff.wav +%%DATADIR%%/sounds/fr/robin_arc.wav +%%DATADIR%%/sounds/fr/robin_assiette.wav +%%DATADIR%%/sounds/fr/robin_avis-recherche.wav +%%DATADIR%%/sounds/fr/robin_chandelles-allumees.wav +%%DATADIR%%/sounds/fr/robin_chandelles.wav +%%DATADIR%%/sounds/fr/robin_cible.wav +%%DATADIR%%/sounds/fr/robin_cle.wav +%%DATADIR%%/sounds/fr/robin_coupe.wav +%%DATADIR%%/sounds/fr/robin_flacon.wav +%%DATADIR%%/sounds/fr/robin_fleche.wav +%%DATADIR%%/sounds/fr/robin_fleches.wav +%%DATADIR%%/sounds/fr/robin_guitare.wav +%%DATADIR%%/sounds/fr/robin_heu.wav +%%DATADIR%%/sounds/fr/robin_j-ai-une-idee.wav +%%DATADIR%%/sounds/fr/robin_j-aime.wav +%%DATADIR%%/sounds/fr/robin_j-examine.wav +%%DATADIR%%/sounds/fr/robin_je-dors.wav +%%DATADIR%%/sounds/fr/robin_je-me-fache.wav +%%DATADIR%%/sounds/fr/robin_je-ris.wav +%%DATADIR%%/sounds/fr/robin_je-suis-malade.wav +%%DATADIR%%/sounds/fr/robin_lettre.wav +%%DATADIR%%/sounds/fr/robin_note.wav +%%DATADIR%%/sounds/fr/robin_notes.wav +%%DATADIR%%/sounds/fr/robin_pigeon-volant.wav +%%DATADIR%%/sounds/fr/robin_pigeon.wav +%%DATADIR%%/sounds/fr/robin_poison.wav +%%DATADIR%%/sounds/fr/robin_poisson.wav +%%DATADIR%%/sounds/fr/robin_pomme.wav +%%DATADIR%%/sounds/fr/robin_quoi.wav +%%DATADIR%%/sounds/fr/robin_tasse.wav +%%DATADIR%%/sounds/fr/robin_tir.wav +%%DATADIR%%/sounds/fr/robin_vase.wav +%%DATADIR%%/sounds/fr/robin_wouah.wav +%%DATADIR%%/sounds/fr/robot_antenne.wav +%%DATADIR%%/sounds/fr/robot_ballon.wav +%%DATADIR%%/sounds/fr/robot_base.wav +%%DATADIR%%/sounds/fr/robot_bloc.wav +%%DATADIR%%/sounds/fr/robot_bras.wav +%%DATADIR%%/sounds/fr/robot_corps.wav +%%DATADIR%%/sounds/fr/robot_fusee.wav +%%DATADIR%%/sounds/fr/robot_main.wav +%%DATADIR%%/sounds/fr/robot_oeil.wav +%%DATADIR%%/sounds/fr/robot_panneau.wav +%%DATADIR%%/sounds/fr/robot_pieds.wav +%%DATADIR%%/sounds/fr/robot_pince.wav +%%DATADIR%%/sounds/fr/robot_roue.wav +%%DATADIR%%/sounds/fr/robot_tete.wav +%%DATADIR%%/sounds/fr/robot_tige.wav %%DATADIR%%/sounds/fr/sourcil.wav +%%DATADIR%%/sounds/fr/tv_accident.wav +%%DATADIR%%/sounds/fr/tv_arbre.wav +%%DATADIR%%/sounds/fr/tv_ballon.wav +%%DATADIR%%/sounds/fr/tv_barriere.wav +%%DATADIR%%/sounds/fr/tv_benne-basculante.wav +%%DATADIR%%/sounds/fr/tv_bicyclette.wav +%%DATADIR%%/sounds/fr/tv_camion-de-depannage.wav +%%DATADIR%%/sounds/fr/tv_camion-de-pompier.wav +%%DATADIR%%/sounds/fr/tv_camion.wav +%%DATADIR%%/sounds/fr/tv_caravane.wav +%%DATADIR%%/sounds/fr/tv_chemin.wav +%%DATADIR%%/sounds/fr/tv_cloture.wav +%%DATADIR%%/sounds/fr/tv_cycliste.wav +%%DATADIR%%/sounds/fr/tv_echelle.wav +%%DATADIR%%/sounds/fr/tv_ecole.wav +%%DATADIR%%/sounds/fr/tv_elephant.wav +%%DATADIR%%/sounds/fr/tv_femme.wav +%%DATADIR%%/sounds/fr/tv_feu.wav +%%DATADIR%%/sounds/fr/tv_filet-de-volley.wav +%%DATADIR%%/sounds/fr/tv_fumee.wav +%%DATADIR%%/sounds/fr/tv_girafe.wav +%%DATADIR%%/sounds/fr/tv_guitare.wav +%%DATADIR%%/sounds/fr/tv_guitariste.wav +%%DATADIR%%/sounds/fr/tv_homme.wav +%%DATADIR%%/sounds/fr/tv_lion.wav +%%DATADIR%%/sounds/fr/tv_magasin.wav +%%DATADIR%%/sounds/fr/tv_maison.wav +%%DATADIR%%/sounds/fr/tv_mecanicien.wav +%%DATADIR%%/sounds/fr/tv_pecheur.wav +%%DATADIR%%/sounds/fr/tv_pompier.wav +%%DATADIR%%/sounds/fr/tv_remorque.wav +%%DATADIR%%/sounds/fr/tv_rocher.wav +%%DATADIR%%/sounds/fr/tv_singe.wav +%%DATADIR%%/sounds/fr/tv_tracteur-routier.wav +%%DATADIR%%/sounds/fr/tv_tractopelle.wav +%%DATADIR%%/sounds/fr/tv_train.wav +%%DATADIR%%/sounds/fr/tv_tunnel.wav +%%DATADIR%%/sounds/fr/tv_voiture.wav +%%DATADIR%%/sounds/fr/tv_wagon.wav %%DATADIR%%/sounds/ga.soundtheme %%DATADIR%%/sounds/ga/beal.wav %%DATADIR%%/sounds/ga/carbhat.wav %%DATADIR%%/sounds/ga/cluas.wav %%DATADIR%%/sounds/ga/croimeal.wav %%DATADIR%%/sounds/ga/cuachog.wav %%DATADIR%%/sounds/ga/fainne-cluaise.wav %%DATADIR%%/sounds/ga/gruaig.wav %%DATADIR%%/sounds/ga/hata.wav %%DATADIR%%/sounds/ga/mala.wav %%DATADIR%%/sounds/ga/speaclai-greine.wav %%DATADIR%%/sounds/ga/speaclai.wav %%DATADIR%%/sounds/ga/sron.wav %%DATADIR%%/sounds/ga/suil.wav %%DATADIR%%/sounds/gl.soundtheme %%DATADIR%%/sounds/gl/ball.ogg %%DATADIR%%/sounds/gl/bow.ogg %%DATADIR%%/sounds/gl/coat.ogg %%DATADIR%%/sounds/gl/ear.ogg %%DATADIR%%/sounds/gl/earring.ogg %%DATADIR%%/sounds/gl/egypt_arch.ogg %%DATADIR%%/sounds/gl/egypt_birds.ogg %%DATADIR%%/sounds/gl/egypt_boy.ogg %%DATADIR%%/sounds/gl/egypt_bridge.ogg %%DATADIR%%/sounds/gl/egypt_camel.ogg %%DATADIR%%/sounds/gl/egypt_cart.ogg %%DATADIR%%/sounds/gl/egypt_column.ogg %%DATADIR%%/sounds/gl/egypt_donkey.ogg %%DATADIR%%/sounds/gl/egypt_girl.ogg %%DATADIR%%/sounds/gl/egypt_grass.ogg %%DATADIR%%/sounds/gl/egypt_man.ogg %%DATADIR%%/sounds/gl/egypt_oasis.ogg %%DATADIR%%/sounds/gl/egypt_palmtree.ogg %%DATADIR%%/sounds/gl/egypt_pyramid.ogg %%DATADIR%%/sounds/gl/egypt_road.ogg %%DATADIR%%/sounds/gl/egypt_sphynx.ogg %%DATADIR%%/sounds/gl/egypt_well.ogg %%DATADIR%%/sounds/gl/egypt_woman.ogg %%DATADIR%%/sounds/gl/eye.ogg %%DATADIR%%/sounds/gl/eyebrow.ogg %%DATADIR%%/sounds/gl/flower.ogg %%DATADIR%%/sounds/gl/hair.ogg %%DATADIR%%/sounds/gl/hat.ogg %%DATADIR%%/sounds/gl/moon_alien.ogg %%DATADIR%%/sounds/gl/moon_astronaut.ogg %%DATADIR%%/sounds/gl/moon_earth.ogg %%DATADIR%%/sounds/gl/moon_fallingstar.ogg %%DATADIR%%/sounds/gl/moon_hotel.ogg %%DATADIR%%/sounds/gl/moon_monster.ogg %%DATADIR%%/sounds/gl/moon_moonwalker.ogg %%DATADIR%%/sounds/gl/moon_planet.ogg %%DATADIR%%/sounds/gl/moon_radar.ogg %%DATADIR%%/sounds/gl/moon_rocket.ogg %%DATADIR%%/sounds/gl/moon_satellite.ogg %%DATADIR%%/sounds/gl/moon_sign.ogg %%DATADIR%%/sounds/gl/moon_star.ogg %%DATADIR%%/sounds/gl/moon_ufo.ogg %%DATADIR%%/sounds/gl/moustache.ogg %%DATADIR%%/sounds/gl/mouth.ogg %%DATADIR%%/sounds/gl/nose.ogg %%DATADIR%%/sounds/gl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/gl/pizzeria_bacon.ogg %%DATADIR%%/sounds/gl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/gl/pizzeria_cheese.ogg %%DATADIR%%/sounds/gl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/gl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/gl/pizzeria_olive.ogg %%DATADIR%%/sounds/gl/pizzeria_onion.ogg %%DATADIR%%/sounds/gl/pizzeria_oregano.ogg %%DATADIR%%/sounds/gl/pizzeria_pepper.ogg %%DATADIR%%/sounds/gl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/gl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/gl/pizzeria_salami.ogg %%DATADIR%%/sounds/gl/pizzeria_tomato.ogg %%DATADIR%%/sounds/gl/shoe.ogg %%DATADIR%%/sounds/gl/shorts.ogg %%DATADIR%%/sounds/gl/skirt.ogg %%DATADIR%%/sounds/gl/spectacles.ogg %%DATADIR%%/sounds/gl/stick.ogg %%DATADIR%%/sounds/gl/sunglasses.ogg %%DATADIR%%/sounds/gl/tie.ogg %%DATADIR%%/sounds/gl/tv_bicycle.ogg %%DATADIR%%/sounds/gl/tv_car.ogg %%DATADIR%%/sounds/gl/tv_cyclist.ogg %%DATADIR%%/sounds/gl/tv_train.ogg %%DATADIR%%/sounds/gl/umbrella.ogg +%%DATADIR%%/sounds/id.soundtheme %%DATADIR%%/sounds/it.soundtheme %%DATADIR%%/sounds/it/baffi.wav %%DATADIR%%/sounds/it/bocca.wav %%DATADIR%%/sounds/it/capelli.wav %%DATADIR%%/sounds/it/cappello.wav %%DATADIR%%/sounds/it/cravatta.wav %%DATADIR%%/sounds/it/cravattino.wav %%DATADIR%%/sounds/it/naso.wav %%DATADIR%%/sounds/it/occhiali.wav %%DATADIR%%/sounds/it/occhialidasole.wav %%DATADIR%%/sounds/it/occhio.wav %%DATADIR%%/sounds/it/orecchino.wav %%DATADIR%%/sounds/it/orecchio.wav %%DATADIR%%/sounds/it/sopracciglio.wav %%DATADIR%%/sounds/lt.soundtheme %%DATADIR%%/sounds/lt/ball.ogg %%DATADIR%%/sounds/lt/bow.ogg %%DATADIR%%/sounds/lt/coat.ogg %%DATADIR%%/sounds/lt/ear.ogg %%DATADIR%%/sounds/lt/earring.ogg %%DATADIR%%/sounds/lt/egypt_arch.ogg %%DATADIR%%/sounds/lt/egypt_birds.ogg %%DATADIR%%/sounds/lt/egypt_boy.ogg %%DATADIR%%/sounds/lt/egypt_bridge.ogg %%DATADIR%%/sounds/lt/egypt_camel.ogg %%DATADIR%%/sounds/lt/egypt_cart.ogg %%DATADIR%%/sounds/lt/egypt_column.ogg %%DATADIR%%/sounds/lt/egypt_donkey.ogg %%DATADIR%%/sounds/lt/egypt_girl.ogg %%DATADIR%%/sounds/lt/egypt_grass.ogg %%DATADIR%%/sounds/lt/egypt_man.ogg %%DATADIR%%/sounds/lt/egypt_oasis.ogg %%DATADIR%%/sounds/lt/egypt_palmtree.ogg %%DATADIR%%/sounds/lt/egypt_pyramid.ogg %%DATADIR%%/sounds/lt/egypt_road.ogg %%DATADIR%%/sounds/lt/egypt_sphynx.ogg %%DATADIR%%/sounds/lt/egypt_well.ogg %%DATADIR%%/sounds/lt/egypt_woman.ogg %%DATADIR%%/sounds/lt/eye.ogg %%DATADIR%%/sounds/lt/eyebrow.ogg %%DATADIR%%/sounds/lt/flower.ogg %%DATADIR%%/sounds/lt/frier-tux.ogg %%DATADIR%%/sounds/lt/guard-tux.ogg %%DATADIR%%/sounds/lt/hair.ogg %%DATADIR%%/sounds/lt/hat.ogg %%DATADIR%%/sounds/lt/kid-tux.ogg %%DATADIR%%/sounds/lt/little-tux.ogg %%DATADIR%%/sounds/lt/maiden-tux.ogg %%DATADIR%%/sounds/lt/moon_alien.ogg %%DATADIR%%/sounds/lt/moon_astronaut.ogg %%DATADIR%%/sounds/lt/moon_earth.ogg %%DATADIR%%/sounds/lt/moon_fallingstar.ogg %%DATADIR%%/sounds/lt/moon_hotel.ogg %%DATADIR%%/sounds/lt/moon_monster.ogg %%DATADIR%%/sounds/lt/moon_moonwalker.ogg %%DATADIR%%/sounds/lt/moon_planet.ogg %%DATADIR%%/sounds/lt/moon_radar.ogg %%DATADIR%%/sounds/lt/moon_rocket.ogg %%DATADIR%%/sounds/lt/moon_satellite.ogg %%DATADIR%%/sounds/lt/moon_sign.ogg %%DATADIR%%/sounds/lt/moon_star.ogg %%DATADIR%%/sounds/lt/moon_ufo.ogg %%DATADIR%%/sounds/lt/moustache.ogg %%DATADIR%%/sounds/lt/mouth.ogg %%DATADIR%%/sounds/lt/nose.ogg %%DATADIR%%/sounds/lt/pizzeria_anchovy.ogg %%DATADIR%%/sounds/lt/pizzeria_bacon.ogg %%DATADIR%%/sounds/lt/pizzeria_broccolli.ogg %%DATADIR%%/sounds/lt/pizzeria_cheese.ogg %%DATADIR%%/sounds/lt/pizzeria_cucumber.ogg %%DATADIR%%/sounds/lt/pizzeria_mushroom.ogg %%DATADIR%%/sounds/lt/pizzeria_olive.ogg %%DATADIR%%/sounds/lt/pizzeria_onion.ogg %%DATADIR%%/sounds/lt/pizzeria_oregano.ogg %%DATADIR%%/sounds/lt/pizzeria_pepper.ogg %%DATADIR%%/sounds/lt/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/lt/pizzeria_pineapple.ogg %%DATADIR%%/sounds/lt/pizzeria_salami.ogg %%DATADIR%%/sounds/lt/pizzeria_tomato.ogg %%DATADIR%%/sounds/lt/prince-tux.ogg %%DATADIR%%/sounds/lt/robin-tux.ogg %%DATADIR%%/sounds/lt/sherif-tux.ogg %%DATADIR%%/sounds/lt/shoe.ogg %%DATADIR%%/sounds/lt/shorts.ogg %%DATADIR%%/sounds/lt/skirt.ogg %%DATADIR%%/sounds/lt/spectacles.ogg %%DATADIR%%/sounds/lt/stick.ogg %%DATADIR%%/sounds/lt/sunglasses.ogg %%DATADIR%%/sounds/lt/tie.ogg %%DATADIR%%/sounds/lt/tux-angry.ogg %%DATADIR%%/sounds/lt/tux-apple.ogg %%DATADIR%%/sounds/lt/tux-arrow.ogg %%DATADIR%%/sounds/lt/tux-arrows.ogg %%DATADIR%%/sounds/lt/tux-bow.ogg %%DATADIR%%/sounds/lt/tux-bullseye.ogg %%DATADIR%%/sounds/lt/tux-candles.ogg %%DATADIR%%/sounds/lt/tux-dowe.ogg %%DATADIR%%/sounds/lt/tux-fish.ogg %%DATADIR%%/sounds/lt/tux-flask.ogg %%DATADIR%%/sounds/lt/tux-fly.ogg %%DATADIR%%/sounds/lt/tux-goblet.ogg %%DATADIR%%/sounds/lt/tux-guitar.ogg %%DATADIR%%/sounds/lt/tux-huh.ogg %%DATADIR%%/sounds/lt/tux-idea.ogg %%DATADIR%%/sounds/lt/tux-key.ogg %%DATADIR%%/sounds/lt/tux-laugh.ogg %%DATADIR%%/sounds/lt/tux-letter.ogg %%DATADIR%%/sounds/lt/tux-love.ogg %%DATADIR%%/sounds/lt/tux-note.ogg %%DATADIR%%/sounds/lt/tux-notes.ogg %%DATADIR%%/sounds/lt/tux-plate.ogg %%DATADIR%%/sounds/lt/tux-poison.ogg %%DATADIR%%/sounds/lt/tux-shoot.ogg %%DATADIR%%/sounds/lt/tux-sick.ogg %%DATADIR%%/sounds/lt/tux-stare.ogg %%DATADIR%%/sounds/lt/tux-teacup.ogg %%DATADIR%%/sounds/lt/tux-vase.ogg %%DATADIR%%/sounds/lt/tux-wanted.ogg %%DATADIR%%/sounds/lt/tux-what.ogg %%DATADIR%%/sounds/lt/tux-wow.ogg %%DATADIR%%/sounds/lt/tux-zzz.ogg %%DATADIR%%/sounds/lt/tv_accident.ogg %%DATADIR%%/sounds/lt/tv_ball.ogg %%DATADIR%%/sounds/lt/tv_barrier.ogg %%DATADIR%%/sounds/lt/tv_bicycle.ogg %%DATADIR%%/sounds/lt/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/lt/tv_car.ogg %%DATADIR%%/sounds/lt/tv_caravan.ogg %%DATADIR%%/sounds/lt/tv_cyclist.ogg %%DATADIR%%/sounds/lt/tv_elephant.ogg %%DATADIR%%/sounds/lt/tv_excavator.ogg %%DATADIR%%/sounds/lt/tv_fence.ogg %%DATADIR%%/sounds/lt/tv_fire.ogg %%DATADIR%%/sounds/lt/tv_fireengine.ogg %%DATADIR%%/sounds/lt/tv_fireman.ogg %%DATADIR%%/sounds/lt/tv_fisherman.ogg %%DATADIR%%/sounds/lt/tv_giraffe.ogg %%DATADIR%%/sounds/lt/tv_guitar.ogg %%DATADIR%%/sounds/lt/tv_guitarist.ogg %%DATADIR%%/sounds/lt/tv_house.ogg %%DATADIR%%/sounds/lt/tv_ladder.ogg %%DATADIR%%/sounds/lt/tv_lion.ogg %%DATADIR%%/sounds/lt/tv_lorry.ogg %%DATADIR%%/sounds/lt/tv_lorry_tractor.ogg %%DATADIR%%/sounds/lt/tv_man.ogg %%DATADIR%%/sounds/lt/tv_mechanic.ogg %%DATADIR%%/sounds/lt/tv_monkey.ogg %%DATADIR%%/sounds/lt/tv_path.ogg %%DATADIR%%/sounds/lt/tv_rock.ogg %%DATADIR%%/sounds/lt/tv_school.ogg %%DATADIR%%/sounds/lt/tv_shop.ogg %%DATADIR%%/sounds/lt/tv_smoke.ogg %%DATADIR%%/sounds/lt/tv_tipper.ogg %%DATADIR%%/sounds/lt/tv_trailer.ogg %%DATADIR%%/sounds/lt/tv_train.ogg %%DATADIR%%/sounds/lt/tv_tree.ogg %%DATADIR%%/sounds/lt/tv_tunnel.ogg %%DATADIR%%/sounds/lt/tv_volley_net.ogg %%DATADIR%%/sounds/lt/tv_wagon.ogg %%DATADIR%%/sounds/lt/tv_woman.ogg %%DATADIR%%/sounds/lt/umbrella.ogg %%DATADIR%%/sounds/lt/whitch-tux.ogg %%DATADIR%%/sounds/lt/xmas_angel.ogg %%DATADIR%%/sounds/lt/xmas_ball.ogg %%DATADIR%%/sounds/lt/xmas_boot.ogg %%DATADIR%%/sounds/lt/xmas_candle.ogg %%DATADIR%%/sounds/lt/xmas_comet.ogg %%DATADIR%%/sounds/lt/xmas_garland.ogg %%DATADIR%%/sounds/lt/xmas_lights.ogg %%DATADIR%%/sounds/lt/xmas_mistletoe.ogg %%DATADIR%%/sounds/lt/xmas_moon.ogg %%DATADIR%%/sounds/lt/xmas_owl.ogg %%DATADIR%%/sounds/lt/xmas_present.ogg %%DATADIR%%/sounds/lt/xmas_rabbit.ogg %%DATADIR%%/sounds/lt/xmas_reindeer.ogg %%DATADIR%%/sounds/lt/xmas_shoe.ogg %%DATADIR%%/sounds/lt/xmas_snowflake.ogg %%DATADIR%%/sounds/lt/xmas_snowman.ogg %%DATADIR%%/sounds/lt/xmas_star.ogg %%DATADIR%%/sounds/lt/xmas_tree.ogg %%DATADIR%%/sounds/lt/xmas_turtle.ogg %%DATADIR%%/sounds/lt/xmas_tux.ogg %%DATADIR%%/sounds/nds.soundtheme %%DATADIR%%/sounds/nds/brill.wav %%DATADIR%%/sounds/nds/farken.wav %%DATADIR%%/sounds/nds/fleeg.wav %%DATADIR%%/sounds/nds/hoor.wav %%DATADIR%%/sounds/nds/hoot.wav %%DATADIR%%/sounds/nds/mund.wav %%DATADIR%%/sounds/nds/nees.wav %%DATADIR%%/sounds/nds/neesboort.wav %%DATADIR%%/sounds/nds/ohr.wav %%DATADIR%%/sounds/nds/ohrring.wav %%DATADIR%%/sounds/nds/oog.wav %%DATADIR%%/sounds/nds/oogbro.wav %%DATADIR%%/sounds/nds/slips.wav %%DATADIR%%/sounds/nds/suennbrill.wav %%DATADIR%%/sounds/nl.soundtheme %%DATADIR%%/sounds/nl/bril.wav %%DATADIR%%/sounds/nl/haar.wav %%DATADIR%%/sounds/nl/hoed.wav %%DATADIR%%/sounds/nl/mond.wav %%DATADIR%%/sounds/nl/neus.wav %%DATADIR%%/sounds/nl/oog.wav %%DATADIR%%/sounds/nl/oor.wav %%DATADIR%%/sounds/nl/oorbel.wav %%DATADIR%%/sounds/nl/snor.wav %%DATADIR%%/sounds/nl/strik.wav %%DATADIR%%/sounds/nl/stropdas.wav %%DATADIR%%/sounds/nl/wenkbrauw.wav %%DATADIR%%/sounds/nl/zonnebril.wav %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg %%DATADIR%%/sounds/sr.soundtheme %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg %%DATADIR%%/sounds/sr@ijekavian.soundtheme %%DATADIR%%/sounds/sr@ijekavianlatin.soundtheme %%DATADIR%%/sounds/sr@latin.soundtheme %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg share/kxmlgui5/ktuberling/ktuberlingui.rc share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/bg/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 519954) +++ head/games/kubrick/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930842 -SHA256 (KDE/applications/19.08.3/kubrick-19.08.3.tar.xz) = fd11e0969ae08e42316044535008511b3fcae7752c7a86b2ae9ae24c94e44855 -SIZE (KDE/applications/19.08.3/kubrick-19.08.3.tar.xz) = 313384 +TIMESTAMP = 1575623378 +SHA256 (KDE/applications/19.12.0/kubrick-19.12.0.tar.xz) = 18b00b3c2ea3f000462b475faaefe4de694a2f45f178e4f576c900436a507d0f +SIZE (KDE/applications/19.12.0/kubrick-19.12.0.tar.xz) = 317156 Index: head/games/kubrick/pkg-plist =================================================================== --- head/games/kubrick/pkg-plist (revision 519954) +++ head/games/kubrick/pkg-plist (revision 519955) @@ -1,80 +1,81 @@ bin/kubrick share/qlogging-categories5/kubrick.categories share/applications/org.kde.kubrick.desktop share/icons/hicolor/128x128/apps/kubrick.png share/icons/hicolor/16x16/apps/kubrick.png share/icons/hicolor/22x22/apps/kubrick.png share/icons/hicolor/32x32/apps/kubrick.png share/icons/hicolor/48x48/apps/kubrick.png share/icons/hicolor/64x64/apps/kubrick.png %%DATADIR%%/m333CTwirl2.kbk %%DATADIR%%/m333Complete.kbk %%DATADIR%%/m333E2prX.kbk %%DATADIR%%/m333EFlip2.kbk %%DATADIR%%/m333LLCornerPos.kbk %%DATADIR%%/m333LLCornerRot.kbk %%DATADIR%%/m333LLEdgeFlip.kbk %%DATADIR%%/m333LLEdgePos.kbk %%DATADIR%%/m333Layer1.kbk %%DATADIR%%/m333MEdge1.kbk %%DATADIR%%/m333MEdge2.kbk %%DATADIR%%/p333Bar4.kbk %%DATADIR%%/p333DoubleCube.kbk %%DATADIR%%/p333Plus4.kbk %%DATADIR%%/p333Snake.kbk %%DATADIR%%/p333Spot4.kbk %%DATADIR%%/p333Spot6.kbk %%DATADIR%%/p333Tricolor6.kbk %%DATADIR%%/p333U4.kbk %%DATADIR%%/p333U6.kbk %%DATADIR%%/p333Worm.kbk %%DATADIR%%/p333X2.kbk %%DATADIR%%/p333X6.kbk %%DATADIR%%/themes/default.svgz share/kxmlgui5/kubrick/kubrickui.rc share/locale/bs/LC_MESSAGES/kubrick.mo share/locale/ca/LC_MESSAGES/kubrick.mo share/locale/ca@valencia/LC_MESSAGES/kubrick.mo share/locale/cs/LC_MESSAGES/kubrick.mo share/locale/da/LC_MESSAGES/kubrick.mo share/locale/de/LC_MESSAGES/kubrick.mo share/locale/el/LC_MESSAGES/kubrick.mo share/locale/en_GB/LC_MESSAGES/kubrick.mo share/locale/eo/LC_MESSAGES/kubrick.mo share/locale/es/LC_MESSAGES/kubrick.mo share/locale/et/LC_MESSAGES/kubrick.mo share/locale/eu/LC_MESSAGES/kubrick.mo share/locale/fi/LC_MESSAGES/kubrick.mo share/locale/fr/LC_MESSAGES/kubrick.mo share/locale/ga/LC_MESSAGES/kubrick.mo share/locale/gl/LC_MESSAGES/kubrick.mo share/locale/hr/LC_MESSAGES/kubrick.mo share/locale/hu/LC_MESSAGES/kubrick.mo +share/locale/id/LC_MESSAGES/kubrick.mo share/locale/is/LC_MESSAGES/kubrick.mo share/locale/it/LC_MESSAGES/kubrick.mo share/locale/ja/LC_MESSAGES/kubrick.mo share/locale/kk/LC_MESSAGES/kubrick.mo share/locale/km/LC_MESSAGES/kubrick.mo share/locale/ko/LC_MESSAGES/kubrick.mo share/locale/lt/LC_MESSAGES/kubrick.mo share/locale/lv/LC_MESSAGES/kubrick.mo share/locale/mr/LC_MESSAGES/kubrick.mo share/locale/nb/LC_MESSAGES/kubrick.mo share/locale/nds/LC_MESSAGES/kubrick.mo share/locale/nl/LC_MESSAGES/kubrick.mo share/locale/nn/LC_MESSAGES/kubrick.mo share/locale/pl/LC_MESSAGES/kubrick.mo share/locale/pt/LC_MESSAGES/kubrick.mo share/locale/pt_BR/LC_MESSAGES/kubrick.mo share/locale/ro/LC_MESSAGES/kubrick.mo share/locale/ru/LC_MESSAGES/kubrick.mo share/locale/sk/LC_MESSAGES/kubrick.mo share/locale/sl/LC_MESSAGES/kubrick.mo share/locale/sr/LC_MESSAGES/kubrick.mo share/locale/sv/LC_MESSAGES/kubrick.mo share/locale/tr/LC_MESSAGES/kubrick.mo share/locale/ug/LC_MESSAGES/kubrick.mo share/locale/uk/LC_MESSAGES/kubrick.mo share/locale/zh_CN/LC_MESSAGES/kubrick.mo share/locale/zh_TW/LC_MESSAGES/kubrick.mo share/metainfo/org.kde.kubrick.appdata.xml Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 519954) +++ head/games/libkdegames/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930843 -SHA256 (KDE/applications/19.08.3/libkdegames-19.08.3.tar.xz) = 019cdc0c702b8c9cacabc36ec2c81951e43ff80dbdfe527cba0dc5f5649dbb89 -SIZE (KDE/applications/19.08.3/libkdegames-19.08.3.tar.xz) = 6387676 +TIMESTAMP = 1575623372 +SHA256 (KDE/applications/19.12.0/libkdegames-19.12.0.tar.xz) = 4498e462f248e44bbd7fe28e5c8a47d43cdd058e813c47e8fe228b8d2439ad1f +SIZE (KDE/applications/19.12.0/libkdegames-19.12.0.tar.xz) = 6384612 Index: head/games/libkdegames/pkg-plist =================================================================== --- head/games/libkdegames/pkg-plist (revision 519954) +++ head/games/libkdegames/pkg-plist (revision 519955) @@ -1,182 +1,182 @@ -share/qlogging-categories5/libkdegames.categories 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%%.1.0 +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/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 519954) +++ head/games/libkmahjongg/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930844 -SHA256 (KDE/applications/19.08.3/libkmahjongg-19.08.3.tar.xz) = fd7d036ba3b17246fad42e0366003233c42f5b03df881d6bc6886518c2acb165 -SIZE (KDE/applications/19.08.3/libkmahjongg-19.08.3.tar.xz) = 1685196 +TIMESTAMP = 1575623376 +SHA256 (KDE/applications/19.12.0/libkmahjongg-19.12.0.tar.xz) = 56e94db922f2b0613721e6ce52ba6dc1825d4a212613b1ff78daed6b9ca95989 +SIZE (KDE/applications/19.12.0/libkmahjongg-19.12.0.tar.xz) = 1685412 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 519954) +++ head/games/lskat/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930845 -SHA256 (KDE/applications/19.08.3/lskat-19.08.3.tar.xz) = 499334ffff57a46973caa4f8571b06ae482bccff9e17dcd9ba82ac7f448365e2 -SIZE (KDE/applications/19.08.3/lskat-19.08.3.tar.xz) = 1219400 +TIMESTAMP = 1575623369 +SHA256 (KDE/applications/19.12.0/lskat-19.12.0.tar.xz) = e15ac235b483851bd1cdd913217e4c9aefe6ebf67f0240b906c4b65c48aff52e +SIZE (KDE/applications/19.12.0/lskat-19.12.0.tar.xz) = 1219244 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 519954) +++ head/games/palapeli/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930845 -SHA256 (KDE/applications/19.08.3/palapeli-19.08.3.tar.xz) = fc8e4ddd92def4998a0e8b11bc0a45671e5b07e065313aec135e74c056f321bd -SIZE (KDE/applications/19.08.3/palapeli-19.08.3.tar.xz) = 2069352 +TIMESTAMP = 1575623363 +SHA256 (KDE/applications/19.12.0/palapeli-19.12.0.tar.xz) = 3df4202ae3fecd1dc425797b8017169d52dcf0fcb9fd3f2ba34876aa36f99054 +SIZE (KDE/applications/19.12.0/palapeli-19.12.0.tar.xz) = 2069068 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 519954) +++ head/games/picmi/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930846 -SHA256 (KDE/applications/19.08.3/picmi-19.08.3.tar.xz) = 6ed444d40a388e5c1f5f7bda24d35fa119fa5b5ee488def02321f14476bd357d -SIZE (KDE/applications/19.08.3/picmi-19.08.3.tar.xz) = 1358012 +TIMESTAMP = 1575623393 +SHA256 (KDE/applications/19.12.0/picmi-19.12.0.tar.xz) = c007015f876d85afd0077b25f268a743e49b13c7004a8a54fd97e99fab93ef18 +SIZE (KDE/applications/19.12.0/picmi-19.12.0.tar.xz) = 1358488 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 519954) +++ head/graphics/gwenview/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930847 -SHA256 (KDE/applications/19.08.3/gwenview-19.08.3.tar.xz) = 7e7ad69eaa7a6b2d0549e94d1dab0d012107c822d66483d54aa8268900820255 -SIZE (KDE/applications/19.08.3/gwenview-19.08.3.tar.xz) = 5723104 +TIMESTAMP = 1575623395 +SHA256 (KDE/applications/19.12.0/gwenview-19.12.0.tar.xz) = 5510c8068ea91c4e0d1f0028e36533a65f26d7967bbd774fcd81de43d7a3047a +SIZE (KDE/applications/19.12.0/gwenview-19.12.0.tar.xz) = 5735360 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 519954) +++ head/graphics/kamera/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930848 -SHA256 (KDE/applications/19.08.3/kamera-19.08.3.tar.xz) = 93a8a3dc6c4927b28a6ee0f09f1709e67f5bc38281b3775390513f2e69086942 -SIZE (KDE/applications/19.08.3/kamera-19.08.3.tar.xz) = 100144 +TIMESTAMP = 1575623405 +SHA256 (KDE/applications/19.12.0/kamera-19.12.0.tar.xz) = 8337999dc5f9b6e8b51ee51a80a6a6ad9f3cf6932ca059b99c6027a64def923b +SIZE (KDE/applications/19.12.0/kamera-19.12.0.tar.xz) = 103492 Index: head/graphics/kamera/pkg-plist =================================================================== --- head/graphics/kamera/pkg-plist (revision 519954) +++ head/graphics/kamera/pkg-plist (revision 519955) @@ -1,83 +1,86 @@ %%QT_PLUGINDIR%%/kcm_kamera.so %%QT_PLUGINDIR%%/kio_kamera.so share/kservices5/camera.protocol share/kservices5/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo +share/locale/el/LC_MESSAGES/kio5_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo +share/locale/et/LC_MESSAGES/kio5_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio5_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio5_kamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo +share/metainfo/org.kde.kamera.metainfo.xml share/solid/actions/solid_camera.desktop Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 519954) +++ head/graphics/kcolorchooser/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930849 -SHA256 (KDE/applications/19.08.3/kcolorchooser-19.08.3.tar.xz) = 0c3d45ceb9029f0d316e61b3f403838b4c7de82a3211a231b539e6755386c657 -SIZE (KDE/applications/19.08.3/kcolorchooser-19.08.3.tar.xz) = 20984 +TIMESTAMP = 1575623402 +SHA256 (KDE/applications/19.12.0/kcolorchooser-19.12.0.tar.xz) = fe49f5eeffe806a044c09194d44c335d337ca233e91402f206072cf12e102446 +SIZE (KDE/applications/19.12.0/kcolorchooser-19.12.0.tar.xz) = 21480 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 519954) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930850 -SHA256 (KDE/applications/19.08.3/kdegraphics-mobipocket-19.08.3.tar.xz) = d9ea38255c967dcf0de820e6ad663e721188f5541c18c459e611f6d72ddc8e8f -SIZE (KDE/applications/19.08.3/kdegraphics-mobipocket-19.08.3.tar.xz) = 13496 +TIMESTAMP = 1575623406 +SHA256 (KDE/applications/19.12.0/kdegraphics-mobipocket-19.12.0.tar.xz) = c0f59133d66084b3341e02cfe91341cfb5722166b24a43e6e7b4f8a11badbf82 +SIZE (KDE/applications/19.12.0/kdegraphics-mobipocket-19.12.0.tar.xz) = 15840 Index: head/graphics/kdegraphics-mobipocket/pkg-plist =================================================================== --- head/graphics/kdegraphics-mobipocket/pkg-plist (revision 519954) +++ head/graphics/kdegraphics-mobipocket/pkg-plist (revision 519955) @@ -1,12 +1,13 @@ include/qmobipocket/mobipocket.h include/qmobipocket/qfilestream.h include/qmobipocket/qmobipocket_export.h lib/cmake/QMobipocket/QMobipocketConfig.cmake lib/cmake/QMobipocket/QMobipocketConfigVersion.cmake lib/cmake/QMobipocket/QMobipocketTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/QMobipocket/QMobipocketTargets.cmake lib/libqmobipocket.so lib/libqmobipocket.so.2 lib/libqmobipocket.so.2.0.0 %%QT_PLUGINDIR%%/mobithumbnail.so share/kservices5/mobithumbnail.desktop +share/metainfo/org.kde.kdegraphics-mobipocket.metainfo.xml Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 519954) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930851 -SHA256 (KDE/applications/19.08.3/svgpart-19.08.3.tar.xz) = 1ad667fc6988b64fd379cfb79d00a7c04c97de530e4b61a9ae8a525971ea2a94 -SIZE (KDE/applications/19.08.3/svgpart-19.08.3.tar.xz) = 21264 +TIMESTAMP = 1575623400 +SHA256 (KDE/applications/19.12.0/svgpart-19.12.0.tar.xz) = 08696a77c7e31d86cd398e6d1616340b5a0d34d91760bb6aeea6a7bd08a665ce +SIZE (KDE/applications/19.12.0/svgpart-19.12.0.tar.xz) = 21256 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 519954) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930851 -SHA256 (KDE/applications/19.08.3/kdegraphics-thumbnailers-19.08.3.tar.xz) = 14d342336e92b3913d46a415da9fcf53d239f0ceb16aed99c1e095641ce6ddb4 -SIZE (KDE/applications/19.08.3/kdegraphics-thumbnailers-19.08.3.tar.xz) = 43564 +TIMESTAMP = 1575623399 +SHA256 (KDE/applications/19.12.0/kdegraphics-thumbnailers-19.12.0.tar.xz) = 98e36eee62e7ec64dc4a1c90a519ae7696e83291a6c8e9e8f8d0eff1230dfec9 +SIZE (KDE/applications/19.12.0/kdegraphics-thumbnailers-19.12.0.tar.xz) = 46188 Index: head/graphics/kdegraphics-thumbnailers/pkg-plist =================================================================== --- head/graphics/kdegraphics-thumbnailers/pkg-plist (revision 519954) +++ head/graphics/kdegraphics-thumbnailers/pkg-plist (revision 519955) @@ -1,6 +1,7 @@ %%QT_PLUGINDIR%%/blenderthumbnail.so %%QT_PLUGINDIR%%/gsthumbnail.so %%QT_PLUGINDIR%%/rawthumbnail.so share/kservices5/blenderthumbnail.desktop share/kservices5/gsthumbnail.desktop share/kservices5/rawthumbnail.desktop +share/metainfo/org.kde.kdegraphics-thumbnailers.metainfo.xml Index: head/graphics/kimagemapeditor/Makefile =================================================================== --- head/graphics/kimagemapeditor/Makefile (revision 519954) +++ head/graphics/kimagemapeditor/Makefile (revision 519955) @@ -1,21 +1,22 @@ # $FreeBSD$ PORTNAME= kimagemapeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE generator of HTML image maps USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews \ jobwidgets js kdelibs4support khtml kio notifications \ parts service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui -USE_QT= concurrent core dbus gui network printsupport widgets xml \ +USE_QT= concurrent core dbus gui network printsupport webengine \ + widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 519954) +++ head/graphics/kimagemapeditor/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930852 -SHA256 (KDE/applications/19.08.3/kimagemapeditor-19.08.3.tar.xz) = 9c69541c774d15ac02164c52c9e4ba523e76e195231bf6db528fd94407347434 -SIZE (KDE/applications/19.08.3/kimagemapeditor-19.08.3.tar.xz) = 1070468 +TIMESTAMP = 1575623401 +SHA256 (KDE/applications/19.12.0/kimagemapeditor-19.12.0.tar.xz) = 3fd6a0ec4136026a9a928d0a190f882b5678aead3671366859fa6963d7bf9fc1 +SIZE (KDE/applications/19.12.0/kimagemapeditor-19.12.0.tar.xz) = 1071484 Index: head/graphics/kimagemapeditor/pkg-plist =================================================================== --- head/graphics/kimagemapeditor/pkg-plist (revision 519954) +++ head/graphics/kimagemapeditor/pkg-plist (revision 519955) @@ -1,77 +1,75 @@ bin/kimagemapeditor share/qlogging-categories5/kimagemapeditor.categories %%QT_PLUGINDIR%%/kimagemapeditor.so share/applications/org.kde.kimagemapeditor.desktop share/icons/hicolor/128x128/apps/kimagemapeditor.png share/icons/hicolor/16x16/apps/kimagemapeditor.png share/icons/hicolor/22x22/actions/addpoint.png share/icons/hicolor/22x22/actions/arrow.png share/icons/hicolor/22x22/actions/circle.png share/icons/hicolor/22x22/actions/circle2.png share/icons/hicolor/22x22/actions/freehand.png share/icons/hicolor/22x22/actions/lower.png share/icons/hicolor/22x22/actions/polygon.png share/icons/hicolor/22x22/actions/raise.png share/icons/hicolor/22x22/actions/rectangle.png share/icons/hicolor/22x22/actions/removepoint.png share/icons/hicolor/22x22/apps/kimagemapeditor.png share/icons/hicolor/32x32/apps/kimagemapeditor.png share/icons/hicolor/48x48/apps/kimagemapeditor.png share/icons/hicolor/64x64/apps/kimagemapeditor.png share/icons/hicolor/scalable/apps/kimagemapeditor.svgz %%DATADIR%%/addpointcursor.png %%DATADIR%%/freehandcursor.png %%DATADIR%%/polygoncursor.png %%DATADIR%%/removepointcursor.png share/kservices5/kimagemapeditorpart.desktop -share/kxmlgui5/kimagemapeditor/kimagemapeditorpartui.rc -share/kxmlgui5/kimagemapeditor/kimagemapeditorui.rc share/locale/ar/LC_MESSAGES/kimagemapeditor.mo share/locale/bg/LC_MESSAGES/kimagemapeditor.mo share/locale/bs/LC_MESSAGES/kimagemapeditor.mo share/locale/ca/LC_MESSAGES/kimagemapeditor.mo share/locale/ca@valencia/LC_MESSAGES/kimagemapeditor.mo share/locale/cs/LC_MESSAGES/kimagemapeditor.mo share/locale/da/LC_MESSAGES/kimagemapeditor.mo share/locale/de/LC_MESSAGES/kimagemapeditor.mo share/locale/el/LC_MESSAGES/kimagemapeditor.mo share/locale/en_GB/LC_MESSAGES/kimagemapeditor.mo share/locale/eo/LC_MESSAGES/kimagemapeditor.mo share/locale/es/LC_MESSAGES/kimagemapeditor.mo share/locale/et/LC_MESSAGES/kimagemapeditor.mo share/locale/eu/LC_MESSAGES/kimagemapeditor.mo share/locale/fa/LC_MESSAGES/kimagemapeditor.mo share/locale/fi/LC_MESSAGES/kimagemapeditor.mo share/locale/fr/LC_MESSAGES/kimagemapeditor.mo share/locale/ga/LC_MESSAGES/kimagemapeditor.mo share/locale/gl/LC_MESSAGES/kimagemapeditor.mo share/locale/hi/LC_MESSAGES/kimagemapeditor.mo share/locale/hr/LC_MESSAGES/kimagemapeditor.mo share/locale/hu/LC_MESSAGES/kimagemapeditor.mo share/locale/it/LC_MESSAGES/kimagemapeditor.mo share/locale/ja/LC_MESSAGES/kimagemapeditor.mo share/locale/kk/LC_MESSAGES/kimagemapeditor.mo share/locale/km/LC_MESSAGES/kimagemapeditor.mo share/locale/ko/LC_MESSAGES/kimagemapeditor.mo share/locale/lt/LC_MESSAGES/kimagemapeditor.mo share/locale/lv/LC_MESSAGES/kimagemapeditor.mo share/locale/mr/LC_MESSAGES/kimagemapeditor.mo share/locale/nb/LC_MESSAGES/kimagemapeditor.mo share/locale/nds/LC_MESSAGES/kimagemapeditor.mo share/locale/nl/LC_MESSAGES/kimagemapeditor.mo share/locale/nn/LC_MESSAGES/kimagemapeditor.mo share/locale/pa/LC_MESSAGES/kimagemapeditor.mo share/locale/pl/LC_MESSAGES/kimagemapeditor.mo share/locale/pt/LC_MESSAGES/kimagemapeditor.mo share/locale/pt_BR/LC_MESSAGES/kimagemapeditor.mo share/locale/ro/LC_MESSAGES/kimagemapeditor.mo share/locale/ru/LC_MESSAGES/kimagemapeditor.mo share/locale/sk/LC_MESSAGES/kimagemapeditor.mo share/locale/sl/LC_MESSAGES/kimagemapeditor.mo share/locale/sv/LC_MESSAGES/kimagemapeditor.mo share/locale/tr/LC_MESSAGES/kimagemapeditor.mo share/locale/ug/LC_MESSAGES/kimagemapeditor.mo share/locale/uk/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_CN/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_TW/LC_MESSAGES/kimagemapeditor.mo share/metainfo/org.kde.kimagemapeditor.appdata.xml Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 519954) +++ head/graphics/kipi-plugins/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930856 -SHA256 (KDE/applications/19.08.3/kipi-plugins-19.08.3.tar.xz) = f540e517421503b54e906633c71c2f688bb920c5aefe7d05a13d0eeaf0356a9b -SIZE (KDE/applications/19.08.3/kipi-plugins-19.08.3.tar.xz) = 1629776 +TIMESTAMP = 1575623398 +SHA256 (KDE/applications/19.12.0/kipi-plugins-19.12.0.tar.xz) = aa7c490a938768f2b54109cef8b9546d972035d403b3faf34b9abe3705946a12 +SIZE (KDE/applications/19.12.0/kipi-plugins-19.12.0.tar.xz) = 1631208 Index: head/graphics/kipi-plugins/pkg-plist =================================================================== --- head/graphics/kipi-plugins/pkg-plist (revision 519954) +++ head/graphics/kipi-plugins/pkg-plist (revision 519955) @@ -1,938 +1,923 @@ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 %%QT_PLUGINDIR%%/kipiplugin_dropbox.so %%QT_PLUGINDIR%%/kipiplugin_facebook.so %%QT_PLUGINDIR%%/kipiplugin_flashexport.so %%QT_PLUGINDIR%%/kipiplugin_flickr.so %%QT_PLUGINDIR%%/kipiplugin_googleservices.so %%QT_PLUGINDIR%%/kipiplugin_imageshack.so %%QT_PLUGINDIR%%/kipiplugin_imgur.so %%QT_PLUGINDIR%%/kipiplugin_jalbum.so %%QT_PLUGINDIR%%/kipiplugin_kmlexport.so %%QT_PLUGINDIR%%/kipiplugin_piwigo.so %%QT_PLUGINDIR%%/kipiplugin_printimages.so %%QT_PLUGINDIR%%/kipiplugin_rajce.so %%QT_PLUGINDIR%%/kipiplugin_remotestorage.so %%QT_PLUGINDIR%%/kipiplugin_sendimages.so %%QT_PLUGINDIR%%/kipiplugin_smug.so %%KVKONTAKTE%%%%QT_PLUGINDIR%%/kipiplugin_vkontakte.so %%MEDIAWIKI%%%%QT_PLUGINDIR%%/kipiplugin_wikimedia.so %%QT_PLUGINDIR%%/kipiplugin_yandexfotki.so share/applications/kipiplugins.desktop share/icons/hicolor/128x128/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-dropbox.png share/icons/hicolor/16x16/apps/kipi-facebook.png share/icons/hicolor/16x16/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-flickr.png share/icons/hicolor/16x16/apps/kipi-googledrive.png share/icons/hicolor/16x16/apps/kipi-googlephoto.png share/icons/hicolor/16x16/apps/kipi-hq.png share/icons/hicolor/16x16/apps/kipi-imgur.png share/icons/hicolor/16x16/apps/kipi-jalbum.png share/icons/hicolor/16x16/apps/kipi-piwigo.png share/icons/hicolor/16x16/apps/kipi-rajce.png share/icons/hicolor/16x16/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/16x16/apps/kipi-wikimedia.png share/icons/hicolor/22x22/apps/kipi-dropbox.png share/icons/hicolor/22x22/apps/kipi-facebook.png share/icons/hicolor/22x22/apps/kipi-flash.png share/icons/hicolor/22x22/apps/kipi-flickr.png share/icons/hicolor/22x22/apps/kipi-googledrive.png share/icons/hicolor/22x22/apps/kipi-googlephoto.png share/icons/hicolor/22x22/apps/kipi-hq.png share/icons/hicolor/22x22/apps/kipi-imgur.png share/icons/hicolor/22x22/apps/kipi-piwigo.png share/icons/hicolor/22x22/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/22x22/apps/kipi-wikimedia.png share/icons/hicolor/24x24/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-dropbox.png share/icons/hicolor/32x32/apps/kipi-facebook.png share/icons/hicolor/32x32/apps/kipi-flash.png share/icons/hicolor/32x32/apps/kipi-flickr.png share/icons/hicolor/32x32/apps/kipi-googledrive.png share/icons/hicolor/32x32/apps/kipi-googlephoto.png share/icons/hicolor/32x32/apps/kipi-hq.png share/icons/hicolor/32x32/apps/kipi-imageshack.png share/icons/hicolor/32x32/apps/kipi-imgur.png share/icons/hicolor/32x32/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-piwigo.png share/icons/hicolor/32x32/apps/kipi-rajce.png share/icons/hicolor/32x32/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/32x32/apps/kipi-wikimedia.png share/icons/hicolor/48x48/apps/kipi-dropbox.png share/icons/hicolor/48x48/apps/kipi-facebook.png share/icons/hicolor/48x48/apps/kipi-flash.png share/icons/hicolor/48x48/apps/kipi-flickr.png share/icons/hicolor/48x48/apps/kipi-googledrive.png share/icons/hicolor/48x48/apps/kipi-googlephoto.png share/icons/hicolor/48x48/apps/kipi-hq.png share/icons/hicolor/48x48/apps/kipi-imageshack.png share/icons/hicolor/48x48/apps/kipi-imgur.png share/icons/hicolor/48x48/apps/kipi-piwigo.png share/icons/hicolor/48x48/apps/kipi-rajce.png share/icons/hicolor/48x48/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/48x48/apps/kipi-wikimedia.png share/icons/hicolor/64x64/apps/kipi-imageshack.png share/icons/hicolor/64x64/apps/kipi-rajce.png share/icons/hicolor/scalable/apps/kipi-facebook.svgz share/icons/hicolor/scalable/apps/kipi-flash.svgz share/icons/hicolor/scalable/apps/kipi-flickr.svgz share/icons/hicolor/scalable/apps/kipi-googlephoto.svgz share/icons/hicolor/scalable/apps/kipi-hq.svgz share/icons/hicolor/scalable/apps/kipi-imgur.svgz share/icons/hicolor/scalable/apps/kipi-piwigo.svgz share/icons/hicolor/scalable/apps/kipi-smugmug.svgz %%MEDIAWIKI%%share/icons/hicolor/scalable/apps/kipi-wikimedia.svgz share/kipiplugin_flashexport/index.template share/kipiplugin_flashexport/index2.template share/kipiplugin_flashexport/index3.template share/kipiplugin_flashexport/index4.template share/kipiplugin_flashexport/simpleviewer_html/space.png share/kipiplugin_piwigo/pics/piwigo_logo.png share/kipiplugin_printimages/templates/1_photo_10.5x14.8cm.desktop share/kipiplugin_printimages/templates/1_photo_10x15cm.desktop share/kipiplugin_printimages/templates/1_photo_20x25cm.desktop share/kipiplugin_printimages/templates/1_photo_8x10.desktop share/kipiplugin_printimages/templates/1_photo_9x13cm.desktop share/kipiplugin_printimages/templates/2_photos_13x18cm.desktop share/kipiplugin_printimages/templates/2_photos_5x7.desktop share/kipiplugin_printimages/templates/3_photos_10x15cm.desktop share/kipiplugin_printimages/templates/3_photos_4x6.desktop share/kipiplugin_printimages/templates/4_photos_10x13.33cm.desktop share/kipiplugin_printimages/templates/4_photos_3.5x5.desktop share/kipiplugin_printimages/templates/4_photos_4.5x5cm.desktop share/kipiplugin_printimages/templates/4_photos_9x13cm.desktop share/kipiplugin_printimages/templates/4x6Album.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4.5cm.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4cm.desktop share/kipiplugin_printimages/templates/8_photos_6x9cm.desktop share/kipiplugin_printimages/templates/Album-Collage.desktop share/kipiplugin_printimages/templates/Album-Collage1.desktop share/kipiplugin_printimages/templates/Album_10x15cm.desktop share/kipiplugin_printimages/templates/Album_11.5x15cm.desktop share/kipiplugin_printimages/templates/FullPage.desktop share/kipiplugin_printimages/templates/Photoframe.desktop share/kipiplugin_printimages/templates/TEMPLATE_HOWTO share/kipiplugin_printimages/templates/Thumbnails_5x4.desktop share/kipiplugin_printimages/templates/Thumbnails_6x5.desktop share/kipiplugin_printimages/templates/templates.xml share/kservices5/kipiplugin_dropbox.desktop share/kservices5/kipiplugin_facebook.desktop share/kservices5/kipiplugin_flashexport.desktop share/kservices5/kipiplugin_flickr.desktop share/kservices5/kipiplugin_googleservices.desktop share/kservices5/kipiplugin_imageshack.desktop share/kservices5/kipiplugin_imgur.desktop share/kservices5/kipiplugin_jalbum.desktop share/kservices5/kipiplugin_kmlexport.desktop share/kservices5/kipiplugin_piwigo.desktop share/kservices5/kipiplugin_printimages.desktop share/kservices5/kipiplugin_rajce.desktop share/kservices5/kipiplugin_remotestorage.desktop share/kservices5/kipiplugin_sendimages.desktop share/kservices5/kipiplugin_smug.desktop %%KVKONTAKTE%%share/kservices5/kipiplugin_vkontakte.desktop %%MEDIAWIKI%%share/kservices5/kipiplugin_wikimedia.desktop share/kservices5/kipiplugin_yandexfotki.desktop share/kxmlgui5/kipi/kipiplugin_dropboxui.rc share/kxmlgui5/kipi/kipiplugin_facebookui.rc share/kxmlgui5/kipi/kipiplugin_flashexportui.rc share/kxmlgui5/kipi/kipiplugin_flickrui.rc share/kxmlgui5/kipi/kipiplugin_googleservicesui.rc share/kxmlgui5/kipi/kipiplugin_imageshackui.rc share/kxmlgui5/kipi/kipiplugin_imgurui.rc share/kxmlgui5/kipi/kipiplugin_jalbumui.rc share/kxmlgui5/kipi/kipiplugin_kmlexportui.rc share/kxmlgui5/kipi/kipiplugin_piwigoui.rc share/kxmlgui5/kipi/kipiplugin_printimagesui.rc share/kxmlgui5/kipi/kipiplugin_rajceui.rc share/kxmlgui5/kipi/kipiplugin_remotestorageui.rc share/kxmlgui5/kipi/kipiplugin_sendimagesui.rc share/kxmlgui5/kipi/kipiplugin_smugui.rc %%KVKONTAKTE%%share/kxmlgui5/kipi/kipiplugin_vkontakteui.rc %%MEDIAWIKI%%share/kxmlgui5/kipi/kipiplugin_wikimediaui.rc share/kxmlgui5/kipi/kipiplugin_yandexfotkiui.rc share/locale/ar/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ar/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ar/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ar/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ar/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ar/LC_MESSAGES/kipiplugins.mo share/locale/bs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bs/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/bs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/bs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/bs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/bs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/bs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/bs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/bs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/bs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_smug.mo share/locale/bs/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/bs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/bs/LC_MESSAGES/kipiplugins.mo share/locale/ca/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ca/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca/LC_MESSAGES/kipiplugins.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugins.mo share/locale/cs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/cs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/cs/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/cs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/cs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/cs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/cs/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/cs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/cs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/cs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/cs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_smug.mo share/locale/cs/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/cs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/cs/LC_MESSAGES/kipiplugins.mo share/locale/da/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/da/LC_MESSAGES/kipiplugin_facebook.mo share/locale/da/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/da/LC_MESSAGES/kipiplugin_flickr.mo share/locale/da/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/da/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/da/LC_MESSAGES/kipiplugin_imgur.mo share/locale/da/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/da/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/da/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/da/LC_MESSAGES/kipiplugin_printimages.mo share/locale/da/LC_MESSAGES/kipiplugin_rajce.mo share/locale/da/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/da/LC_MESSAGES/kipiplugin_smug.mo share/locale/da/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/da/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/da/LC_MESSAGES/kipiplugins.mo share/locale/de/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/de/LC_MESSAGES/kipiplugin_facebook.mo share/locale/de/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/de/LC_MESSAGES/kipiplugin_flickr.mo share/locale/de/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/de/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/de/LC_MESSAGES/kipiplugin_imgur.mo share/locale/de/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/de/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/de/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/de/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/de/LC_MESSAGES/kipiplugin_printimages.mo share/locale/de/LC_MESSAGES/kipiplugin_rajce.mo share/locale/de/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/de/LC_MESSAGES/kipiplugin_smug.mo share/locale/de/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/de/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/de/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/el/LC_MESSAGES/kipiplugin_facebook.mo share/locale/el/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/el/LC_MESSAGES/kipiplugin_flickr.mo share/locale/el/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/el/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/el/LC_MESSAGES/kipiplugin_imgur.mo share/locale/el/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/el/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/el/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/el/LC_MESSAGES/kipiplugin_printimages.mo share/locale/el/LC_MESSAGES/kipiplugin_rajce.mo share/locale/el/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/el/LC_MESSAGES/kipiplugin_smug.mo share/locale/el/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/el/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/el/LC_MESSAGES/kipiplugins.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_facebook.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flickr.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imgur.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_printimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_rajce.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_smug.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/en_GB/LC_MESSAGES/kipiplugins.mo share/locale/eo/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eo/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/eo/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eo/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eo/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eo/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eo/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_smug.mo share/locale/eo/LC_MESSAGES/kipiplugins.mo share/locale/es/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/es/LC_MESSAGES/kipiplugin_facebook.mo share/locale/es/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/es/LC_MESSAGES/kipiplugin_flickr.mo share/locale/es/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/es/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/es/LC_MESSAGES/kipiplugin_imgur.mo share/locale/es/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/es/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/es/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/es/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/es/LC_MESSAGES/kipiplugin_printimages.mo share/locale/es/LC_MESSAGES/kipiplugin_rajce.mo share/locale/es/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/es/LC_MESSAGES/kipiplugin_smug.mo share/locale/es/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/es/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/es/LC_MESSAGES/kipiplugins.mo +share/locale/el/LC_MESSAGES/kipiplugin_jalbum.mo +share/locale/et/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/et/LC_MESSAGES/kipiplugin_facebook.mo share/locale/et/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/et/LC_MESSAGES/kipiplugin_flickr.mo share/locale/et/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/et/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/et/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/et/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/et/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/et/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/et/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/et/LC_MESSAGES/kipiplugin_printimages.mo share/locale/et/LC_MESSAGES/kipiplugin_rajce.mo share/locale/et/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/et/LC_MESSAGES/kipiplugin_smug.mo share/locale/et/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/et/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/et/LC_MESSAGES/kipiplugins.mo share/locale/eu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/eu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eu/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/eu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/eu/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/eu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/eu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/eu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_smug.mo share/locale/eu/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/eu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/eu/LC_MESSAGES/kipiplugins.mo share/locale/fi/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fi/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fi/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fi/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fi/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fi/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fi/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fi/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fi/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fi/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fi/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_smug.mo share/locale/fi/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/fi/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fi/LC_MESSAGES/kipiplugins.mo share/locale/fr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fr/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_smug.mo share/locale/fr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/fr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fr/LC_MESSAGES/kipiplugins.mo share/locale/ga/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ga/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ga/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ga/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ga/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ga/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ga/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_smug.mo share/locale/ga/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ga/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ga/LC_MESSAGES/kipiplugins.mo share/locale/gl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/gl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/gl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/gl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/gl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/gl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/gl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/gl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/gl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/gl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/gl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_smug.mo share/locale/gl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/gl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo share/locale/hi/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hi/LC_MESSAGES/kipiplugins.mo share/locale/hr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_smug.mo share/locale/hr/LC_MESSAGES/kipiplugins.mo share/locale/hu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/hu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hu/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/hu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/hu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/hu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/hu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/hu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_smug.mo share/locale/hu/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/hu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/hu/LC_MESSAGES/kipiplugins.mo share/locale/id/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/id/LC_MESSAGES/kipiplugin_facebook.mo share/locale/id/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/id/LC_MESSAGES/kipiplugin_flickr.mo share/locale/id/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/id/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/id/LC_MESSAGES/kipiplugin_imgur.mo share/locale/id/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/id/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/id/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/id/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/id/LC_MESSAGES/kipiplugin_printimages.mo share/locale/id/LC_MESSAGES/kipiplugin_rajce.mo share/locale/id/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/id/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/id/LC_MESSAGES/kipiplugin_smug.mo share/locale/id/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/id/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/id/LC_MESSAGES/kipiplugins.mo share/locale/is/LC_MESSAGES/kipiplugin_facebook.mo share/locale/is/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/is/LC_MESSAGES/kipiplugin_flickr.mo share/locale/is/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/is/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/is/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/is/LC_MESSAGES/kipiplugin_printimages.mo share/locale/is/LC_MESSAGES/kipiplugin_rajce.mo share/locale/is/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/is/LC_MESSAGES/kipiplugin_smug.mo share/locale/is/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/is/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/is/LC_MESSAGES/kipiplugins.mo share/locale/it/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/it/LC_MESSAGES/kipiplugin_facebook.mo share/locale/it/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/it/LC_MESSAGES/kipiplugin_flickr.mo share/locale/it/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/it/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/it/LC_MESSAGES/kipiplugin_imgur.mo share/locale/it/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/it/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/it/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/it/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/it/LC_MESSAGES/kipiplugin_printimages.mo share/locale/it/LC_MESSAGES/kipiplugin_rajce.mo share/locale/it/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/it/LC_MESSAGES/kipiplugin_smug.mo share/locale/it/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/it/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/it/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ja/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ja/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ja/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ja/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ja/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ja/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ja/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ja/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ja/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ja/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_smug.mo share/locale/ja/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ja/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo share/locale/km/LC_MESSAGES/kipiplugin_facebook.mo share/locale/km/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/km/LC_MESSAGES/kipiplugin_flickr.mo share/locale/km/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/km/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/km/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/km/LC_MESSAGES/kipiplugin_printimages.mo share/locale/km/LC_MESSAGES/kipiplugin_rajce.mo share/locale/km/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/km/LC_MESSAGES/kipiplugin_smug.mo share/locale/km/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/km/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/km/LC_MESSAGES/kipiplugins.mo share/locale/ko/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ko/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ko/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ko/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ko/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ko/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ko/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ko/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ko/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ko/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ko/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ko/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_smug.mo share/locale/ko/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ko/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ko/LC_MESSAGES/kipiplugins.mo share/locale/lt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/lt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/lt/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/lt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/lt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/lt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/lt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/lt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/lt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/lt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/lt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_smug.mo share/locale/lt/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/lt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/lt/LC_MESSAGES/kipiplugins.mo share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lv/LC_MESSAGES/kipiplugins.mo -share/locale/ml/LC_MESSAGES/kipiplugin_dropbox.mo -share/locale/ml/LC_MESSAGES/kipiplugin_facebook.mo -share/locale/ml/LC_MESSAGES/kipiplugin_flashexport.mo -share/locale/ml/LC_MESSAGES/kipiplugin_flickr.mo -share/locale/ml/LC_MESSAGES/kipiplugin_googleservices.mo -share/locale/ml/LC_MESSAGES/kipiplugin_imageshack.mo -share/locale/ml/LC_MESSAGES/kipiplugin_imgur.mo -share/locale/ml/LC_MESSAGES/kipiplugin_jalbum.mo -share/locale/ml/LC_MESSAGES/kipiplugin_kmlexport.mo -share/locale/ml/LC_MESSAGES/kipiplugin_mediawiki.mo -share/locale/ml/LC_MESSAGES/kipiplugin_piwigo.mo -share/locale/ml/LC_MESSAGES/kipiplugin_printimages.mo -share/locale/ml/LC_MESSAGES/kipiplugin_rajce.mo -share/locale/ml/LC_MESSAGES/kipiplugin_remotestorage.mo -share/locale/ml/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/ml/LC_MESSAGES/kipiplugin_smug.mo -share/locale/ml/LC_MESSAGES/kipiplugin_vkontakte.mo -share/locale/ml/LC_MESSAGES/kipiplugin_yandexfotki.mo -share/locale/ml/LC_MESSAGES/kipiplugins.mo share/locale/mr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/mr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/mr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/mr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/mr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/mr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/mr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/mr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/mr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/mr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_smug.mo share/locale/mr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/mr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/mr/LC_MESSAGES/kipiplugins.mo share/locale/nb/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nb/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nb/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nb/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nb/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nb/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nb/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nb/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nb/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nb/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_smug.mo share/locale/nb/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nb/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nb/LC_MESSAGES/kipiplugins.mo share/locale/nds/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nds/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nds/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nds/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nds/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nds/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nds/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nds/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nds/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nds/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_smug.mo share/locale/nds/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nds/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nds/LC_MESSAGES/kipiplugins.mo share/locale/nl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_smug.mo share/locale/nl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/nl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nl/LC_MESSAGES/kipiplugins.mo share/locale/nn/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/nn/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nn/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nn/LC_MESSAGES/kipiplugins.mo share/locale/pa/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pa/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pa/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pa/LC_MESSAGES/kipiplugins.mo share/locale/pl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_smug.mo share/locale/pl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pl/LC_MESSAGES/kipiplugins.mo share/locale/pt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt/LC_MESSAGES/kipiplugins.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ro/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ro/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ro/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ro/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ro/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ro/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_smug.mo share/locale/ro/LC_MESSAGES/kipiplugins.mo share/locale/ru/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ru/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ru/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ru/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ru/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ru/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ru/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ru/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ru/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ru/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ru/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_smug.mo share/locale/ru/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ru/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ru/LC_MESSAGES/kipiplugins.mo share/locale/sk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sk/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_smug.mo share/locale/sk/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sk/LC_MESSAGES/kipiplugins.mo share/locale/sl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sl/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_smug.mo share/locale/sl/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sl/LC_MESSAGES/kipiplugins.mo share/locale/sv/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sv/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sv/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sv/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sv/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sv/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sv/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sv/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sv/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sv/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sv/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_smug.mo share/locale/sv/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/sv/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sv/LC_MESSAGES/kipiplugins.mo share/locale/tr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/tr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/tr/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/tr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/tr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/tr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/tr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/tr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/tr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/tr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_smug.mo share/locale/tr/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/tr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/tr/LC_MESSAGES/kipiplugins.mo share/locale/ug/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ug/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ug/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ug/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ug/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ug/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ug/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ug/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ug/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ug/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_smug.mo share/locale/ug/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/ug/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ug/LC_MESSAGES/kipiplugins.mo share/locale/uk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/uk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/uk/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/uk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/uk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/uk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/uk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/uk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/uk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/uk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/uk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_smug.mo share/locale/uk/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/uk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/uk/LC_MESSAGES/kipiplugins.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flashexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_vkontakte.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugins.mo Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 519954) +++ head/graphics/kolourpaint/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930853 -SHA256 (KDE/applications/19.08.3/kolourpaint-19.08.3.tar.xz) = aac61cfc561b4d4759b086508c53c525db6899ae11a2400c4ca701fcb5649c8d -SIZE (KDE/applications/19.08.3/kolourpaint-19.08.3.tar.xz) = 5654752 +TIMESTAMP = 1575623407 +SHA256 (KDE/applications/19.12.0/kolourpaint-19.12.0.tar.xz) = bbe2ec76db67caf90060dd03af3f3801f8d95e60945f544c88402f26d79bbabb +SIZE (KDE/applications/19.12.0/kolourpaint-19.12.0.tar.xz) = 5653480 Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 519954) +++ head/graphics/kqtquickcharts/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575226262 -SHA256 (KDE/applications/19.08.3/kqtquickcharts-19.08.3.tar.xz) = f1c54caccbcc97219f8666bdf97cfecdb008c532f1453f27a6971ca54ec5994f -SIZE (KDE/applications/19.08.3/kqtquickcharts-19.08.3.tar.xz) = 25632 +TIMESTAMP = 1576127067 +SHA256 (KDE/applications/19.12.0/kqtquickcharts-19.12.0.tar.xz) = 134d96368bfdc5b24f12f352ea502257aa8edc007ffcf861525d117d15702234 +SIZE (KDE/applications/19.12.0/kqtquickcharts-19.12.0.tar.xz) = 25648 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 519954) +++ head/graphics/libkdcraw/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930854 -SHA256 (KDE/applications/19.08.3/libkdcraw-19.08.3.tar.xz) = 7fe4ade52c2e1e1ec3074fe52ebfc8838193b50791f2f26256f04178015ef87e -SIZE (KDE/applications/19.08.3/libkdcraw-19.08.3.tar.xz) = 42192 +TIMESTAMP = 1575623396 +SHA256 (KDE/applications/19.12.0/libkdcraw-19.12.0.tar.xz) = 42faf081dddeef145abba46774ed240e6f35cc693c16eee76ff931c7c28c851c +SIZE (KDE/applications/19.12.0/libkdcraw-19.12.0.tar.xz) = 42044 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 519954) +++ head/graphics/libkexiv2/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930855 -SHA256 (KDE/applications/19.08.3/libkexiv2-19.08.3.tar.xz) = 4c8a1acc4fe6c7105130ac93f5486ddbffb09921a9f34d3af418bd7e1695435e -SIZE (KDE/applications/19.08.3/libkexiv2-19.08.3.tar.xz) = 64520 +TIMESTAMP = 1575623410 +SHA256 (KDE/applications/19.12.0/libkexiv2-19.12.0.tar.xz) = 3bd7c155c4b7d01f8b1af7ee0d11c9efed18399a239135a25b570ff8650239b7 +SIZE (KDE/applications/19.12.0/libkexiv2-19.12.0.tar.xz) = 64004 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 519954) +++ head/graphics/libkipi/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930855 -SHA256 (KDE/applications/19.08.3/libkipi-19.08.3.tar.xz) = 4b06a880a66eae18dc3ed7f4b39e877691c21d60af7603c7679ebcac5a0a7d4b -SIZE (KDE/applications/19.08.3/libkipi-19.08.3.tar.xz) = 103468 +TIMESTAMP = 1575623408 +SHA256 (KDE/applications/19.12.0/libkipi-19.12.0.tar.xz) = 2bc541e1e8150f9054a8c30b7d2d45ec6571eee7ef6b5113fc301811ab7e051b +SIZE (KDE/applications/19.12.0/libkipi-19.12.0.tar.xz) = 103372 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 519954) +++ head/graphics/libksane/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930857 -SHA256 (KDE/applications/19.08.3/libksane-19.08.3.tar.xz) = 97808ced0a0c6800c31fa8e810d2a00a3dbda410ed6691e114173b0412b94f93 -SIZE (KDE/applications/19.08.3/libksane-19.08.3.tar.xz) = 138820 +TIMESTAMP = 1575623403 +SHA256 (KDE/applications/19.12.0/libksane-19.12.0.tar.xz) = 5fdb8903ad4e711a13273002f9818d46e8c64add840f4fd232aad4616a5cdd6c +SIZE (KDE/applications/19.12.0/libksane-19.12.0.tar.xz) = 138940 Index: head/graphics/okular/Makefile =================================================================== --- head/graphics/okular/Makefile (revision 519954) +++ head/graphics/okular/Makefile (revision 519955) @@ -1,47 +1,46 @@ # $FreeBSD$ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libqca-qt5.so:devel/qca \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'Share' menu PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KDEExperimentalPurpose .include Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 519954) +++ head/graphics/okular/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930858 -SHA256 (KDE/applications/19.08.3/okular-19.08.3.tar.xz) = cea30fe0c2c2b8394e76efe5c945eab1cc9619097291bd9236794b42b09523e5 -SIZE (KDE/applications/19.08.3/okular-19.08.3.tar.xz) = 7068828 +TIMESTAMP = 1575623394 +SHA256 (KDE/applications/19.12.0/okular-19.12.0.tar.xz) = a17a8b5e46ac2cee103a6d41d4ceca9d3b557f6b80355a15b447a282f2c96454 +SIZE (KDE/applications/19.12.0/okular-19.12.0.tar.xz) = 7200656 Index: head/graphics/okular/pkg-plist =================================================================== --- head/graphics/okular/pkg-plist (revision 519954) +++ head/graphics/okular/pkg-plist (revision 519955) @@ -1,1105 +1,1106 @@ bin/okular bin/okularkirigami share/qlogging-categories5/okular.categories 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_ooo.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 %%QT_QMLDIR%%/org/kde/okular/DocumentView.qml %%QT_QMLDIR%%/org/kde/okular/libokularplugin.so %%QT_QMLDIR%%/org/kde/okular/private/PageView.qml %%QT_QMLDIR%%/org/kde/okular/qmldir 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_ooo.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_ooo.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/applications/org.kde.okular.kirigami.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/okularOoo.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_ooo.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_ooo.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_ooo.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_ooo.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.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_ooo.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_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_ooo.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.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_mobi.mo share/locale/da/LC_MESSAGES/okular_ooo.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_ooo.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.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_ooo.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_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_ooo.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_ooo.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.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_ooo.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_ooo.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_mobi.mo share/locale/hu/LC_MESSAGES/okular_ooo.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.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_ooo.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_ooo.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.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_ooo.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_ooo.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_ooo.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_ooo.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.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_ooo.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_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_ooo.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_ooo.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.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_ooo.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.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_ooo.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.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_ooo.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_ooo.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_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_ooo.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-ooo.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 share/metainfo/org.kde.okular.kirigami.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 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 519954) +++ head/graphics/spectacle/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930858 -SHA256 (KDE/applications/19.08.3/spectacle-19.08.3.tar.xz) = 3717b7ebd314cac47c263c304c54c14b0115b15cfa4b87201f5ea27a2f4e9b8a -SIZE (KDE/applications/19.08.3/spectacle-19.08.3.tar.xz) = 966512 +TIMESTAMP = 1575623404 +SHA256 (KDE/applications/19.12.0/spectacle-19.12.0.tar.xz) = c848356f080be7759310d826c37ad898338c42ae828768959202453555f01797 +SIZE (KDE/applications/19.12.0/spectacle-19.12.0.tar.xz) = 651208 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 519954) +++ head/japanese/kiten/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930859 -SHA256 (KDE/applications/19.08.3/kiten-19.08.3.tar.xz) = 6759463f195c50bdcdb2378a8142d1e00a1cea05b769d95a69d2cfdeb1864601 -SIZE (KDE/applications/19.08.3/kiten-19.08.3.tar.xz) = 11279532 +TIMESTAMP = 1575623414 +SHA256 (KDE/applications/19.12.0/kiten-19.12.0.tar.xz) = 69606c85c22d6c4b5e0de0d63fcd85c1d47aceed2b2356e2bc9f21b380dee1a9 +SIZE (KDE/applications/19.12.0/kiten-19.12.0.tar.xz) = 11289024 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 519954) +++ head/lang/kross-interpreters/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930860 -SHA256 (KDE/applications/19.08.3/kross-interpreters-19.08.3.tar.xz) = 525527db9e471a062c15b9b22b715dad2e164fb1b19580fc5b963cc7269ce5b5 -SIZE (KDE/applications/19.08.3/kross-interpreters-19.08.3.tar.xz) = 151832 +TIMESTAMP = 1575623411 +SHA256 (KDE/applications/19.12.0/kross-interpreters-19.12.0.tar.xz) = b2c5d5069f802023902517c9e880b34971223831f820411e24eab67c6fbceae3 +SIZE (KDE/applications/19.12.0/kross-interpreters-19.12.0.tar.xz) = 151652 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 519954) +++ head/lang/kturtle/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930861 -SHA256 (KDE/applications/19.08.3/kturtle-19.08.3.tar.xz) = a622b22ea3b98666dbd32f6f6db2093b7f3859be52515b3bedc72684ef7780e7 -SIZE (KDE/applications/19.08.3/kturtle-19.08.3.tar.xz) = 1829196 +TIMESTAMP = 1575623412 +SHA256 (KDE/applications/19.12.0/kturtle-19.12.0.tar.xz) = af1c5a534f5ac63920a041d234f4a942af18d4b62fc949e1cdf43e663ab2853f +SIZE (KDE/applications/19.12.0/kturtle-19.12.0.tar.xz) = 1829452 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 519954) +++ head/math/analitza/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930882 -SHA256 (KDE/applications/19.08.3/analitza-19.08.3.tar.xz) = 9247172f3ffbc0fd3308b4b40f5d76eaa2a5012dc49525c3087caf5cdfc1513e -SIZE (KDE/applications/19.08.3/analitza-19.08.3.tar.xz) = 332648 +TIMESTAMP = 1575623420 +SHA256 (KDE/applications/19.12.0/analitza-19.12.0.tar.xz) = b227607549e331d2c291ae078e0568fbc7ae4750ec5450a3b50160aa116f7cb2 +SIZE (KDE/applications/19.12.0/analitza-19.12.0.tar.xz) = 333132 Index: head/math/cantor/Makefile =================================================================== --- head/math/cantor/Makefile (revision 519954) +++ head/math/cantor/Makefile (revision 519955) @@ -1,63 +1,64 @@ # $FreeBSD$ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ - libspectre.so:print/libspectre + libspectre.so:print/libspectre \ + libpoppler-qt5.so:graphics/poppler-qt5 BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding (should probably be an option PYTHON2, PYTHON3) CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake ${REINPLACE_CMD} -e '/find_library(PYTHONLIBS3_LIBRARY/s,python3.5m,python3.5m python3.6m,' \ -e '/pkg_check_modules/s,python3,python-${PYTHON_VER},' \ ${WRKSRC}/cmake/FindPythonLibs3.cmake .include Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 519954) +++ head/math/cantor/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930882 -SHA256 (KDE/applications/19.08.3/cantor-19.08.3.tar.xz) = 5b0f0b0b3990c83a927d2545baa9596119025dbf25242a9d46b1c76a26fcbfe5 -SIZE (KDE/applications/19.08.3/cantor-19.08.3.tar.xz) = 2538816 +TIMESTAMP = 1575623421 +SHA256 (KDE/applications/19.12.0/cantor-19.12.0.tar.xz) = 58af0ddc0b8b731970998cdd67c926f37c5b7609019c5923f8d7724c3ac6e5c5 +SIZE (KDE/applications/19.12.0/cantor-19.12.0.tar.xz) = 9015328 Index: head/math/cantor/pkg-plist =================================================================== --- head/math/cantor/pkg-plist (revision 519954) +++ head/math/cantor/pkg-plist (revision 519955) @@ -1,164 +1,168 @@ bin/cantor bin/cantor_python3server %%R%%bin/cantor_rserver bin/cantor_scripteditor etc/xdg/cantor.knsrc etc/xdg/cantor_kalgebra.knsrc %%LUAJIT%%etc/xdg/cantor_lua.knsrc etc/xdg/cantor_maxima.knsrc etc/xdg/cantor_octave.knsrc etc/xdg/cantor_python3.knsrc etc/xdg/cantor_qalculate.knsrc %%R%%etc/xdg/cantor_r.knsrc etc/xdg/cantor_sage.knsrc etc/xdg/cantor_scilab.knsrc include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/cantorlibs_version.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/helpresult.h +include/cantor/htmlresult.h include/cantor/imageresult.h +include/cantor/jupyterutils.h include/cantor/latexresult.h +include/cantor/mimeresult.h +include/cantor/renderer.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/cmake/Cantor/CantorConfig.cmake lib/cmake/Cantor/CantorConfigVersion.cmake lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantor_pythonbackend.so lib/libcantorlibs.so -lib/libcantorlibs.so.23 +lib/libcantorlibs.so.24 lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so -%%QT_PLUGINDIR%%/cantor/backends/cantor_nullbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_python3backend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/libcantorpart.so share/applications/org.kde.cantor.desktop +%%DATADIR%%/latex/preview.sty %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/sagebackend/cantor-execsage %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/kalgebrabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg share/config.kcfg/python3backend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc share/kxmlgui5/cantor/cantor_eigenvalues_assistant.rc share/kxmlgui5/cantor/cantor_eigenvectors_assistant.rc share/kxmlgui5/cantor/cantor_import_package_assistant.rc share/kxmlgui5/cantor/cantor_integrate_assistant.rc share/kxmlgui5/cantor/cantor_invert_matrix_assistant.rc share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_plot2d_assistant.rc share/kxmlgui5/cantor/cantor_plot3d_assistant.rc share/kxmlgui5/cantor/cantor_qalculateplotassistant.rc share/kxmlgui5/cantor/cantor_runscript_assistant.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/kxmlgui5/cantor/cantor_solve_assistant.rc share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/ml/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 519954) +++ head/math/kalgebra/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930903 -SHA256 (KDE/applications/19.08.3/kalgebra-19.08.3.tar.xz) = 7832584a161c2f611ce980ad98932533c998d37e6e4e2b7afbd0b4e98ce88a65 -SIZE (KDE/applications/19.08.3/kalgebra-19.08.3.tar.xz) = 1157236 +TIMESTAMP = 1575623427 +SHA256 (KDE/applications/19.12.0/kalgebra-19.12.0.tar.xz) = 91a0f2a012010f1ca22eb5fdafa9b84e2a62a37399c040df59fdc0c8b466eaf9 +SIZE (KDE/applications/19.12.0/kalgebra-19.12.0.tar.xz) = 1158468 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 519954) +++ head/math/kbruch/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930904 -SHA256 (KDE/applications/19.08.3/kbruch-19.08.3.tar.xz) = 9674aba5a6683e418ed03cc011e3817eb28418538dd9200a808f9813e5112dfc -SIZE (KDE/applications/19.08.3/kbruch-19.08.3.tar.xz) = 5602756 +TIMESTAMP = 1575623425 +SHA256 (KDE/applications/19.12.0/kbruch-19.12.0.tar.xz) = ce64ae5eb90fdd82e1180e58a3fbedc734a24e85ed073e94e4427b1353a860c2 +SIZE (KDE/applications/19.12.0/kbruch-19.12.0.tar.xz) = 5605596 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 519954) +++ head/math/kcalc/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930905 -SHA256 (KDE/applications/19.08.3/kcalc-19.08.3.tar.xz) = 7c61d96bcd45621d021ae8a56224dcf81999cb14ab7b1d7976a47eee2be25d2e -SIZE (KDE/applications/19.08.3/kcalc-19.08.3.tar.xz) = 372080 +TIMESTAMP = 1575623422 +SHA256 (KDE/applications/19.12.0/kcalc-19.12.0.tar.xz) = 437e972c98c6409a8788a0fcdb6f8738e005f9b5f1dc312998325d2a36b33b22 +SIZE (KDE/applications/19.12.0/kcalc-19.12.0.tar.xz) = 375596 Index: head/math/kig/Makefile =================================================================== --- head/math/kig/Makefile (revision 519954) +++ head/math/kig/Makefile (revision 519955) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= kig DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive geometry application LIB_DEPENDS= ${PY_BOOST} USES= cmake gettext compiler:c++11-lib desktop-file-utils kde:5 \ python:2.7,run qt:5 shebangfix tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools ecm emoticons i18n iconthemes init itemmodels \ jobwidgets kdelibs4support kio parts service sonnet texteditor \ textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ buildtools_build qmake_build SHEBANG_FILES= pykig/pykig.py OPTIONS_DEFINE= DOCS .include Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 519954) +++ head/math/kig/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930906 -SHA256 (KDE/applications/19.08.3/kig-19.08.3.tar.xz) = 69dacdbb10bcefe43e5141b0b33b51ca4704f5a5b933e194a4891be92affd21c -SIZE (KDE/applications/19.08.3/kig-19.08.3.tar.xz) = 3497128 +TIMESTAMP = 1575623426 +SHA256 (KDE/applications/19.12.0/kig-19.12.0.tar.xz) = 68a9faa78287b30de302161286c597c9646f7b0fb1d66f915da5c67d9c30e45a +SIZE (KDE/applications/19.12.0/kig-19.12.0.tar.xz) = 3498676 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 519954) +++ head/math/kmplot/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930907 -SHA256 (KDE/applications/19.08.3/kmplot-19.08.3.tar.xz) = 777408873baa5d6ce236d71bc2935a89fa414fb9f59049ba6e1ae88d581f580e -SIZE (KDE/applications/19.08.3/kmplot-19.08.3.tar.xz) = 3054096 +TIMESTAMP = 1575623424 +SHA256 (KDE/applications/19.12.0/kmplot-19.12.0.tar.xz) = fe3312805a1b4e617eaa80ebd5a44f62e1e4a189cbcf534a9287031c8e15ff5c +SIZE (KDE/applications/19.12.0/kmplot-19.12.0.tar.xz) = 3056340 Index: head/math/rocs/Makefile =================================================================== --- head/math/rocs/Makefile (revision 519954) +++ head/math/rocs/Makefile (revision 519955) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= rocs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Graph theory IDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n itemviews jobwidgets kdeclarative \ kio package parts service sonnet texteditor textwidgets \ widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network script scripttools svg webkit \ widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 519954) +++ head/math/rocs/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930908 -SHA256 (KDE/applications/19.08.3/rocs-19.08.3.tar.xz) = 533ab2f17160c402550479d7d3be9132b49e1d745c021c7735f0687d12236c8e -SIZE (KDE/applications/19.08.3/rocs-19.08.3.tar.xz) = 1518032 +TIMESTAMP = 1575623423 +SHA256 (KDE/applications/19.12.0/rocs-19.12.0.tar.xz) = 05c4c7436c55a7a4078ad96a699a26d55f9552eaecff3491447d1a1e6d6c92f9 +SIZE (KDE/applications/19.12.0/rocs-19.12.0.tar.xz) = 1523364 Index: head/misc/artikulate/Makefile =================================================================== --- head/misc/artikulate/Makefile (revision 519954) +++ head/misc/artikulate/Makefile (revision 519955) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= artikulate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Pronunciation trainer for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs config configwidgets coreaddons \ crash doctools ecm i18n kdeclarative newstuff service \ widgetsaddons xmlgui USE_QT= core dbus declarative gui multimedia network sql testlib widgets \ xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 519954) +++ head/misc/artikulate/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930909 -SHA256 (KDE/applications/19.08.3/artikulate-19.08.3.tar.xz) = 99831d51bf8cb4032ba9af7c4ae0712f7b3668b7c51bce8f942808c1e5e42f85 -SIZE (KDE/applications/19.08.3/artikulate-19.08.3.tar.xz) = 3998692 +TIMESTAMP = 1575623534 +SHA256 (KDE/applications/19.12.0/artikulate-19.12.0.tar.xz) = 2de2ae8635a15d1442ccd3f657db0dfd705a436e45f3383283e66904badfd1c1 +SIZE (KDE/applications/19.12.0/artikulate-19.12.0.tar.xz) = 4008004 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 519954) +++ head/misc/kdeedu-data/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930909 -SHA256 (KDE/applications/19.08.3/kdeedu-data-19.08.3.tar.xz) = dfdbe10415247bdd1b6926f6fcea943d13c6e0a1ab1a562aac6e0b7109420286 -SIZE (KDE/applications/19.08.3/kdeedu-data-19.08.3.tar.xz) = 326784 +TIMESTAMP = 1575623535 +SHA256 (KDE/applications/19.12.0/kdeedu-data-19.12.0.tar.xz) = ca1911b02f4a90a9e4911a5287733024e0d23d35cfe610f4b6b8bc387ecc2de3 +SIZE (KDE/applications/19.12.0/kdeedu-data-19.12.0.tar.xz) = 326172 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 519954) +++ head/misc/kgeography/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930910 -SHA256 (KDE/applications/19.08.3/kgeography-19.08.3.tar.xz) = 1f2969db9ed5b9cc3d56a8cc12fa24cdace473edcd05baaf3c7b460fa7b2da8c -SIZE (KDE/applications/19.08.3/kgeography-19.08.3.tar.xz) = 10888780 +TIMESTAMP = 1575623533 +SHA256 (KDE/applications/19.12.0/kgeography-19.12.0.tar.xz) = 02b84721151cc605a04259b8701c9c9a5c64aa51b0b4500762696a31cccc1d6d +SIZE (KDE/applications/19.12.0/kgeography-19.12.0.tar.xz) = 10889136 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 519954) +++ head/misc/klettres/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930911 -SHA256 (KDE/applications/19.08.3/klettres-19.08.3.tar.xz) = 205ed817469a72caaf73683c618fcd0800176038345e46555c4c78d644b3a1bf -SIZE (KDE/applications/19.08.3/klettres-19.08.3.tar.xz) = 40135784 +TIMESTAMP = 1575623530 +SHA256 (KDE/applications/19.12.0/klettres-19.12.0.tar.xz) = 5bdd0b68954fb43dce1a34248daf17b73ac5980e6fb798fb946bb0ec653c0261 +SIZE (KDE/applications/19.12.0/klettres-19.12.0.tar.xz) = 40139280 Index: head/misc/ktouch/Makefile =================================================================== --- head/misc/ktouch/Makefile (revision 519954) +++ head/misc/ktouch/Makefile (revision 519955) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= ktouch DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Touch typing tutor for KDE RUN_DEPENDS= kqtquickcharts>=${KDE_APPLICATIONS_VERSION}:graphics/kqtquickcharts USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ ecm i18n itemviews kcmutils kdeclarative kio newstuff package \ parts service sonnet texteditor textwidgets widgetsaddons \ windowsystem xmlgui USE_QT= core dbus declarative gui network script sql testlib widgets \ x11extras xml xmlpatterns \ buildtools_build qmake_build USE_XORG= ice sm x11 xcb xext xkbfile OPTIONS_DEFINE= DOCS .include Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 519954) +++ head/misc/ktouch/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930912 -SHA256 (KDE/applications/19.08.3/ktouch-19.08.3.tar.xz) = 8a288377a37f5afbd657c452c45628186646b27585a67312e35930a9fb581d37 -SIZE (KDE/applications/19.08.3/ktouch-19.08.3.tar.xz) = 4937064 +TIMESTAMP = 1575623531 +SHA256 (KDE/applications/19.12.0/ktouch-19.12.0.tar.xz) = 721682cac4122054a31eedafa66afb9d98abd56c83d4b230a79c4c86a9adf15f +SIZE (KDE/applications/19.12.0/ktouch-19.12.0.tar.xz) = 4935588 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 519954) +++ head/misc/kwordquiz/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930913 -SHA256 (KDE/applications/19.08.3/kwordquiz-19.08.3.tar.xz) = 9561e4817b5b273f74e7591d1ecb82db45140eea2ea36ab3e2f21d81faa1b66d -SIZE (KDE/applications/19.08.3/kwordquiz-19.08.3.tar.xz) = 4174684 +TIMESTAMP = 1575623536 +SHA256 (KDE/applications/19.12.0/kwordquiz-19.12.0.tar.xz) = 9ae6281468c9745d16a0796477cad5155da422e144bc01e61e0434e0acfb7209 +SIZE (KDE/applications/19.12.0/kwordquiz-19.12.0.tar.xz) = 4170736 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 519954) +++ head/misc/libkeduvocdocument/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930914 -SHA256 (KDE/applications/19.08.3/libkeduvocdocument-19.08.3.tar.xz) = 19d816ae3dd2395f53c8bc19a4d62dcd6fcec0bcebbc8ebfe32987afdb87ee14 -SIZE (KDE/applications/19.08.3/libkeduvocdocument-19.08.3.tar.xz) = 211172 +TIMESTAMP = 1575623535 +SHA256 (KDE/applications/19.12.0/libkeduvocdocument-19.12.0.tar.xz) = 1dda2988d9b80a213e337f43dca88a77d93790e007c7d3f88db0f930a3a24f5d +SIZE (KDE/applications/19.12.0/libkeduvocdocument-19.12.0.tar.xz) = 211160 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 519954) +++ head/misc/parley/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930934 -SHA256 (KDE/applications/19.08.3/parley-19.08.3.tar.xz) = a3d11ddf5a6c8244e5a22c10f6e256ad8bd857802d994550549c7f73f8ed8da8 -SIZE (KDE/applications/19.08.3/parley-19.08.3.tar.xz) = 8827432 +TIMESTAMP = 1575623531 +SHA256 (KDE/applications/19.12.0/parley-19.12.0.tar.xz) = a65f9ccc4ae3263af07c0ed009ac4a87388e2131a8aee8a98b4fe60a5b69745a +SIZE (KDE/applications/19.12.0/parley-19.12.0.tar.xz) = 8833052 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 519954) +++ head/multimedia/dragon/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930935 -SHA256 (KDE/applications/19.08.3/dragon-19.08.3.tar.xz) = f9172f6ddf75cf8e4be19d50f80994d59545fdea966674fb67abe7a7c934810a -SIZE (KDE/applications/19.08.3/dragon-19.08.3.tar.xz) = 1350768 +TIMESTAMP = 1575623489 +SHA256 (KDE/applications/19.12.0/dragon-19.12.0.tar.xz) = 1b1339778be914c05d6c231633cfb3d01fb8c4bab1a90a7327250e41b4e1016b +SIZE (KDE/applications/19.12.0/dragon-19.12.0.tar.xz) = 1352108 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 519954) +++ head/multimedia/kamoso/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930956 -SHA256 (KDE/applications/19.08.3/kamoso-19.08.3.tar.xz) = 437ddca6849ff3ad964737794ab8d22f8d152ad4aa9172dd838c77c59fc81448 -SIZE (KDE/applications/19.08.3/kamoso-19.08.3.tar.xz) = 201848 +TIMESTAMP = 1575623488 +SHA256 (KDE/applications/19.12.0/kamoso-19.12.0.tar.xz) = 1e497f95b69534a23834e041dd8b5d218d0d50bd75038c4e336cf2949a421dbc +SIZE (KDE/applications/19.12.0/kamoso-19.12.0.tar.xz) = 203128 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 519954) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930957 -SHA256 (KDE/applications/19.08.3/ffmpegthumbs-19.08.3.tar.xz) = c91ad8e83df474971cf9766f2398e88e45d02dd2e51a7a794ace02f22c38c0f0 -SIZE (KDE/applications/19.08.3/ffmpegthumbs-19.08.3.tar.xz) = 25112 +TIMESTAMP = 1575623487 +SHA256 (KDE/applications/19.12.0/ffmpegthumbs-19.12.0.tar.xz) = e447be65d522dab4f48938f52c88f37574b0f1b41b68bc45282c5f9e0eaa6025 +SIZE (KDE/applications/19.12.0/ffmpegthumbs-19.12.0.tar.xz) = 27008 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 519954) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 519955) @@ -1,27 +1,29 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg +share/kservices5/ffmpegthumbs.desktop share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo share/locale/ca@valencia/LC_MESSAGES/ffmpegthumbs.mo share/locale/cs/LC_MESSAGES/ffmpegthumbs.mo share/locale/de/LC_MESSAGES/ffmpegthumbs.mo +share/locale/el/LC_MESSAGES/ffmpegthumbs.mo share/locale/en_GB/LC_MESSAGES/ffmpegthumbs.mo share/locale/es/LC_MESSAGES/ffmpegthumbs.mo share/locale/eu/LC_MESSAGES/ffmpegthumbs.mo share/locale/fi/LC_MESSAGES/ffmpegthumbs.mo share/locale/fr/LC_MESSAGES/ffmpegthumbs.mo share/locale/gl/LC_MESSAGES/ffmpegthumbs.mo share/locale/it/LC_MESSAGES/ffmpegthumbs.mo share/locale/ja/LC_MESSAGES/ffmpegthumbs.mo share/locale/ko/LC_MESSAGES/ffmpegthumbs.mo share/locale/lt/LC_MESSAGES/ffmpegthumbs.mo share/locale/nl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt_BR/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/LC_MESSAGES/ffmpegthumbs.mo share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_CN/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo -share/kservices5/ffmpegthumbs.desktop +share/metainfo/org.kde.ffmpegthumbs.metainfo.xml Index: head/multimedia/kdenlive/Makefile =================================================================== --- head/multimedia/kdenlive/Makefile (revision 519954) +++ head/multimedia/kdenlive/Makefile (revision 519955) @@ -1,74 +1,73 @@ # $FreeBSD$ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite LICENSE= GPLv2 LIB_DEPENDS= libmlt.so:multimedia/mlt \ librttr_core.so:devel/rttr BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext-tools \ gl pkgconfig qt:5 shared-mime-info kde:5 tar:xz xorg USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm filemetadata \ guiaddons i18n iconthemes kio itemviews jobwidgets \ kdeclarative newstuff notifications notifyconfig package \ service solid sonnet textwidgets widgetsaddons xmlgui \ init_run USE_QT= concurrent core dbus declarative gui multimedia network xml \ buildtools_build qmake_build \ quickcontrols_run script svg webkit widgets USE_XORG= x11 CFLAGS+= -I${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" # Keep in sync with multimedia/mlt, possibly. FFMPEG_SUFX= # Currently empty. OPTIONS_DEFINE= DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FILESHARE FREI0R SCREENCAST V4L XINE # As long as LADSPA -> audio/swhplugins is i386/amd64-only OPTIONS_DEFAULT_amd64= LADSPA OPTIONS_DEFAULT_i386= LADSPA OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools FILESHARE_DESC= Common KF5 filesharing support SCREENCAST_DESC=Screen capture support via recordMyDesktop V4L_DESC= Webcam support via Video4Linux XINE_DESC= DVD preview support via xine DVDWIZARD_RUN_DEPENDS= dvdauthor:multimedia/dvdauthor \ cdrecord:sysutils/cdrtools FILESHARE_USE= KDE=purpose FILESHARE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Purpose FREI0R_RUN_DEPENDS= frei0r-plugins>=0:graphics/frei0r-plugins LADSPA_RUN_DEPENDS= swhplugins>=0:audio/swhplugins SCREENCAST_RUN_DEPENDS= recordmydesktop:multimedia/recordmydesktop V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l V4L_CMAKE_OFF= -DWITH_LibV4L2:BOOL=FALSE XINE_RUN_DEPENDS= xine:multimedia/xine post-patch: @${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/data/CMakeLists.txt .include Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 519954) +++ head/multimedia/kdenlive/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572973369 -SHA256 (KDE/applications/19.08.3/kdenlive-19.08.3.tar.xz) = 64ab3cf06222b95f021941d8c430c70918c04c3ea988f7ccf5ef87c6b69b4465 -SIZE (KDE/applications/19.08.3/kdenlive-19.08.3.tar.xz) = 12418064 +TIMESTAMP = 1576095071 +SHA256 (KDE/applications/19.12.0/kdenlive-19.12.0.tar.xz) = 4f3f434a89169a948c3ea402df8333ebaef2f24dc23247be0244538c856c7717 +SIZE (KDE/applications/19.12.0/kdenlive-19.12.0.tar.xz) = 11428756 Index: head/multimedia/kdenlive/pkg-plist =================================================================== --- head/multimedia/kdenlive/pkg-plist (revision 519954) +++ head/multimedia/kdenlive/pkg-plist (revision 519955) @@ -1,372 +1,382 @@ bin/kdenlive bin/kdenlive_render etc/xdg/kdenlive_keyboardschemes.knsrc etc/xdg/kdenlive_renderprofiles.knsrc etc/xdg/kdenlive_titles.knsrc etc/xdg/kdenlive_wipes.knsrc %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/COPYING %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-object-height.png share/icons/hicolor/16x16/actions/kdenlive-object-width.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png share/icons/hicolor/16x16/actions/kdenlive-split-audio.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/banner.png %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiopan.xml +%%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/automask.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml +%%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml +%%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml +%%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml +%%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml +%%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml +%%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/selectivecolor.xml %%DATADIR%%/effects/sepia.xml +%%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml +%%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml +%%DATADIR%%/effects/unsharp.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/meta_ffmpeg.png %%DATADIR%%/meta_libav.png %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/metadata.properties %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/timeline_athumbs.png %%DATADIR%%/timeline_avthumbs.png %%DATADIR%%/timeline_nothumbs.png %%DATADIR%%/timeline_vthumbs.png %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories Index: head/multimedia/mlt/Makefile =================================================================== --- head/multimedia/mlt/Makefile (revision 519954) +++ head/multimedia/mlt/Makefile (revision 519955) @@ -1,191 +1,193 @@ # $FreeBSD$ PORTNAME= mlt DISTVERSIONPREFIX= v DISTVERSION= 6.18.0 PORTREVISION= 1 CATEGORIES?= multimedia MAINTAINER= kde@FreeBSD.org COMMENT?= Multimedia framework for TV broadcasting LICENSE?= GPLv2 GPLv3 LGPL21 LICENSE_COMB?= multi USES+= alias compiler:c++11-lang eigen:3 gmake gnome localbase \ pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-gpl --enable-gpl3 --target-os=FreeBSD USE_GITHUB= yes GH_ACCOUNT= mltframework .ifndef(WITH_DEBUG) CONFIGURE_ARGS+=--disable-debug .else CONFIGURE_ARGS+=--enable-debug .endif .ifndef(SLAVEPORT) # Master port. # They both install bin/melt. CONFLICTS_INSTALL= freeze-[0-9]* LIB_DEPENDS= libfftw3.so:math/fftw3 BROKEN_sparc64= does not compile on sparc64 (invokes i386 asm) USE_GL= gl USE_GNOME= libxml2 USE_SDL= image2 USE_XORG= x11 USES+= gl iconv pathfix sdl xorg PATHFIX_MAKEFILEIN= Makefile CONFIGURE_ARGS+=--disable-qt --swig-languages=none USE_LDCONFIG= yes PLIST_SUB= PORTVERSION="${PORTVERSION}" PORTDOCS= AUTHORS ChangeLog NEWS README docs PORTEXAMPLES= demo OPTIONS_DEFINE= DOCS EXAMPLES FFMPEG FREI0R GTK2 JACK OPENGL \ SAMPLERATE SOX SWFDEC VIDSTAB # OPENCV VDPAU OPTIONS_DEFAULT=FFMPEG FREI0R GTK2 OPENGL SAMPLERATE SOX VIDSTAB OPTIONS_SUB= yes GTK2_DESC= Images and text rendering via GTK+ 2 SOX_DESC= SoX audio effects support VIDSTAB_DESC= Video stabilization support via Vid.Stab FFMPEG_SUFX= # Currently empty. FFMPEG_LIB_DEPENDS= libavformat${FFMPEG_SUFX}.so:multimedia/ffmpeg${FFMPEG_SUFX} FFMPEG_CONFIGURE_ENABLE=avformat FFMPEG_CONFIGURE_ON= --avformat-suffix="${FFMPEG_SUFX}" FREI0R_BUILD_DEPENDS= ${LOCALBASE}/include/frei0r.h:graphics/frei0r FREI0R_CONFIGURE_ENABLE=frei0r GTK2_LIB_DEPENDS= libexif.so:graphics/libexif \ libfontconfig.so:x11-fonts/fontconfig GTK2_USE= GNOME=gdkpixbuf2,gtk20,pango GTK2_CONFIGURE_ENABLE= gtk2 JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa JACK_CONFIGURE_ENABLE= jackrack JACK_USE= GNOME=glib20 # Prepare for OpenCV 3 port. CONFIGURE_ARGS+= --disable-opencv OPENCV_CONFIGURE_ENABLE=opencv OPENGL_LIB_DEPENDS= libepoxy.so:graphics/libepoxy \ libmovit.so:graphics/movit OPENGL_USE= GL=gl OPENGL_CONFIGURE_ENABLE=opengl SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamplerate SAMPLERATE_CONFIGURE_ENABLE=resample SOX_LIB_DEPENDS= libsox.so:audio/sox SOX_CONFIGURE_ENABLE= sox SWFDEC_LIB_DEPENDS= libswfdec-0.8.so:graphics/swfdec SWFDEC_CONFIGURE_ENABLE=swfdec SWFDEC_USE= GNOME=glib20,cairo # https://sourceforge.net/p/mlt/bugs/240/ CONFIGURE_ARGS+= ${VDPAU_CONFIGURE_OFF} VDPAU_CONFIGURE_ON= --avformat-vdpau VDPAU_CONFIGURE_OFF= --avformat-no-vdpau VIDSTAB_LIB_DEPENDS= libvidstab.so:multimedia/vid.stab VIDSTAB_CONFIGURE_ENABLE=vid.stab pre-configure: + # Remove sdl1 support + ${RM} -r ${WRKSRC}/src/modules/sdl @${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},' \ ${WRKSRC}/src/modules/avformat/vdpau.c \ ${WRKSRC}/src/modules/frei0r/factory.c \ ${WRKSRC}/src/modules/jackrack/plugin_mgr.c @${REINPLACE_CMD} -e 's,-lpthread,-pthread,' \ -e 's,-liconv,${ICONV_LIB},' \ ${WRKSRC}/src/framework/Makefile \ ${WRKSRC}/src/melt/Makefile \ ${WRKSRC}/src/modules/*/Makefile common-post-install: ${INSTALL_MAN} ${WRKSRC}/docs/melt.1 ${STAGEDIR}${MANPREFIX}/man/man1/melt.1 @${RM} ${WRKSRC}/docs/melt.1 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/melt ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmlt.so.${PORTVERSION} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmlt++.so.${PORTVERSION} post-install-DOCS-on: .for f in ${PORTDOCS} cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${DOCSDIR} .endfor post-install-EXAMPLES-on: .for f in ${PORTEXAMPLES} cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .else # Slave port. PORTSCOUT= ignore:1 LIB_DEPENDS+= libmlt.so:${MASTER_PORT} PLIST?= ${.CURDIR}/pkg-plist . if ${SLAVEPORT:Mqt*} # Qt slave port. PKGNAMESUFFIX= -${SLAVEPORT} COMMENT= Qt ${SLAVEPORT:C/[^0-9]//g} plugin for the MLT multimedia framework LICENSE= GPLv2 GPLv3 LICENSE_COMB= multi LIB_DEPENDS+= libexif.so:graphics/libexif CONFIGURE_ARGS+=--enable-qt \ --qt-libdir="${QT_LIBDIR}" \ --qt-includedir="${QT_INCDIR}" BUILD_WRKSRC= ${WRKSRC}/src/modules/qt . elif ${SLAVEPORT:Mswig} # SWIG slave port. LANGUAGE= ${SLAVEPORT:Nswig} COMMENT= ${LANGUAGE} bindings for the MLT multimedia framework LICENSE= LGPL21 LICENSE_COMB= single BUILD_DEPENDS+= swig3.0:devel/swig30 BINARY_ALIAS= swig=swig3.0 _CFLAGS= -I${LOCALBASE}/include -L${LOCALBASE}/lib CFLAGS+= ${_CFLAGS} CXXFLAGS+= ${_CFLAGS} CONFIGURE_ARGS+=--swig-languages=${LANGUAGE:tl} BUILD_WRKSRC= ${WRKSRC}/src/swig INSTALL_WRKSRC= ${BUILD_WRKSRC}/${LANGUAGE:tl} EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}/${LANGUAGE:tl} . endif INSTALL_WRKSRC?=${BUILD_WRKSRC} pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME} # Dummy placeholder target. common-post-install: @${TRUE} .endif post-install: common-post-install ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/* 2>/dev/null || ${TRUE} @${RMDIR} -p ${STAGEDIR}${PREFIX}/lib/${PORTNAME} 2>/dev/null || ${TRUE} .include Index: head/net/akonadi-calendar/Makefile =================================================================== --- head/net/akonadi-calendar/Makefile (revision 519954) +++ head/net/akonadi-calendar/Makefile (revision 519955) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= akonadi-calendar DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Akonadi Calendar Integration LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm kdelibs4support i18n iconthemes itemmodels \ jobwidgets kio service wallet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime calendarcore calendarutils \ contacts identitymanagement mailtransport mime pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 519954) +++ head/net/akonadi-calendar/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930990 -SHA256 (KDE/applications/19.08.3/akonadi-calendar-19.08.3.tar.xz) = 1ec66241551b0bd3e2cabd2df1547e3622b3c74e0ddaec535b5666141180a094 -SIZE (KDE/applications/19.08.3/akonadi-calendar-19.08.3.tar.xz) = 331796 +TIMESTAMP = 1575623517 +SHA256 (KDE/applications/19.12.0/akonadi-calendar-19.12.0.tar.xz) = 84671189a5ad87259f15c54f673954f7496a6043a3efedaf2e2376b0af5ff6d5 +SIZE (KDE/applications/19.12.0/akonadi-calendar-19.12.0.tar.xz) = 331480 Index: head/net/akonadi-contacts/Makefile =================================================================== --- head/net/akonadi-contacts/Makefile (revision 519954) +++ head/net/akonadi-contacts/Makefile (revision 519955) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= akonadi-contacts DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Libraries and daemons to implement Contact Management in Akonadi LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels jobwidgets kio \ prison service sonnet textwidgets widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadimime calendarcore contacts mime USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 519954) +++ head/net/akonadi-contacts/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930991 -SHA256 (KDE/applications/19.08.3/akonadi-contacts-19.08.3.tar.xz) = a95ff2621e198e2685b7cd591e39437e68b5670cd710ce06088bd16618d281df -SIZE (KDE/applications/19.08.3/akonadi-contacts-19.08.3.tar.xz) = 385320 +TIMESTAMP = 1575623526 +SHA256 (KDE/applications/19.12.0/akonadi-contacts-19.12.0.tar.xz) = 2a7ee314df38fc22d119ee2411a8bb1f9631bd036242589695e32cbf1914f469 +SIZE (KDE/applications/19.12.0/akonadi-contacts-19.12.0.tar.xz) = 393264 Index: head/net/akonadi-contacts/pkg-plist =================================================================== --- head/net/akonadi-contacts/pkg-plist (revision 519954) +++ head/net/akonadi-contacts/pkg-plist (revision 519955) @@ -1,223 +1,227 @@ -share/qlogging-categories5/akonadi-contacts.categories -share/qlogging-categories5/akonadi-contacts.renamecategories include/KF5/Akonadi/Contact/AbstractContactFormatter include/KF5/Akonadi/Contact/AbstractContactGroupFormatter +include/KF5/Akonadi/Contact/AbstractEmailAddressSelectionDialog include/KF5/Akonadi/Contact/ContactDefaultActions include/KF5/Akonadi/Contact/ContactEditor include/KF5/Akonadi/Contact/ContactEditorDialog include/KF5/Akonadi/Contact/ContactGroupEditor include/KF5/Akonadi/Contact/ContactGroupEditorDialog include/KF5/Akonadi/Contact/ContactGroupExpandJob include/KF5/Akonadi/Contact/ContactGroupSearchJob include/KF5/Akonadi/Contact/ContactGroupViewer include/KF5/Akonadi/Contact/ContactGroupViewerDialog include/KF5/Akonadi/Contact/ContactParts include/KF5/Akonadi/Contact/ContactSearchJob include/KF5/Akonadi/Contact/ContactViewer include/KF5/Akonadi/Contact/ContactViewerDialog include/KF5/Akonadi/Contact/ContactsFilterProxyModel include/KF5/Akonadi/Contact/ContactsTreeModel include/KF5/Akonadi/Contact/EmailAddressRequester include/KF5/Akonadi/Contact/EmailAddressSelection include/KF5/Akonadi/Contact/EmailAddressSelectionDialog include/KF5/Akonadi/Contact/EmailAddressSelectionModel include/KF5/Akonadi/Contact/EmailAddressSelectionWidget +include/KF5/Akonadi/Contact/RecipientsEditorManager +include/KF5/Akonadi/Contact/RecipientsPickerWidget include/KF5/Akonadi/Contact/SelectAddressBookDialog include/KF5/Akonadi/Contact/StandardContactActionManager include/KF5/Akonadi/Contact/StandardContactFormatter include/KF5/Akonadi/Contact/StandardContactGroupFormatter -include/KF5/ContactEditor/AbstractAddressLocationWidget include/KF5/ContactEditor/CategoriesEditAbstractWidget include/KF5/ContactEditor/ContactEditorPagePlugin include/KF5/akonadi/contact/abstractcontactformatter.h include/KF5/akonadi/contact/abstractcontactgroupformatter.h +include/KF5/akonadi/contact/abstractemailaddressselectiondialog.h include/KF5/akonadi/contact/akonadi-contact_export.h include/KF5/akonadi/contact/contactdefaultactions.h include/KF5/akonadi/contact/contacteditor.h include/KF5/akonadi/contact/contacteditordialog.h include/KF5/akonadi/contact/contactgroupeditor.h include/KF5/akonadi/contact/contactgroupeditordialog.h include/KF5/akonadi/contact/contactgroupexpandjob.h include/KF5/akonadi/contact/contactgroupsearchjob.h include/KF5/akonadi/contact/contactgroupviewer.h include/KF5/akonadi/contact/contactgroupviewerdialog.h include/KF5/akonadi/contact/contactparts.h include/KF5/akonadi/contact/contactsearchjob.h include/KF5/akonadi/contact/contactsfilterproxymodel.h include/KF5/akonadi/contact/contactstreemodel.h include/KF5/akonadi/contact/contactviewer.h include/KF5/akonadi/contact/contactviewerdialog.h include/KF5/akonadi/contact/emailaddressrequester.h include/KF5/akonadi/contact/emailaddressselection.h include/KF5/akonadi/contact/emailaddressselectiondialog.h include/KF5/akonadi/contact/emailaddressselectionmodel.h include/KF5/akonadi/contact/emailaddressselectionwidget.h +include/KF5/akonadi/contact/recipientseditormanager.h +include/KF5/akonadi/contact/recipientspickerwidget.h include/KF5/akonadi/contact/selectaddressbookdialog.h include/KF5/akonadi/contact/standardcontactactionmanager.h include/KF5/akonadi/contact/standardcontactformatter.h include/KF5/akonadi/contact/standardcontactgroupformatter.h -include/KF5/contacteditor/abstractaddresslocationwidget.h include/KF5/contacteditor/categorieseditabstractwidget.h include/KF5/contacteditor/contacteditor_export.h include/KF5/contacteditor/contacteditorpageplugin.h lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfig.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfigVersion.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfig.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfigVersion.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets.cmake lib/libKF5AkonadiContact.so lib/libKF5AkonadiContact.so.5 lib/libKF5AkonadiContact.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5ContactEditor.so lib/libKF5ContactEditor.so.5 lib/libKF5ContactEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiContact.pri %%QT_MKSPECDIR%%/modules/qt_ContactEditor.pri %%QT_PLUGINDIR%%/akonadi/contacts/plugins/categorieseditwidgetplugin.so %%QT_PLUGINDIR%%/akonadi_serializer_addressee.so %%QT_PLUGINDIR%%/akonadi_serializer_contactgroup.so %%QT_PLUGINDIR%%/kcm_akonadicontact_actions.so share/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/kf5/akonadi/contact/data/zone.tab share/kf5/akonadi/contact/pics/world.jpg share/kservices5/akonadicontact_actions.desktop share/locale/ar/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ar/LC_MESSAGES/akonadicontact5.mo share/locale/ar/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bs/LC_MESSAGES/akonadicontact5.mo share/locale/bs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca/LC_MESSAGES/akonadicontact5.mo share/locale/ca/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/cs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/cs/LC_MESSAGES/akonadicontact5.mo share/locale/cs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/da/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/da/LC_MESSAGES/akonadicontact5.mo share/locale/da/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/de/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/de/LC_MESSAGES/akonadicontact5.mo share/locale/de/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/el/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/el/LC_MESSAGES/akonadicontact5.mo share/locale/el/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5.mo share/locale/en_GB/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eo/LC_MESSAGES/akonadicontact5.mo share/locale/eo/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/es/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/es/LC_MESSAGES/akonadicontact5.mo share/locale/es/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/et/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/et/LC_MESSAGES/akonadicontact5.mo share/locale/et/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fi/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fi/LC_MESSAGES/akonadicontact5.mo share/locale/fi/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fr/LC_MESSAGES/akonadicontact5.mo share/locale/fr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ga/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ga/LC_MESSAGES/akonadicontact5.mo share/locale/ga/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/gl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/gl/LC_MESSAGES/akonadicontact5.mo share/locale/gl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/he/LC_MESSAGES/akonadicontact5.mo share/locale/he/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/hr/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/hu/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ia/LC_MESSAGES/akonadicontact5.mo share/locale/ia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/it/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/it/LC_MESSAGES/akonadicontact5.mo share/locale/it/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ja/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ja/LC_MESSAGES/akonadicontact5.mo share/locale/ja/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/kk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/kk/LC_MESSAGES/akonadicontact5.mo share/locale/kk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/km/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/km/LC_MESSAGES/akonadicontact5.mo share/locale/km/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ko/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ko/LC_MESSAGES/akonadicontact5.mo share/locale/ko/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lt/LC_MESSAGES/akonadicontact5.mo share/locale/lt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lv/LC_MESSAGES/akonadicontact5.mo share/locale/lv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/mr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/mr/LC_MESSAGES/akonadicontact5.mo share/locale/mr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nb/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nb/LC_MESSAGES/akonadicontact5.mo share/locale/nb/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nds/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nds/LC_MESSAGES/akonadicontact5.mo share/locale/nds/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nl/LC_MESSAGES/akonadicontact5.mo share/locale/nl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nn/LC_MESSAGES/akonadicontact5.mo share/locale/nn/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pa/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pa/LC_MESSAGES/akonadicontact5.mo share/locale/pa/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pl/LC_MESSAGES/akonadicontact5.mo share/locale/pl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt/LC_MESSAGES/akonadicontact5.mo share/locale/pt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5.mo share/locale/pt_BR/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ro/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ro/LC_MESSAGES/akonadicontact5.mo share/locale/ro/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ru/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ru/LC_MESSAGES/akonadicontact5.mo share/locale/ru/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sk/LC_MESSAGES/akonadicontact5.mo share/locale/sk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sl/LC_MESSAGES/akonadicontact5.mo share/locale/sl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr/LC_MESSAGES/akonadicontact5.mo share/locale/sr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sv/LC_MESSAGES/akonadicontact5.mo share/locale/sv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/tr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/tr/LC_MESSAGES/akonadicontact5.mo share/locale/tr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ug/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ug/LC_MESSAGES/akonadicontact5.mo share/locale/ug/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/uk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/uk/LC_MESSAGES/akonadicontact5.mo share/locale/uk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5.mo share/locale/zh_CN/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5.mo share/locale/zh_TW/LC_MESSAGES/kcm_akonadicontact_actions.mo +share/qlogging-categories5/akonadi-contacts.categories +share/qlogging-categories5/akonadi-contacts.renamecategories Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 519954) +++ head/net/akonadi-mime/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930991 -SHA256 (KDE/applications/19.08.3/akonadi-mime-19.08.3.tar.xz) = e779a2b73b628702aec52b1d4345533f54f06624915b193766af3ef6a16d030f -SIZE (KDE/applications/19.08.3/akonadi-mime-19.08.3.tar.xz) = 132756 +TIMESTAMP = 1575623492 +SHA256 (KDE/applications/19.12.0/akonadi-mime-19.12.0.tar.xz) = 7ef1264e80483172abf9253d8e597c3b53b2f5990a52eddf51f91328c1db2386 +SIZE (KDE/applications/19.12.0/akonadi-mime-19.12.0.tar.xz) = 132972 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 519954) +++ head/net/akonadi-notes/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930992 -SHA256 (KDE/applications/19.08.3/akonadi-notes-19.08.3.tar.xz) = 7c701d8a032161f9a58a55dd7e71a9a261fed8044ddc59d6d5f04bb742801b65 -SIZE (KDE/applications/19.08.3/akonadi-notes-19.08.3.tar.xz) = 24416 +TIMESTAMP = 1575623506 +SHA256 (KDE/applications/19.12.0/akonadi-notes-19.12.0.tar.xz) = 3c91f2f2b47a786a537aec6037e702756cf77fa8aa0378e9ab9ba59aa08e4e29 +SIZE (KDE/applications/19.12.0/akonadi-notes-19.12.0.tar.xz) = 24424 Index: head/net/akonadi-search/Makefile =================================================================== --- head/net/akonadi-search/Makefile (revision 519954) +++ head/net/akonadi-search/Makefile (revision 519955) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= akonadi-search DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Libraries and daemons to implement searching in Akonadi LICENSE= LGPL21 LIB_DEPENDS= libxapian.so:databases/xapian-core USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash ecm i18n itemmodels kcmutils package plasma-framework \ runner service widgetsaddons # pim components USE_KDE+= akonadi akonadimime calendarcore contacts mime USE_QT= core dbus gui widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 519954) +++ head/net/akonadi-search/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930993 -SHA256 (KDE/applications/19.08.3/akonadi-search-19.08.3.tar.xz) = 3a04a82b7f13aad0a5c283931b347a951b8b4bf299bfc6f8cdbc5ba299d01f9b -SIZE (KDE/applications/19.08.3/akonadi-search-19.08.3.tar.xz) = 82480 +TIMESTAMP = 1575623520 +SHA256 (KDE/applications/19.12.0/akonadi-search-19.12.0.tar.xz) = d1a4d859b60d6154242cd463d7fed9e82cc4d74ada756f3fa171262b551f38c3 +SIZE (KDE/applications/19.12.0/akonadi-search-19.12.0.tar.xz) = 83116 Index: head/net/calendarsupport/Makefile =================================================================== --- head/net/calendarsupport/Makefile (revision 519954) +++ head/net/calendarsupport/Makefile (revision 519955) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= calendarsupport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar support libraries for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ guiaddons i18n iconthemes itemmodels jobwidgets kio service \ widgetsaddons # pim components USE_KDE+= akonadi akonadicalendar calendarcore calendarutils holidays \ identitymanagement kdepim-apps-libs mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network printsupport testlib uitools \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 519954) +++ head/net/calendarsupport/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930994 -SHA256 (KDE/applications/19.08.3/calendarsupport-19.08.3.tar.xz) = 2406dd3387383cc58eb0e6f10bf50cc1b206c75096c6c6af27c1102c6d818ec3 -SIZE (KDE/applications/19.08.3/calendarsupport-19.08.3.tar.xz) = 646440 +TIMESTAMP = 1575623529 +SHA256 (KDE/applications/19.12.0/calendarsupport-19.12.0.tar.xz) = d8871623d05f039dd14903a9902d158afd6682e0e1100a8d107600e9c3d18d68 +SIZE (KDE/applications/19.12.0/calendarsupport-19.12.0.tar.xz) = 646124 Index: head/net/eventviews/Makefile =================================================================== --- head/net/eventviews/Makefile (revision 519954) +++ head/net/eventviews/Makefile (revision 519955) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= eventviews DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Event view libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libKGantt.so:graphics/kdiagram \ libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ guiaddons i18n iconthemes itemmodels service widgetsaddons # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts calendarcore \ calendarsupport calendarutils contacts holidays identitymanagement \ libkdepim mime pimtextedit USE_QT= core gui printsupport testlib uitools widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 519954) +++ head/net/eventviews/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930995 -SHA256 (KDE/applications/19.08.3/eventviews-19.08.3.tar.xz) = 3c110fb5001e71d664aaa3b09a3689c0bb16ca12ee169e98f6ff454a0ee81ba4 -SIZE (KDE/applications/19.08.3/eventviews-19.08.3.tar.xz) = 443148 +TIMESTAMP = 1575623521 +SHA256 (KDE/applications/19.12.0/eventviews-19.12.0.tar.xz) = 0583bbe70733596c7f6002d3a856154568d4c039feefaf064ad3cc6db78989b8 +SIZE (KDE/applications/19.12.0/eventviews-19.12.0.tar.xz) = 442640 Index: head/net/incidenceeditor/Makefile =================================================================== --- head/net/incidenceeditor/Makefile (revision 519954) +++ head/net/incidenceeditor/Makefile (revision 519955) @@ -1,32 +1,31 @@ # $FreeBSD$ PORTNAME= incidenceeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Incidence editor libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libKGantt.so:graphics/kdiagram \ libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes itemmodels jobwidgets kio service sonnet \ textwidgets wallet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime calendarcore calendarsupport calendarutils \ contacts eventviews identitymanagement kdepim-apps-libs ldap \ libkdepim mailtransport mime pimtextedit USE_QT= concurrent core dbus gui network printsupport testlib uitools \ webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 519954) +++ head/net/incidenceeditor/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930995 -SHA256 (KDE/applications/19.08.3/incidenceeditor-19.08.3.tar.xz) = e6753efc2841a5b0b63a2b02f07c5b77274214576e5e9fc66b962b18c516266d -SIZE (KDE/applications/19.08.3/incidenceeditor-19.08.3.tar.xz) = 550144 +TIMESTAMP = 1575623500 +SHA256 (KDE/applications/19.12.0/incidenceeditor-19.12.0.tar.xz) = 8b46ee070cb54426fbd7f4ecbfa10cd42018a68a5aae01c0d1f13c628144e715 +SIZE (KDE/applications/19.12.0/incidenceeditor-19.12.0.tar.xz) = 550320 Index: head/net/kalarmcal/Makefile =================================================================== --- head/net/kalarmcal/Makefile (revision 519954) +++ head/net/kalarmcal/Makefile (revision 519955) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= kalarmcal DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE API for KAlarm alarms LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kdelibs4support kio \ notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi calendarcore calendarutils holidays identitymanagement \ pimtextedit USE_QT= core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 519954) +++ head/net/kalarmcal/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930996 -SHA256 (KDE/applications/19.08.3/kalarmcal-19.08.3.tar.xz) = f6e9d0c99d228fc922e52ae3ddb33f2b691290e58a48edc816de72fc44d73871 -SIZE (KDE/applications/19.08.3/kalarmcal-19.08.3.tar.xz) = 573036 +TIMESTAMP = 1575623524 +SHA256 (KDE/applications/19.12.0/kalarmcal-19.12.0.tar.xz) = 7d3d8820968b2ff42d07ae4731242dac78590e44cbe0e951facb245997766910 +SIZE (KDE/applications/19.12.0/kalarmcal-19.12.0.tar.xz) = 574076 Index: head/net/kalarmcal/pkg-plist =================================================================== --- head/net/kalarmcal/pkg-plist (revision 519954) +++ head/net/kalarmcal/pkg-plist (revision 519955) @@ -1,131 +1,134 @@ -share/qlogging-categories5/kalarmcal.categories -share/qlogging-categories5/kalarmcal.renamecategories +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/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/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.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/kblog/Makefile =================================================================== --- head/net/kblog/Makefile (revision 519954) +++ head/net/kblog/Makefile (revision 519955) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= kblog DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE API for weblogging access LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kdelibs4support kio service xmlrpcclient # pim components USE_KDE+= calendarcore syndication USE_QT= concurrent core dbus gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 519954) +++ head/net/kblog/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930997 -SHA256 (KDE/applications/19.08.3/kblog-19.08.3.tar.xz) = 7b030a13c79a6add2b6f46b840e347609b39099c937d5bc5fb9310e2da987164 -SIZE (KDE/applications/19.08.3/kblog-19.08.3.tar.xz) = 72776 +TIMESTAMP = 1575623518 +SHA256 (KDE/applications/19.12.0/kblog-19.12.0.tar.xz) = 21f43f0a67206a94de61fe73a1b31be6a59d70d1f3584270d3cdc414fe58669b +SIZE (KDE/applications/19.12.0/kblog-19.12.0.tar.xz) = 73120 Index: head/net/kcalutils/Makefile =================================================================== --- head/net/kcalutils/Makefile (revision 519954) +++ head/net/kcalutils/Makefile (revision 519955) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= kcalutils DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE utility and user interface functions for accessing calendar LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm i18n iconthemes kdelibs4support \ widgetsaddons # pim components USE_KDE+= calendarcore identitymanagement pimtextedit USE_QT= core gui widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 519954) +++ head/net/kcalutils/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930998 -SHA256 (KDE/applications/19.08.3/kcalutils-19.08.3.tar.xz) = 821742c98dd55a1334c13ea9d59e177ade048b1d3ade4775803eb288c98c93da -SIZE (KDE/applications/19.08.3/kcalutils-19.08.3.tar.xz) = 323380 +TIMESTAMP = 1575623491 +SHA256 (KDE/applications/19.12.0/kcalutils-19.12.0.tar.xz) = 2886fa1641992f01ef09f575879ba54f752518b4511ad5b1fb695cf484bcbdcb +SIZE (KDE/applications/19.12.0/kcalutils-19.12.0.tar.xz) = 322156 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 519954) +++ head/net/kdav/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930998 -SHA256 (KDE/applications/19.08.3/kdav-19.08.3.tar.xz) = e85a0a8dcfdccc1dc0afaee364c45d57c6807fadb6926ae1a5afc54c4fb0a9f0 -SIZE (KDE/applications/19.08.3/kdav-19.08.3.tar.xz) = 49824 +TIMESTAMP = 1575623493 +SHA256 (KDE/applications/19.12.0/kdav-19.12.0.tar.xz) = 2b3c518c1c74bcd6d73d433c50849cac4ff1e4bdf5e97b6f5a6eed39dad56bbe +SIZE (KDE/applications/19.12.0/kdav-19.12.0.tar.xz) = 54460 Index: head/net/kdav/pkg-plist =================================================================== --- head/net/kdav/pkg-plist (revision 519954) +++ head/net/kdav/pkg-plist (revision 519955) @@ -1,81 +1,77 @@ share/qlogging-categories5/kdav.categories include/KPim/KDAV/DavCollection include/KPim/KDAV/DavCollectionDeleteJob include/KPim/KDAV/DavCollectionModifyJob include/KPim/KDAV/DavCollectionsFetchJob include/KPim/KDAV/DavCollectionsMultiFetchJob include/KPim/KDAV/DavError include/KPim/KDAV/DavItem include/KPim/KDAV/DavItemCreateJob include/KPim/KDAV/DavItemDeleteJob include/KPim/KDAV/DavItemFetchJob include/KPim/KDAV/DavItemModifyJob include/KPim/KDAV/DavItemsFetchJob include/KPim/KDAV/DavItemsListJob include/KPim/KDAV/DavJobBase -include/KPim/KDAV/DavManager include/KPim/KDAV/DavPrincipalHomesetsFetchJob include/KPim/KDAV/DavPrincipalSearchJob -include/KPim/KDAV/DavProtocolBase include/KPim/KDAV/DavUrl include/KPim/KDAV/Enums include/KPim/KDAV/EtagCache -include/KPim/KDAV/Utils +include/KPim/KDAV/ProtocolInfo include/KPim/kdav/davcollection.h include/KPim/kdav/davcollectiondeletejob.h include/KPim/kdav/davcollectionmodifyjob.h include/KPim/kdav/davcollectionsfetchjob.h include/KPim/kdav/davcollectionsmultifetchjob.h include/KPim/kdav/daverror.h include/KPim/kdav/davitem.h include/KPim/kdav/davitemcreatejob.h include/KPim/kdav/davitemdeletejob.h include/KPim/kdav/davitemfetchjob.h include/KPim/kdav/davitemmodifyjob.h include/KPim/kdav/davitemsfetchjob.h include/KPim/kdav/davitemslistjob.h include/KPim/kdav/davjobbase.h -include/KPim/kdav/davmanager.h include/KPim/kdav/davprincipalhomesetsfetchjob.h include/KPim/kdav/davprincipalsearchjob.h -include/KPim/kdav/davprotocolbase.h include/KPim/kdav/davurl.h include/KPim/kdav/enums.h include/KPim/kdav/etagcache.h include/KPim/kdav/kpimkdav_export.h -include/KPim/kdav/utils.h +include/KPim/kdav/protocolinfo.h include/KPim/kpimkdav_version.h lib/cmake/KPimKDAV/KPimKDAVConfig.cmake lib/cmake/KPimKDAV/KPimKDAVConfigVersion.cmake lib/cmake/KPimKDAV/KPimKDAVTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimKDAV/KPimKDAVTargets.cmake lib/libKPimKDAV.so lib/libKPimKDAV.so.5 lib/libKPimKDAV.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_kdav.pri share/locale/ar/LC_MESSAGES/libkdav.mo share/locale/ca/LC_MESSAGES/libkdav.mo share/locale/ca@valencia/LC_MESSAGES/libkdav.mo share/locale/cs/LC_MESSAGES/libkdav.mo share/locale/de/LC_MESSAGES/libkdav.mo share/locale/en_GB/LC_MESSAGES/libkdav.mo share/locale/es/LC_MESSAGES/libkdav.mo share/locale/fi/LC_MESSAGES/libkdav.mo share/locale/fr/LC_MESSAGES/libkdav.mo share/locale/gl/LC_MESSAGES/libkdav.mo share/locale/it/LC_MESSAGES/libkdav.mo share/locale/ja/LC_MESSAGES/libkdav.mo share/locale/ko/LC_MESSAGES/libkdav.mo share/locale/lt/LC_MESSAGES/libkdav.mo share/locale/nb/LC_MESSAGES/libkdav.mo share/locale/nl/LC_MESSAGES/libkdav.mo share/locale/pl/LC_MESSAGES/libkdav.mo share/locale/pt/LC_MESSAGES/libkdav.mo share/locale/pt_BR/LC_MESSAGES/libkdav.mo share/locale/ru/LC_MESSAGES/libkdav.mo share/locale/sk/LC_MESSAGES/libkdav.mo share/locale/sr/LC_MESSAGES/libkdav.mo share/locale/sv/LC_MESSAGES/libkdav.mo share/locale/uk/LC_MESSAGES/libkdav.mo share/locale/zh_CN/LC_MESSAGES/libkdav.mo share/locale/zh_TW/LC_MESSAGES/libkdav.mo Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 519954) +++ head/net/kdenetwork-filesharing/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930999 -SHA256 (KDE/applications/19.08.3/kdenetwork-filesharing-19.08.3.tar.xz) = 4074d996c693bdd69fd88e6f2acede79c05b2eceef1d3ed81f311247640ef366 -SIZE (KDE/applications/19.08.3/kdenetwork-filesharing-19.08.3.tar.xz) = 315492 +TIMESTAMP = 1575623515 +SHA256 (KDE/applications/19.12.0/kdenetwork-filesharing-19.12.0.tar.xz) = 81a97f937846d573e7d8da25acf867ee97ae418bba352599975cba47c73ca611 +SIZE (KDE/applications/19.12.0/kdenetwork-filesharing-19.12.0.tar.xz) = 317596 Index: head/net/kdenetwork-filesharing/pkg-plist =================================================================== --- head/net/kdenetwork-filesharing/pkg-plist (revision 519954) +++ head/net/kdenetwork-filesharing/pkg-plist (revision 519955) @@ -1,54 +1,55 @@ %%QT_PLUGINDIR%%/sambausershareplugin.so share/kservices5/sambausershareplugin.desktop share/locale/ar/LC_MESSAGES/kfileshare.mo share/locale/bg/LC_MESSAGES/kfileshare.mo share/locale/bs/LC_MESSAGES/kfileshare.mo share/locale/ca/LC_MESSAGES/kfileshare.mo share/locale/ca@valencia/LC_MESSAGES/kfileshare.mo share/locale/cs/LC_MESSAGES/kfileshare.mo share/locale/da/LC_MESSAGES/kfileshare.mo share/locale/de/LC_MESSAGES/kfileshare.mo share/locale/el/LC_MESSAGES/kfileshare.mo share/locale/en_GB/LC_MESSAGES/kfileshare.mo share/locale/eo/LC_MESSAGES/kfileshare.mo share/locale/es/LC_MESSAGES/kfileshare.mo share/locale/et/LC_MESSAGES/kfileshare.mo share/locale/eu/LC_MESSAGES/kfileshare.mo share/locale/fa/LC_MESSAGES/kfileshare.mo share/locale/fi/LC_MESSAGES/kfileshare.mo share/locale/fr/LC_MESSAGES/kfileshare.mo share/locale/ga/LC_MESSAGES/kfileshare.mo share/locale/gl/LC_MESSAGES/kfileshare.mo share/locale/he/LC_MESSAGES/kfileshare.mo share/locale/hi/LC_MESSAGES/kfileshare.mo share/locale/hr/LC_MESSAGES/kfileshare.mo share/locale/hu/LC_MESSAGES/kfileshare.mo share/locale/ia/LC_MESSAGES/kfileshare.mo share/locale/is/LC_MESSAGES/kfileshare.mo share/locale/it/LC_MESSAGES/kfileshare.mo share/locale/ja/LC_MESSAGES/kfileshare.mo share/locale/kk/LC_MESSAGES/kfileshare.mo share/locale/km/LC_MESSAGES/kfileshare.mo share/locale/ko/LC_MESSAGES/kfileshare.mo share/locale/lt/LC_MESSAGES/kfileshare.mo share/locale/lv/LC_MESSAGES/kfileshare.mo share/locale/mr/LC_MESSAGES/kfileshare.mo share/locale/nb/LC_MESSAGES/kfileshare.mo share/locale/nds/LC_MESSAGES/kfileshare.mo share/locale/nl/LC_MESSAGES/kfileshare.mo share/locale/nn/LC_MESSAGES/kfileshare.mo share/locale/pa/LC_MESSAGES/kfileshare.mo share/locale/pl/LC_MESSAGES/kfileshare.mo share/locale/pt/LC_MESSAGES/kfileshare.mo share/locale/pt_BR/LC_MESSAGES/kfileshare.mo share/locale/ro/LC_MESSAGES/kfileshare.mo share/locale/ru/LC_MESSAGES/kfileshare.mo share/locale/sk/LC_MESSAGES/kfileshare.mo share/locale/sl/LC_MESSAGES/kfileshare.mo share/locale/sr/LC_MESSAGES/kfileshare.mo share/locale/sv/LC_MESSAGES/kfileshare.mo share/locale/tr/LC_MESSAGES/kfileshare.mo share/locale/ug/LC_MESSAGES/kfileshare.mo share/locale/uk/LC_MESSAGES/kfileshare.mo share/locale/zh_CN/LC_MESSAGES/kfileshare.mo share/locale/zh_TW/LC_MESSAGES/kfileshare.mo +share/metainfo/org.kde.kdenetwork-filesharing.metainfo.xml Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 519954) +++ head/net/kget/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931000 -SHA256 (KDE/applications/19.08.3/kget-19.08.3.tar.xz) = 5a107da8313731114e7b5528f4c0cf6e0ab62867e20a9caa802de23812c69800 -SIZE (KDE/applications/19.08.3/kget-19.08.3.tar.xz) = 5232796 +TIMESTAMP = 1575623510 +SHA256 (KDE/applications/19.12.0/kget-19.12.0.tar.xz) = 90c14c1a31db5004fdbdddddc764a41cce3fbc03026900e4d50d43af126e6e1f +SIZE (KDE/applications/19.12.0/kget-19.12.0.tar.xz) = 5238488 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 519954) +++ head/net/kidentitymanagement/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931001 -SHA256 (KDE/applications/19.08.3/kidentitymanagement-19.08.3.tar.xz) = 6ed512d3b42378a767299660c2b9fe142b840cdaaae70c522104c37275221f37 -SIZE (KDE/applications/19.08.3/kidentitymanagement-19.08.3.tar.xz) = 149208 +TIMESTAMP = 1575623498 +SHA256 (KDE/applications/19.12.0/kidentitymanagement-19.12.0.tar.xz) = bff240fea3f22d6137c7eabbc4161401f6c67a6501c16233812482cdd204442a +SIZE (KDE/applications/19.12.0/kidentitymanagement-19.12.0.tar.xz) = 149464 Index: head/net/kimap/Makefile =================================================================== --- head/net/kimap/Makefile (revision 519954) +++ head/net/kimap/Makefile (revision 519955) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kimap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE API for IMAP support LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm i18n kdelibs4support kio service # pim components USE_KDE+= mime USE_QT= concurrent core dbus network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 519954) +++ head/net/kimap/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931002 -SHA256 (KDE/applications/19.08.3/kimap-19.08.3.tar.xz) = 46ca8d265b7191d75db8c6a4d988624385c9ab8eae702a42e6eb4b81be581051 -SIZE (KDE/applications/19.08.3/kimap-19.08.3.tar.xz) = 119512 +TIMESTAMP = 1575623508 +SHA256 (KDE/applications/19.12.0/kimap-19.12.0.tar.xz) = 179f2de7a3eaed26d40911216c9061c148bd89910526ef049851c792c8156ac1 +SIZE (KDE/applications/19.12.0/kimap-19.12.0.tar.xz) = 119640 Index: head/net/kitinerary/Makefile =================================================================== --- head/net/kitinerary/Makefile (revision 519954) +++ head/net/kitinerary/Makefile (revision 519955) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information LICENSE= LGPL21 LIB_DEPENDS= libpoppler.so:graphics/poppler \ libzxing.so:textproc/zxing-cpp USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 tar:xz USE_GNOME= libxml2 USE_KDE= coreaddons ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 519954) +++ head/net/kitinerary/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931002 -SHA256 (KDE/applications/19.08.3/kitinerary-19.08.3.tar.xz) = d13e701b8a988999477c030fffe687b4c333a330717a15b72651458f35e6e151 -SIZE (KDE/applications/19.08.3/kitinerary-19.08.3.tar.xz) = 955500 +TIMESTAMP = 1575623522 +SHA256 (KDE/applications/19.12.0/kitinerary-19.12.0.tar.xz) = 3a3b3b23d163b0f50550bd710793ca486dc26c99376c5fadc02ceb8bdcd822a9 +SIZE (KDE/applications/19.12.0/kitinerary-19.12.0.tar.xz) = 1179884 Index: head/net/kitinerary/pkg-plist =================================================================== --- head/net/kitinerary/pkg-plist (revision 519954) +++ head/net/kitinerary/pkg-plist (revision 519955) @@ -1,98 +1,119 @@ -share/qlogging-categories5/org_kde_kitinerary.categories include/KPim/KItinerary/Action +include/KPim/KItinerary/AlphaId include/KPim/KItinerary/BarcodeDecoder include/KPim/KItinerary/Brand include/KPim/KItinerary/BusTrip include/KPim/KItinerary/CalendarHandler include/KPim/KItinerary/CountryDb +include/KPim/KItinerary/CreativeWork include/KPim/KItinerary/Datatypes +include/KPim/KItinerary/DocumentUtil include/KPim/KItinerary/Event include/KPim/KItinerary/Extractor include/KPim/KItinerary/ExtractorEngine +include/KPim/KItinerary/ExtractorFilter +include/KPim/KItinerary/ExtractorInput include/KPim/KItinerary/ExtractorPostprocessor +include/KPim/KItinerary/ExtractorRepository +include/KPim/KItinerary/File include/KPim/KItinerary/Flight include/KPim/KItinerary/HtmlDocument include/KPim/KItinerary/IataBcbpParser include/KPim/KItinerary/JsonLdDocument include/KPim/KItinerary/KnowledgeDb include/KPim/KItinerary/LocationUtil include/KPim/KItinerary/MergeUtil include/KPim/KItinerary/Organization include/KPim/KItinerary/PdfDocument include/KPim/KItinerary/PdfImage include/KPim/KItinerary/Person include/KPim/KItinerary/Place include/KPim/KItinerary/Rct2Ticket include/KPim/KItinerary/RentalCar include/KPim/KItinerary/Reservation include/KPim/KItinerary/SortUtil include/KPim/KItinerary/Taxi include/KPim/KItinerary/Ticket include/KPim/KItinerary/TrainTrip +include/KPim/KItinerary/Uic9183Block include/KPim/KItinerary/Uic9183Parser +include/KPim/KItinerary/Uic9183TicketLayout +include/KPim/KItinerary/Vendor0080Block include/KPim/KItinerary/Visit include/KPim/kitinerary/action.h +include/KPim/kitinerary/alphaid.h include/KPim/kitinerary/barcodedecoder.h include/KPim/kitinerary/brand.h include/KPim/kitinerary/bustrip.h include/KPim/kitinerary/calendarhandler.h include/KPim/kitinerary/countrydb.h +include/KPim/kitinerary/creativework.h include/KPim/kitinerary/datatypes.h +include/KPim/kitinerary/documentutil.h include/KPim/kitinerary/event.h include/KPim/kitinerary/extractor.h include/KPim/kitinerary/extractorengine.h +include/KPim/kitinerary/extractorfilter.h +include/KPim/kitinerary/extractorinput.h include/KPim/kitinerary/extractorpostprocessor.h +include/KPim/kitinerary/extractorrepository.h +include/KPim/kitinerary/file.h include/KPim/kitinerary/flight.h include/KPim/kitinerary/htmldocument.h include/KPim/kitinerary/iatabcbpparser.h include/KPim/kitinerary/jsonlddocument.h include/KPim/kitinerary/kitinerary_export.h include/KPim/kitinerary/knowledgedb.h include/KPim/kitinerary/locationutil.h include/KPim/kitinerary/mergeutil.h include/KPim/kitinerary/organization.h include/KPim/kitinerary/pdfdocument.h include/KPim/kitinerary/pdfimage.h include/KPim/kitinerary/person.h include/KPim/kitinerary/place.h include/KPim/kitinerary/rct2ticket.h include/KPim/kitinerary/rentalcar.h include/KPim/kitinerary/reservation.h include/KPim/kitinerary/sortutil.h include/KPim/kitinerary/taxi.h include/KPim/kitinerary/ticket.h include/KPim/kitinerary/traintrip.h +include/KPim/kitinerary/uic9183block.h include/KPim/kitinerary/uic9183parser.h +include/KPim/kitinerary/uic9183ticketlayout.h +include/KPim/kitinerary/vendor0080block.h include/KPim/kitinerary/visit.h lib/cmake/KPimItinerary/KPimItineraryConfig.cmake lib/cmake/KPimItinerary/KPimItineraryConfigVersion.cmake lib/cmake/KPimItinerary/KPimItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimItinerary/KPimItineraryTargets.cmake lib/libexec/kf5/kitinerary-extractor lib/libKPimItinerary.so lib/libKPimItinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimItinerary.so.5 share/locale/ar/LC_MESSAGES/kitinerary.mo share/locale/ca/LC_MESSAGES/kitinerary.mo share/locale/ca@valencia/LC_MESSAGES/kitinerary.mo share/locale/cs/LC_MESSAGES/kitinerary.mo share/locale/de/LC_MESSAGES/kitinerary.mo share/locale/en_GB/LC_MESSAGES/kitinerary.mo share/locale/es/LC_MESSAGES/kitinerary.mo share/locale/fi/LC_MESSAGES/kitinerary.mo share/locale/fr/LC_MESSAGES/kitinerary.mo share/locale/gl/LC_MESSAGES/kitinerary.mo share/locale/it/LC_MESSAGES/kitinerary.mo share/locale/ja/LC_MESSAGES/kitinerary.mo share/locale/ko/LC_MESSAGES/kitinerary.mo share/locale/lt/LC_MESSAGES/kitinerary.mo share/locale/nl/LC_MESSAGES/kitinerary.mo share/locale/pl/LC_MESSAGES/kitinerary.mo share/locale/pt/LC_MESSAGES/kitinerary.mo share/locale/pt_BR/LC_MESSAGES/kitinerary.mo share/locale/ru/LC_MESSAGES/kitinerary.mo share/locale/sk/LC_MESSAGES/kitinerary.mo share/locale/sv/LC_MESSAGES/kitinerary.mo share/locale/uk/LC_MESSAGES/kitinerary.mo share/locale/zh_CN/LC_MESSAGES/kitinerary.mo share/locale/zh_TW/LC_MESSAGES/kitinerary.mo +share/mime/packages/application-vnd-kde-itinerary.xml +share/qlogging-categories5/org_kde_kitinerary.categories Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 519954) +++ head/net/kldap/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931003 -SHA256 (KDE/applications/19.08.3/kldap-19.08.3.tar.xz) = b65ba5fefab7ecb92a7d38ac718e53077d9d9a87d73f121e32019aad90b48bae -SIZE (KDE/applications/19.08.3/kldap-19.08.3.tar.xz) = 155372 +TIMESTAMP = 1575623504 +SHA256 (KDE/applications/19.12.0/kldap-19.12.0.tar.xz) = 38cf118fcc628fdb4b57655cf4b30b39909111dc588e54592479121cf96ddcec +SIZE (KDE/applications/19.12.0/kldap-19.12.0.tar.xz) = 155216 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 519954) +++ head/net/kmailtransport/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931004 -SHA256 (KDE/applications/19.08.3/kmailtransport-19.08.3.tar.xz) = 24cf570b2ab77a69e55adb013e1d7e3eaf17f5ced900d8e5166890bb3ab64d12 -SIZE (KDE/applications/19.08.3/kmailtransport-19.08.3.tar.xz) = 166240 +TIMESTAMP = 1575623496 +SHA256 (KDE/applications/19.12.0/kmailtransport-19.12.0.tar.xz) = ac5b2fde3c024a13fc70bfd5b58317c258804144c156312d4d3e91fd34e16c89 +SIZE (KDE/applications/19.12.0/kmailtransport-19.12.0.tar.xz) = 167080 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 519954) +++ head/net/kmbox/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931005 -SHA256 (KDE/applications/19.08.3/kmbox-19.08.3.tar.xz) = e29d0df5344babb08f1befce2be9eae6a2e872f74757367454651ad26dd8658d -SIZE (KDE/applications/19.08.3/kmbox-19.08.3.tar.xz) = 24444 +TIMESTAMP = 1575623501 +SHA256 (KDE/applications/19.12.0/kmbox-19.12.0.tar.xz) = ce7520c1149fd29044d36778d074687ee81a6a015dc9ebe70c58198dd0d90167 +SIZE (KDE/applications/19.12.0/kmbox-19.12.0.tar.xz) = 24628 Index: head/net/kmime/Makefile =================================================================== --- head/net/kmime/Makefile (revision 519954) +++ head/net/kmime/Makefile (revision 519955) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= kmime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for handling MIME data LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs ecm emoticons i18n init itemmodels itemviews kdelibs4support USE_QT= core \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 519954) +++ head/net/kmime/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931005 -SHA256 (KDE/applications/19.08.3/kmime-19.08.3.tar.xz) = e659e1154fbc11db624f1b76bc1a8e5cf8c7f6731cef7b4ff6fad9ccf90580dd -SIZE (KDE/applications/19.08.3/kmime-19.08.3.tar.xz) = 146916 +TIMESTAMP = 1575623514 +SHA256 (KDE/applications/19.12.0/kmime-19.12.0.tar.xz) = eb65cef3e63dc00e84753139c4e024c7b26de1d25bf195b2e53d889b29a8512f +SIZE (KDE/applications/19.12.0/kmime-19.12.0.tar.xz) = 146732 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 519954) +++ head/net/kontactinterface/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931006 -SHA256 (KDE/applications/19.08.3/kontactinterface-19.08.3.tar.xz) = 67827b27e46d381a207bcd6986b0285c0b7629ec9b93048e9503768662e211dc -SIZE (KDE/applications/19.08.3/kontactinterface-19.08.3.tar.xz) = 33176 +TIMESTAMP = 1575623509 +SHA256 (KDE/applications/19.12.0/kontactinterface-19.12.0.tar.xz) = d7c43f12779d908066f025354088aad44d0462e8e8807a6b8d71870f10a46578 +SIZE (KDE/applications/19.12.0/kontactinterface-19.12.0.tar.xz) = 33180 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 519954) +++ head/net/kpimtextedit/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931007 -SHA256 (KDE/applications/19.08.3/kpimtextedit-19.08.3.tar.xz) = 75ff2300e771a1fe02a19ef57e2a28489179a92dc184c924be495e878b4444ab -SIZE (KDE/applications/19.08.3/kpimtextedit-19.08.3.tar.xz) = 155000 +TIMESTAMP = 1575623497 +SHA256 (KDE/applications/19.12.0/kpimtextedit-19.12.0.tar.xz) = 6caffca187ca21929d8becb83da6a173fb6c1a21ad07817b070100579eac1bd1 +SIZE (KDE/applications/19.12.0/kpimtextedit-19.12.0.tar.xz) = 167364 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 519954) +++ head/net/krdc/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931008 -SHA256 (KDE/applications/19.08.3/krdc-19.08.3.tar.xz) = d4cbaebaa3cd56ef5ec728a1d09edf72e8dfc18174e59f954a5f7ec8494acfdc -SIZE (KDE/applications/19.08.3/krdc-19.08.3.tar.xz) = 1423272 +TIMESTAMP = 1575623511 +SHA256 (KDE/applications/19.12.0/krdc-19.12.0.tar.xz) = 52bff08687abe86b274af77855dce923945ac998d11b1b309c6b1854febdd40b +SIZE (KDE/applications/19.12.0/krdc-19.12.0.tar.xz) = 1425400 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 519954) +++ head/net/krfb/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931009 -SHA256 (KDE/applications/19.08.3/krfb-19.08.3.tar.xz) = c708e10b909151dee362205af9db72946b9bbb86f3d87aaf2d2a9956a9242e1d -SIZE (KDE/applications/19.08.3/krfb-19.08.3.tar.xz) = 1278072 +TIMESTAMP = 1575623507 +SHA256 (KDE/applications/19.12.0/krfb-19.12.0.tar.xz) = 87fd065c2ac517aba086f846ce6602ac8cb4ba88e3f90d283318af3667959046 +SIZE (KDE/applications/19.12.0/krfb-19.12.0.tar.xz) = 1278040 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 519954) +++ head/net/ksmtp/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931009 -SHA256 (KDE/applications/19.08.3/ksmtp-19.08.3.tar.xz) = 16b389a8dcb938ed3f1e2f4b10a5aa31c16eac8df89963a71c08af3e54ada8dd -SIZE (KDE/applications/19.08.3/ksmtp-19.08.3.tar.xz) = 40472 +TIMESTAMP = 1575623502 +SHA256 (KDE/applications/19.12.0/ksmtp-19.12.0.tar.xz) = 157c6112dfd2aaafe991e17bfd115a74721526642d6e52241d83142f541269a2 +SIZE (KDE/applications/19.12.0/ksmtp-19.12.0.tar.xz) = 40740 Index: head/net/ktnef/Makefile =================================================================== --- head/net/ktnef/Makefile (revision 519954) +++ head/net/ktnef/Makefile (revision 519955) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= ktnef DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE API for the handling of TNEF data LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kdelibs4support # pim components USE_KDE+= calendarcore calendarutils contacts USE_QT= core gui widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 519954) +++ head/net/ktnef/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931010 -SHA256 (KDE/applications/19.08.3/ktnef-19.08.3.tar.xz) = 86ae57b54047f51d31292fb71f2410660dd5bf7ca54e847b78108c600884ee4d -SIZE (KDE/applications/19.08.3/ktnef-19.08.3.tar.xz) = 299736 +TIMESTAMP = 1575623528 +SHA256 (KDE/applications/19.12.0/ktnef-19.12.0.tar.xz) = ae294f943788222d5abb264c1a7805222bdedf558e5f0466d1fd9926486e96df +SIZE (KDE/applications/19.12.0/ktnef-19.12.0.tar.xz) = 299776 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 519954) +++ head/net/libgravatar/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931011 -SHA256 (KDE/applications/19.08.3/libgravatar-19.08.3.tar.xz) = 7f3421d1074065221e7ff892ba5f32614aef08b9ee407b5d8301e20f414bf8fb -SIZE (KDE/applications/19.08.3/libgravatar-19.08.3.tar.xz) = 30804 +TIMESTAMP = 1575623525 +SHA256 (KDE/applications/19.12.0/libgravatar-19.12.0.tar.xz) = d3577648d7116565b8dc88d94f55a83e9c6d78c040a2fb6ba4907893f0b77048 +SIZE (KDE/applications/19.12.0/libgravatar-19.12.0.tar.xz) = 30932 Index: head/net/libkgapi/Makefile =================================================================== --- head/net/libkgapi/Makefile (revision 519954) +++ head/net/libkgapi/Makefile (revision 519955) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= libkgapi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE based library to access google services LICENSE= LGPL21 LIB_DEPENDS= libical.so:devel/libical \ libsasl2.so:security/cyrus-sasl2 CONFLICTS_BUILD= kdepim-runtime-18.0[04]* \ kdepim-runtime-17.* USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kdelibs4support kio \ notifications parts service textwidgets unitconversion \ widgetsaddons windowsystem xmlgui solid sonnet wallet # pim components USE_KDE+= calendarcore contacts USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 519954) +++ head/net/libkgapi/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931012 -SHA256 (KDE/applications/19.08.3/libkgapi-19.08.3.tar.xz) = 085878396ae2a8bed7e9121d985de848c515992a3c6c989b9510125bc859e67c -SIZE (KDE/applications/19.08.3/libkgapi-19.08.3.tar.xz) = 234484 +TIMESTAMP = 1575623495 +SHA256 (KDE/applications/19.12.0/libkgapi-19.12.0.tar.xz) = d2e59ba2fd6f0bd91f783199a9654bdca2539d15f0ec105796e096642ca4c517 +SIZE (KDE/applications/19.12.0/libkgapi-19.12.0.tar.xz) = 238596 Index: head/net/libksieve/Makefile =================================================================== --- head/net/libksieve/Makefile (revision 519954) +++ head/net/libksieve/Makefile (revision 519955) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= libksieve DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Sieve libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons ecm i18n iconthemes jobwidgets kio newstuff service \ sonnet syntaxhighlighting wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi identitymanagement libkdepim mailtransport mime \ pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ uitools webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 519954) +++ head/net/libksieve/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931012 -SHA256 (KDE/applications/19.08.3/libksieve-19.08.3.tar.xz) = a10311192a57d1b7073d73477f5cefdf7c42d0a720d0eaf406986e4f1835ce60 -SIZE (KDE/applications/19.08.3/libksieve-19.08.3.tar.xz) = 549664 +TIMESTAMP = 1575623519 +SHA256 (KDE/applications/19.12.0/libksieve-19.12.0.tar.xz) = 4107ec2a1f51a97ba09126d0d10222bf4c957ec3eb03a276b82666d6ed2aa1d4 +SIZE (KDE/applications/19.12.0/libksieve-19.12.0.tar.xz) = 553512 Index: head/net/mailcommon/Makefile =================================================================== --- head/net/mailcommon/Makefile (revision 519954) +++ head/net/mailcommon/Makefile (revision 519955) @@ -1,36 +1,35 @@ # $FreeBSD$ PORTNAME= mailcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_system.so:devel/boost-libs \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ ecm i18n iconthemes itemmodels itemviews jobwidgets kio \ service sonnet syntaxhighlighting textwidgets wallet \ widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts identitymanagement \ imap ldap libkdepim libkleo mailimporter \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus network xml designer gui multimedia \ phonon4 testlib uiplugin uitools webkit widgets \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 519954) +++ head/net/mailcommon/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931013 -SHA256 (KDE/applications/19.08.3/mailcommon-19.08.3.tar.xz) = 55ccf161f40b3647f269f71309f9a2fcdf1e2327da53e96c3d8510fc664252bf -SIZE (KDE/applications/19.08.3/mailcommon-19.08.3.tar.xz) = 693672 +TIMESTAMP = 1576095097 +SHA256 (KDE/applications/19.12.0/mailcommon-19.12.0.tar.xz) = b581de742afe391bdc3d0635d3c796c5906ddd352e8d5d763576098817045099 +SIZE (KDE/applications/19.12.0/mailcommon-19.12.0.tar.xz) = 701872 Index: head/net/mailcommon/pkg-plist =================================================================== --- head/net/mailcommon/pkg-plist (revision 519954) +++ head/net/mailcommon/pkg-plist (revision 519955) @@ -1,148 +1,154 @@ share/qlogging-categories5/mailcommon.categories share/qlogging-categories5/mailcommon.renamecategories include/KF5/MailCommon/AccountConfigOrderDialog include/KF5/MailCommon/AddTagDialog include/KF5/MailCommon/BackupJob include/KF5/MailCommon/CollectionExpiryPage include/KF5/MailCommon/CollectionGeneralPage include/KF5/MailCommon/CryptoUtils include/KF5/MailCommon/DBusOperators include/KF5/MailCommon/ExpireCollectionAttribute include/KF5/MailCommon/FavoriteCollectionOrderProxyModel include/KF5/MailCommon/FavoriteCollectionWidget include/KF5/MailCommon/FilterAction include/KF5/MailCommon/FilterActionDict include/KF5/MailCommon/FilterImporterAbstract include/KF5/MailCommon/FilterImporterBalsa include/KF5/MailCommon/FilterImporterClawsMail include/KF5/MailCommon/FilterImporterExporter include/KF5/MailCommon/FilterImporterPathCache include/KF5/MailCommon/FilterLog include/KF5/MailCommon/FilterManager include/KF5/MailCommon/FolderCollectionMonitor include/KF5/MailCommon/FolderJob include/KF5/MailCommon/FolderRequester include/KF5/MailCommon/FolderSelectionDialog include/KF5/MailCommon/FolderSettings include/KF5/MailCommon/FolderTreeView include/KF5/MailCommon/FolderTreeWidget include/KF5/MailCommon/FolderTreeWidgetProxyModel include/KF5/MailCommon/ItemContext include/KF5/MailCommon/JobScheduler include/KF5/MailCommon/KMFilterDialog include/KF5/MailCommon/MDNStateAttribute include/KF5/MailCommon/MailFilter include/KF5/MailCommon/MailInterfaces include/KF5/MailCommon/MailKernel include/KF5/MailCommon/MailUtil include/KF5/MailCommon/RedirectDialog include/KF5/MailCommon/ResourceReadConfigFile include/KF5/MailCommon/SearchPattern include/KF5/MailCommon/SearchPatternEdit include/KF5/MailCommon/SearchRule include/KF5/MailCommon/SearchRuleStatus include/KF5/MailCommon/SendMdnHandler +include/KF5/MailCommon/SnippetTreeView +include/KF5/MailCommon/SnippetWidget include/KF5/MailCommon/SnippetsManager +include/KF5/MailCommon/SnippetsModel include/KF5/MailCommon/Tag include/KF5/MailCommon/TagWidget include/KF5/mailcommon/accountconfigorderdialog.h include/KF5/mailcommon/addtagdialog.h include/KF5/mailcommon/backupjob.h include/KF5/mailcommon/collectionexpirypage.h include/KF5/mailcommon/collectiongeneralpage.h include/KF5/mailcommon/cryptoutils.h include/KF5/mailcommon/dbusoperators.h include/KF5/mailcommon/expirecollectionattribute.h include/KF5/mailcommon/favoritecollectionorderproxymodel.h include/KF5/mailcommon/favoritecollectionwidget.h include/KF5/mailcommon/filteraction.h include/KF5/mailcommon/filteractiondict.h include/KF5/mailcommon/filterimporterabstract.h include/KF5/mailcommon/filterimporterbalsa.h include/KF5/mailcommon/filterimporterclawsmail.h include/KF5/mailcommon/filterimporterexporter.h include/KF5/mailcommon/filterimporterpathcache.h include/KF5/mailcommon/filterlog.h include/KF5/mailcommon/filtermanager.h include/KF5/mailcommon/foldercollectionmonitor.h include/KF5/mailcommon/folderjob.h include/KF5/mailcommon/folderrequester.h include/KF5/mailcommon/folderselectiondialog.h include/KF5/mailcommon/foldersettings.h include/KF5/mailcommon/foldertreeview.h include/KF5/mailcommon/foldertreewidget.h include/KF5/mailcommon/foldertreewidgetproxymodel.h include/KF5/mailcommon/itemcontext.h include/KF5/mailcommon/jobscheduler.h include/KF5/mailcommon/kmfilterdialog.h include/KF5/mailcommon/mailcommon_export.h include/KF5/mailcommon/mailcommonsettings_base.h include/KF5/mailcommon/mailfilter.h include/KF5/mailcommon/mailinterfaces.h include/KF5/mailcommon/mailkernel.h include/KF5/mailcommon/mailutil.h include/KF5/mailcommon/mdnstateattribute.h include/KF5/mailcommon/pop3settings.h include/KF5/mailcommon/redirectdialog.h include/KF5/mailcommon/resourcereadconfigfile.h include/KF5/mailcommon/searchpattern.h include/KF5/mailcommon/searchpatternedit.h include/KF5/mailcommon/searchrule.h include/KF5/mailcommon/searchrulestatus.h include/KF5/mailcommon/sendmdnhandler.h include/KF5/mailcommon/snippetsmanager.h +include/KF5/mailcommon/snippetsmodel.h +include/KF5/mailcommon/snippettreeview.h +include/KF5/mailcommon/snippetwidget.h include/KF5/mailcommon/tag.h include/KF5/mailcommon/tagwidget.h include/KF5/mailcommon_version.h lib/cmake/KF5MailCommon/KF5MailCommonConfig.cmake lib/cmake/KF5MailCommon/KF5MailCommonConfigVersion.cmake lib/cmake/KF5MailCommon/KF5MailCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailCommon/KF5MailCommonTargets.cmake lib/libKF5MailCommon.so lib/libKF5MailCommon.so.5 lib/libKF5MailCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MailCommon.pri %%QT_PLUGINDIR%%/designer/mailcommonwidgets.so share/locale/ar/LC_MESSAGES/libmailcommon.mo share/locale/bs/LC_MESSAGES/libmailcommon.mo share/locale/ca/LC_MESSAGES/libmailcommon.mo share/locale/ca@valencia/LC_MESSAGES/libmailcommon.mo share/locale/cs/LC_MESSAGES/libmailcommon.mo share/locale/da/LC_MESSAGES/libmailcommon.mo share/locale/de/LC_MESSAGES/libmailcommon.mo share/locale/el/LC_MESSAGES/libmailcommon.mo share/locale/en_GB/LC_MESSAGES/libmailcommon.mo share/locale/es/LC_MESSAGES/libmailcommon.mo share/locale/et/LC_MESSAGES/libmailcommon.mo share/locale/fi/LC_MESSAGES/libmailcommon.mo share/locale/fr/LC_MESSAGES/libmailcommon.mo share/locale/ga/LC_MESSAGES/libmailcommon.mo share/locale/gl/LC_MESSAGES/libmailcommon.mo share/locale/hr/LC_MESSAGES/libmailcommon.mo share/locale/hu/LC_MESSAGES/libmailcommon.mo share/locale/ia/LC_MESSAGES/libmailcommon.mo share/locale/it/LC_MESSAGES/libmailcommon.mo share/locale/ja/LC_MESSAGES/libmailcommon.mo share/locale/kk/LC_MESSAGES/libmailcommon.mo share/locale/ko/LC_MESSAGES/libmailcommon.mo share/locale/lt/LC_MESSAGES/libmailcommon.mo share/locale/mr/LC_MESSAGES/libmailcommon.mo share/locale/nb/LC_MESSAGES/libmailcommon.mo share/locale/nds/LC_MESSAGES/libmailcommon.mo share/locale/nl/LC_MESSAGES/libmailcommon.mo share/locale/nn/LC_MESSAGES/libmailcommon.mo share/locale/pa/LC_MESSAGES/libmailcommon.mo share/locale/pl/LC_MESSAGES/libmailcommon.mo share/locale/pt/LC_MESSAGES/libmailcommon.mo share/locale/pt_BR/LC_MESSAGES/libmailcommon.mo share/locale/ro/LC_MESSAGES/libmailcommon.mo share/locale/ru/LC_MESSAGES/libmailcommon.mo share/locale/sk/LC_MESSAGES/libmailcommon.mo share/locale/sl/LC_MESSAGES/libmailcommon.mo share/locale/sr/LC_MESSAGES/libmailcommon.mo share/locale/sv/LC_MESSAGES/libmailcommon.mo share/locale/tr/LC_MESSAGES/libmailcommon.mo share/locale/ug/LC_MESSAGES/libmailcommon.mo share/locale/uk/LC_MESSAGES/libmailcommon.mo share/locale/zh_CN/LC_MESSAGES/libmailcommon.mo share/locale/zh_TW/LC_MESSAGES/libmailcommon.mo Index: head/net/mailimporter/Makefile =================================================================== --- head/net/mailimporter/Makefile (revision 519954) +++ head/net/mailimporter/Makefile (revision 519955) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= mailimporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import mbox files to KMail LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons ecm i18n itemmodels # pim components USE_KDE+= akonadi akonadimime libkdepim mime USE_QT= core gui testlib uitools widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 519954) +++ head/net/mailimporter/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931014 -SHA256 (KDE/applications/19.08.3/mailimporter-19.08.3.tar.xz) = fbdfbfe093bb0af05d26492c0839a94ac0a5c0577081bd726626b943be7cb96e -SIZE (KDE/applications/19.08.3/mailimporter-19.08.3.tar.xz) = 540544 +TIMESTAMP = 1575623512 +SHA256 (KDE/applications/19.12.0/mailimporter-19.12.0.tar.xz) = d0758559daa25b666a9fe7b6bc4461762bc08013a6f06a4ae9b1028742195241 +SIZE (KDE/applications/19.12.0/mailimporter-19.12.0.tar.xz) = 540600 Index: head/net/messagelib/Makefile =================================================================== --- head/net/messagelib/Makefile (revision 519954) +++ head/net/messagelib/Makefile (revision 519955) @@ -1,43 +1,43 @@ # $FreeBSD$ PORTNAME= messagelib DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for handling messages LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_system.so:devel/boost-libs \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ - libqgpgme.so:security/gpgme-qt5 + libqgpgme.so:security/gpgme-qt5 \ + libqca-qt5.so:devel/qca USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes imap itemmodels itemviews jobwidgets \ kdewebkit kio service solid sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ contacts grantleetheme gravatar identitymanagement \ kdepim-apps-libs ldap libkdepim libkleo mailtransport mbox \ mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ uitools webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= INOTIFY DOCS OPTIONS_DEFAULT= INOTIFY OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify .include Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 519954) +++ head/net/messagelib/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931015 -SHA256 (KDE/applications/19.08.3/messagelib-19.08.3.tar.xz) = db2e48e48d87922f9533ebd3eb021549e6bf8dea5828d83bfdfecb36b1426728 -SIZE (KDE/applications/19.08.3/messagelib-19.08.3.tar.xz) = 10401352 +TIMESTAMP = 1575623523 +SHA256 (KDE/applications/19.12.0/messagelib-19.12.0.tar.xz) = 5dae93a5101add258cdd3cc90d1051454a3b756d9683891abe40b97bd32f8cd7 +SIZE (KDE/applications/19.12.0/messagelib-19.12.0.tar.xz) = 10466896 Index: head/net/messagelib/pkg-plist =================================================================== --- head/net/messagelib/pkg-plist (revision 519954) +++ head/net/messagelib/pkg-plist (revision 519955) @@ -1,819 +1,857 @@ -share/qlogging-categories5/messagelib.categories -share/qlogging-categories5/messagelib.renamecategories include/KF5/MessageComposer/AbstractEncryptJob include/KF5/MessageComposer/AkonadiSender include/KF5/MessageComposer/AliasesExpandJob include/KF5/MessageComposer/AttachmentClipBoardJob include/KF5/MessageComposer/AttachmentControllerBase include/KF5/MessageComposer/AttachmentFromPublicKeyJob include/KF5/MessageComposer/AttachmentJob include/KF5/MessageComposer/AttachmentModel include/KF5/MessageComposer/AttachmentVcardFromAddressBookJob include/KF5/MessageComposer/Composer +include/KF5/MessageComposer/ComposerAttachmentInterface include/KF5/MessageComposer/ComposerLineEdit include/KF5/MessageComposer/ComposerViewBase +include/KF5/MessageComposer/ComposerViewInterface include/KF5/MessageComposer/ContentJobBase +include/KF5/MessageComposer/ConvertSnippetVariableMenu +include/KF5/MessageComposer/ConvertSnippetVariablesJob +include/KF5/MessageComposer/ConvertSnippetVariablesUtil include/KF5/MessageComposer/EncryptJob include/KF5/MessageComposer/FollowUpReminderSelectDateDialog include/KF5/MessageComposer/FollowupReminderCreateJob include/KF5/MessageComposer/GlobalPart include/KF5/MessageComposer/ImageScalingWidget include/KF5/MessageComposer/InfoPart include/KF5/MessageComposer/InsertTextFileJob include/KF5/MessageComposer/JobBase include/KF5/MessageComposer/Kleo_Util include/KF5/MessageComposer/MainTextJob include/KF5/MessageComposer/MessageComposerSettings include/KF5/MessageComposer/MessageFactoryNG include/KF5/MessageComposer/MessageHelper include/KF5/MessageComposer/MessagePart include/KF5/MessageComposer/MessageSender include/KF5/MessageComposer/MultipartJob include/KF5/MessageComposer/PluginActionType +include/KF5/MessageComposer/PluginComposerInterface include/KF5/MessageComposer/PluginEditor include/KF5/MessageComposer/PluginEditorCheckBeforeSend include/KF5/MessageComposer/PluginEditorCheckBeforeSendConfigureWidget include/KF5/MessageComposer/PluginEditorCheckBeforeSendInterface include/KF5/MessageComposer/PluginEditorCheckBeforeSendManager include/KF5/MessageComposer/PluginEditorCheckBeforeSendParams include/KF5/MessageComposer/PluginEditorConvertText include/KF5/MessageComposer/PluginEditorConvertTextConfigureWidget include/KF5/MessageComposer/PluginEditorConvertTextInterface include/KF5/MessageComposer/PluginEditorConvertTextManager include/KF5/MessageComposer/PluginEditorConverterBeforeConvertingData include/KF5/MessageComposer/PluginEditorConverterInitialData include/KF5/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KF5/MessageComposer/PluginEditorGrammarManager include/KF5/MessageComposer/PluginEditorInit include/KF5/MessageComposer/PluginEditorInitConfigureWidget include/KF5/MessageComposer/PluginEditorInitInterface include/KF5/MessageComposer/PluginEditorInitManager include/KF5/MessageComposer/PluginEditorInterface include/KF5/MessageComposer/PluginEditorManager include/KF5/MessageComposer/Recipient include/KF5/MessageComposer/RecipientLine include/KF5/MessageComposer/RecipientsEditor include/KF5/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/RichTextComposerSignatures include/KF5/MessageComposer/SignJob include/KF5/MessageComposer/SignatureController include/KF5/MessageComposer/SinglepartJob include/KF5/MessageComposer/SkeletonMessageJob +include/KF5/MessageComposer/StatusBarLabelToggledState include/KF5/MessageComposer/TextPart include/KF5/MessageComposer/TransparentJob include/KF5/MessageComposer/Util include/KF5/MessageCore/AttachmentCompressJob include/KF5/MessageCore/AttachmentFromUrlBaseJob include/KF5/MessageCore/AttachmentFromUrlUtils include/KF5/MessageCore/AttachmentLoadJob include/KF5/MessageCore/AttachmentPart include/KF5/MessageCore/AttachmentPropertiesDialog include/KF5/MessageCore/AttachmentUpdateJob include/KF5/MessageCore/ImageCollector include/KF5/MessageCore/MailingList include/KF5/MessageCore/MessageCoreSettings include/KF5/MessageCore/MessageCoreUtil include/KF5/MessageCore/NodeHelper include/KF5/MessageCore/StringUtil include/KF5/MessageList/AggregationComboBox include/KF5/MessageList/AggregationConfigButton include/KF5/MessageList/Enums include/KF5/MessageList/MessageListUtil include/KF5/MessageList/Pane include/KF5/MessageList/QuickSearchLine include/KF5/MessageList/StorageModel include/KF5/MessageList/StorageModelBase include/KF5/MessageList/ThemeComboBox include/KF5/MessageList/ThemeConfigButton include/KF5/MessageList/View include/KF5/MessageList/WidgetBase include/KF5/MessageViewer/AttachmentStrategy include/KF5/MessageViewer/BlockMailTrackingUrlInterceptor include/KF5/MessageViewer/BodyPartURLHandler include/KF5/MessageViewer/BufferedHtmlWriter include/KF5/MessageViewer/CSSHelper include/KF5/MessageViewer/CSSHelperBase include/KF5/MessageViewer/ConfigureWidget +include/KF5/MessageViewer/DKIMCheckPolicy +include/KF5/MessageViewer/DKIMCheckSignatureJob +include/KF5/MessageViewer/DKIMHeaderParser +include/KF5/MessageViewer/DKIMInfo +include/KF5/MessageViewer/DKIMKeyRecord +include/KF5/MessageViewer/DKIMManager +include/KF5/MessageViewer/DKIMManagerKey +include/KF5/MessageViewer/DKIMManagerKeyDialog +include/KF5/MessageViewer/DKIMManagerKeyWidget +include/KF5/MessageViewer/DKIMManagerRules +include/KF5/MessageViewer/DKIMRule +include/KF5/MessageViewer/DKIMWidgetInfo include/KF5/MessageViewer/EditorWatcher include/KF5/MessageViewer/FileHtmlWriter include/KF5/MessageViewer/GrantleeHeaderStyle include/KF5/MessageViewer/GrantleeHeaderTestStyle include/KF5/MessageViewer/HeaderStrategy include/KF5/MessageViewer/HeaderStyle include/KF5/MessageViewer/HeaderStyleInterface include/KF5/MessageViewer/HeaderStyleMenuManager include/KF5/MessageViewer/HeaderStylePlugin include/KF5/MessageViewer/HeaderStylePluginManager include/KF5/MessageViewer/HeaderStyle_Util include/KF5/MessageViewer/HtmlBlock include/KF5/MessageViewer/HtmlWriter include/KF5/MessageViewer/IconNameCache include/KF5/MessageViewer/InvitationSettings include/KF5/MessageViewer/KXFace include/KF5/MessageViewer/MailWebEnginePage include/KF5/MessageViewer/MailWebEngineView include/KF5/MessageViewer/MarkMessageReadHandler include/KF5/MessageViewer/MessagePartRenderPlugin include/KF5/MessageViewer/MessagePartRendererBase include/KF5/MessageViewer/MessagePartRendererManager include/KF5/MessageViewer/MessageViewerConfigureSettingsPlugin include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KF5/MessageViewer/MessageViewerSettings include/KF5/MessageViewer/MessageViewerUtil include/KF5/MessageViewer/MimeType include/KF5/MessageViewer/ObjectTreeEmptySource include/KF5/MessageViewer/PlainHeaderStyle include/KF5/MessageViewer/PrintingSettings include/KF5/MessageViewer/RichHeaderStrategy include/KF5/MessageViewer/ScamCheckShortUrl include/KF5/MessageViewer/ScamCheckShortUrlManager include/KF5/MessageViewer/ScamExpandUrlJob include/KF5/MessageViewer/SpamHeaderAnalyzer include/KF5/MessageViewer/Stl_Util include/KF5/MessageViewer/URLHandler include/KF5/MessageViewer/Viewer include/KF5/MessageViewer/ViewerPlugin include/KF5/MessageViewer/ViewerPluginInterface include/KF5/MessageViewer/ViewerPluginManager include/KF5/MessageViewer/ViewerPluginToolManager include/KF5/MimeTreeParser/AttachmentTemporaryFilesDirs include/KF5/MimeTreeParser/BodyPart include/KF5/MimeTreeParser/BodyPartFormatter include/KF5/MimeTreeParser/BodyPartFormatterFactory include/KF5/MimeTreeParser/Enums include/KF5/MimeTreeParser/MessagePart include/KF5/MimeTreeParser/NodeHelper include/KF5/MimeTreeParser/ObjectTreeParser include/KF5/MimeTreeParser/ObjectTreeSource include/KF5/MimeTreeParser/PartMetaData include/KF5/MimeTreeParser/PartNodeBodyPart include/KF5/MimeTreeParser/SimpleObjectTreeSource include/KF5/MimeTreeParser/Util include/KF5/TemplateParser/CustomTemplates include/KF5/TemplateParser/CustomTemplatesMenu include/KF5/TemplateParser/DefaultTemplates include/KF5/TemplateParser/TemplateConvertCommandJob include/KF5/TemplateParser/TemplateParserEmailAddressRequesterBase include/KF5/TemplateParser/TemplateParserExtractHtmlInfoResult include/KF5/TemplateParser/TemplateParserJob include/KF5/TemplateParser/TemplatesCommandMenu include/KF5/TemplateParser/TemplatesConfiguration include/KF5/TemplateParser/TemplatesInsertCommandAction include/KF5/TemplateParser/TemplatesInsertCommandPushButton include/KF5/TemplateParser/TemplatesTextEdit include/KF5/TemplateParser/TemplatesUtil include/KF5/WebEngineViewer/CheckPhishingUrlCache include/KF5/WebEngineViewer/CheckPhishingUrlJob include/KF5/WebEngineViewer/CheckPhishingUrlUtil include/KF5/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KF5/WebEngineViewer/FindBarBase include/KF5/WebEngineViewer/FindBarWebEngineView include/KF5/WebEngineViewer/HashCacheManager include/KF5/WebEngineViewer/InterceptorManager include/KF5/WebEngineViewer/LocalDataBaseManager include/KF5/WebEngineViewer/NetworkPluginUrlInterceptor include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KF5/WebEngineViewer/NetworkUrlInterceptor include/KF5/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KF5/WebEngineViewer/SearchFullHashJob include/KF5/WebEngineViewer/UpdateDataBaseInfo include/KF5/WebEngineViewer/WebEngineAccessKey include/KF5/WebEngineViewer/WebEngineExportHtmlPageJob include/KF5/WebEngineViewer/WebEngineManageScript include/KF5/WebEngineViewer/WebEnginePage include/KF5/WebEngineViewer/WebEngineScript include/KF5/WebEngineViewer/WebEngineView include/KF5/WebEngineViewer/WebHitTest include/KF5/WebEngineViewer/WebHitTestResult include/KF5/WebEngineViewer/ZoomActionMenu include/KF5/messagecomposer/abstractencryptjob.h include/KF5/messagecomposer/akonadisender.h include/KF5/messagecomposer/aliasesexpandjob.h include/KF5/messagecomposer/attachmentclipboardjob.h include/KF5/messagecomposer/attachmentcontrollerbase.h include/KF5/messagecomposer/attachmentfrompublickeyjob.h include/KF5/messagecomposer/attachmentjob.h include/KF5/messagecomposer/attachmentmodel.h include/KF5/messagecomposer/attachmentvcardfromaddressbookjob.h include/KF5/messagecomposer/composer.h +include/KF5/messagecomposer/composerattachmentinterface.h include/KF5/messagecomposer/composerlineedit.h include/KF5/messagecomposer/composerviewbase.h +include/KF5/messagecomposer/composerviewinterface.h include/KF5/messagecomposer/contentjobbase.h +include/KF5/messagecomposer/convertsnippetvariablemenu.h +include/KF5/messagecomposer/convertsnippetvariablesjob.h +include/KF5/messagecomposer/convertsnippetvariablesutil.h include/KF5/messagecomposer/encryptjob.h include/KF5/messagecomposer/followupremindercreatejob.h include/KF5/messagecomposer/followupreminderselectdatedialog.h include/KF5/messagecomposer/globalpart.h include/KF5/messagecomposer/imagescalingwidget.h include/KF5/messagecomposer/infopart.h include/KF5/messagecomposer/inserttextfilejob.h include/KF5/messagecomposer/jobbase.h include/KF5/messagecomposer/kleo_util.h include/KF5/messagecomposer/maintextjob.h include/KF5/messagecomposer/messagecomposer_debug.h include/KF5/messagecomposer/messagecomposer_export.h include/KF5/messagecomposer/messagecomposersettings.h include/KF5/messagecomposer/messagecomposersettings_base.h include/KF5/messagecomposer/messagefactoryng.h include/KF5/messagecomposer/messagehelper.h include/KF5/messagecomposer/messagepart.h include/KF5/messagecomposer/messagesender.h include/KF5/messagecomposer/multipartjob.h include/KF5/messagecomposer/pluginactiontype.h +include/KF5/messagecomposer/plugincomposerinterface.h include/KF5/messagecomposer/plugineditor.h include/KF5/messagecomposer/plugineditorcheckbeforesend.h include/KF5/messagecomposer/plugineditorcheckbeforesendconfigurewidget.h include/KF5/messagecomposer/plugineditorcheckbeforesendinterface.h include/KF5/messagecomposer/plugineditorcheckbeforesendmanager.h include/KF5/messagecomposer/plugineditorcheckbeforesendparams.h include/KF5/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KF5/messagecomposer/plugineditorconverterinitialdata.h include/KF5/messagecomposer/plugineditorconverttext.h include/KF5/messagecomposer/plugineditorconverttextconfigurewidget.h include/KF5/messagecomposer/plugineditorconverttextinterface.h include/KF5/messagecomposer/plugineditorconverttextmanager.h include/KF5/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KF5/messagecomposer/plugineditorgrammarmanager.h include/KF5/messagecomposer/plugineditorinit.h include/KF5/messagecomposer/plugineditorinitconfigurewidget.h include/KF5/messagecomposer/plugineditorinitinterface.h include/KF5/messagecomposer/plugineditorinitmanager.h include/KF5/messagecomposer/plugineditorinterface.h include/KF5/messagecomposer/plugineditormanager.h include/KF5/messagecomposer/recipient.h include/KF5/messagecomposer/recipientline.h include/KF5/messagecomposer/recipientseditor.h include/KF5/messagecomposer/richtextcomposerng.h include/KF5/messagecomposer/richtextcomposersignatures.h include/KF5/messagecomposer/signaturecontroller.h include/KF5/messagecomposer/signjob.h include/KF5/messagecomposer/singlepartjob.h include/KF5/messagecomposer/skeletonmessagejob.h +include/KF5/messagecomposer/statusbarlabeltoggledstate.h include/KF5/messagecomposer/textpart.h include/KF5/messagecomposer/transparentjob.h include/KF5/messagecomposer/util.h include/KF5/messagecomposer_version.h include/KF5/messagecore/attachmentcompressjob.h include/KF5/messagecore/attachmentfromurlbasejob.h include/KF5/messagecore/attachmentfromurlutils.h include/KF5/messagecore/attachmentloadjob.h include/KF5/messagecore/attachmentpart.h include/KF5/messagecore/attachmentpropertiesdialog.h include/KF5/messagecore/attachmentupdatejob.h include/KF5/messagecore/globalsettings_messagecore.h include/KF5/messagecore/imagecollector.h include/KF5/messagecore/mailinglist.h include/KF5/messagecore/messagecore_export.h include/KF5/messagecore/messagecoresettings.h include/KF5/messagecore/messagecoreutil.h include/KF5/messagecore/nodehelper.h include/KF5/messagecore/stringutil.h include/KF5/messagecore_version.h include/KF5/messagelist/aggregationcombobox.h include/KF5/messagelist/aggregationconfigbutton.h include/KF5/messagelist/enums.h include/KF5/messagelist/messagelist_export.h include/KF5/messagelist/messagelistsettings.h include/KF5/messagelist/messagelistutil.h include/KF5/messagelist/pane.h include/KF5/messagelist/quicksearchline.h include/KF5/messagelist/storagemodel.h include/KF5/messagelist/storagemodelbase.h include/KF5/messagelist/themecombobox.h include/KF5/messagelist/themeconfigbutton.h include/KF5/messagelist/view.h include/KF5/messagelist/widgetbase.h include/KF5/messagelist_version.h include/KF5/messageviewer/attachmentstrategy.h include/KF5/messageviewer/blockmailtrackingurlinterceptor.h include/KF5/messageviewer/bodyparturlhandler.h include/KF5/messageviewer/bufferedhtmlwriter.h include/KF5/messageviewer/config-messageviewer.h include/KF5/messageviewer/configurewidget.h include/KF5/messageviewer/csshelper.h include/KF5/messageviewer/csshelperbase.h +include/KF5/messageviewer/dkimcheckpolicy.h +include/KF5/messageviewer/dkimchecksignaturejob.h +include/KF5/messageviewer/dkimheaderparser.h +include/KF5/messageviewer/dkiminfo.h +include/KF5/messageviewer/dkimkeyrecord.h +include/KF5/messageviewer/dkimmanager.h +include/KF5/messageviewer/dkimmanagerkey.h +include/KF5/messageviewer/dkimmanagerkeydialog.h +include/KF5/messageviewer/dkimmanagerkeywidget.h +include/KF5/messageviewer/dkimmanagerrules.h +include/KF5/messageviewer/dkimrule.h +include/KF5/messageviewer/dkimwidgetinfo.h include/KF5/messageviewer/editorwatcher.h include/KF5/messageviewer/filehtmlwriter.h include/KF5/messageviewer/globalsettings_messageviewer.h include/KF5/messageviewer/grantleeheaderstyle.h include/KF5/messageviewer/grantleeheaderteststyle.h include/KF5/messageviewer/headerstrategy.h include/KF5/messageviewer/headerstyle.h include/KF5/messageviewer/headerstyle_util.h include/KF5/messageviewer/headerstyleinterface.h include/KF5/messageviewer/headerstylemenumanager.h include/KF5/messageviewer/headerstyleplugin.h include/KF5/messageviewer/headerstylepluginmanager.h include/KF5/messageviewer/htmlblock.h include/KF5/messageviewer/htmlwriter.h include/KF5/messageviewer/iconnamecache.h include/KF5/messageviewer/invitationsettings.h include/KF5/messageviewer/kxface.h include/KF5/messageviewer/mailwebenginepage.h include/KF5/messageviewer/mailwebengineview.h include/KF5/messageviewer/markmessagereadhandler.h include/KF5/messageviewer/messagepartrendererbase.h include/KF5/messageviewer/messagepartrenderermanager.h include/KF5/messageviewer/messagepartrenderplugin.h include/KF5/messageviewer/messageviewer_debug.h include/KF5/messageviewer/messageviewer_export.h include/KF5/messageviewer/messageviewerconfiguresettingsplugin.h include/KF5/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KF5/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KF5/messageviewer/messageviewersettings.h include/KF5/messageviewer/messageviewerutil.h include/KF5/messageviewer/mimetype.h include/KF5/messageviewer/objecttreeemptysource.h include/KF5/messageviewer/plainheaderstyle.h include/KF5/messageviewer/printingsettings.h include/KF5/messageviewer/richheaderstrategy.h include/KF5/messageviewer/scamcheckshorturl.h include/KF5/messageviewer/scamcheckshorturlmanager.h include/KF5/messageviewer/scamexpandurljob.h include/KF5/messageviewer/spamheaderanalyzer.h include/KF5/messageviewer/stl_util.h include/KF5/messageviewer/urlhandler.h include/KF5/messageviewer/viewer.h include/KF5/messageviewer/viewerplugin.h include/KF5/messageviewer/viewerplugininterface.h include/KF5/messageviewer/viewerpluginmanager.h include/KF5/messageviewer/viewerplugintoolmanager.h include/KF5/messageviewer_version.h include/KF5/mimetreeparser/attachmenttemporaryfilesdirs.h include/KF5/mimetreeparser/bodypart.h include/KF5/mimetreeparser/bodypartformatter.h include/KF5/mimetreeparser/bodypartformatterfactory.h include/KF5/mimetreeparser/enums.h include/KF5/mimetreeparser/messagepart.h include/KF5/mimetreeparser/mimetreeparser_export.h include/KF5/mimetreeparser/nodehelper.h include/KF5/mimetreeparser/objecttreeparser.h include/KF5/mimetreeparser/objecttreesource.h include/KF5/mimetreeparser/partmetadata.h include/KF5/mimetreeparser/partnodebodypart.h include/KF5/mimetreeparser/simpleobjecttreesource.h include/KF5/mimetreeparser/util.h include/KF5/mimetreeparser_version.h include/KF5/templateparser/customtemplates.h include/KF5/templateparser/customtemplates_kfg.h include/KF5/templateparser/customtemplatesmenu.h include/KF5/templateparser/defaulttemplates.h include/KF5/templateparser/globalsettings_templateparser.h include/KF5/templateparser/templateconvertcommandjob.h include/KF5/templateparser/templateparser_export.h include/KF5/templateparser/templateparseremailaddressrequesterbase.h include/KF5/templateparser/templateparserextracthtmlinforesult.h include/KF5/templateparser/templateparserjob.h include/KF5/templateparser/templatescommandmenu.h include/KF5/templateparser/templatesconfiguration.h include/KF5/templateparser/templatesconfiguration_kfg.h include/KF5/templateparser/templatesinsertcommandaction.h include/KF5/templateparser/templatesinsertcommandpushbutton.h include/KF5/templateparser/templatestextedit.h include/KF5/templateparser/templatesutil.h include/KF5/templateparser/ui_templatesconfiguration_base.h include/KF5/templateparser_version.h include/KF5/webengineviewer/checkphishingurlcache.h include/KF5/webengineviewer/checkphishingurljob.h include/KF5/webengineviewer/checkphishingurlutil.h include/KF5/webengineviewer/createphishingurldatabasejob.h include/KF5/webengineviewer/findbarbase.h include/KF5/webengineviewer/findbarwebengineview.h include/KF5/webengineviewer/hashcachemanager.h include/KF5/webengineviewer/interceptormanager.h include/KF5/webengineviewer/localdatabasemanager.h include/KF5/webengineviewer/networkpluginurlinterceptor.h include/KF5/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KF5/webengineviewer/networkpluginurlinterceptorinterface.h include/KF5/webengineviewer/networkurlinterceptor.h include/KF5/webengineviewer/networkurlinterceptorpluginmanager.h include/KF5/webengineviewer/searchfullhashjob.h include/KF5/webengineviewer/updatedatabaseinfo.h include/KF5/webengineviewer/webengineaccesskey.h include/KF5/webengineviewer/webengineexporthtmlpagejob.h include/KF5/webengineviewer/webenginemanagescript.h include/KF5/webengineviewer/webenginepage.h include/KF5/webengineviewer/webenginescript.h include/KF5/webengineviewer/webengineview.h include/KF5/webengineviewer/webengineviewer_export.h include/KF5/webengineviewer/webhittest.h include/KF5/webengineviewer/webhittestresult.h include/KF5/webengineviewer/zoomactionmenu.h include/KF5/webengineviewer_version.h lib/cmake/KF5MessageComposer/KF5MessageComposerConfig.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerConfigVersion.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfig.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfigVersion.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets.cmake lib/cmake/KF5MessageList/KF5MessageListConfig.cmake lib/cmake/KF5MessageList/KF5MessageListConfigVersion.cmake lib/cmake/KF5MessageList/KF5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageList/KF5MessageListTargets.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfig.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfigVersion.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfig.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfigVersion.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfig.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfigVersion.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfig.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfigVersion.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets.cmake lib/libKF5MessageComposer.so lib/libKF5MessageComposer.so.5 lib/libKF5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageCore.so lib/libKF5MessageCore.so.5 lib/libKF5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageList.so lib/libKF5MessageList.so.5 lib/libKF5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageViewer.so lib/libKF5MessageViewer.so.5 lib/libKF5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MimeTreeParser.so lib/libKF5MimeTreeParser.so.5 lib/libKF5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5TemplateParser.so lib/libKF5TemplateParser.so.5 lib/libKF5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5WebEngineViewer.so lib/libKF5WebEngineViewer.so.5 lib/libKF5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_MimeTreeParser.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/kconf_update/messageviewer.upd share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo share/locale/ia/LC_MESSAGES/libmessagecomposer.mo share/locale/ia/LC_MESSAGES/libmessagecore.mo share/locale/ia/LC_MESSAGES/libmessagelist.mo share/locale/ia/LC_MESSAGES/libmessageviewer.mo share/locale/ia/LC_MESSAGES/libmimetreeparser.mo share/locale/ia/LC_MESSAGES/libtemplateparser.mo share/locale/is/LC_MESSAGES/libmessagelist.mo share/locale/is/LC_MESSAGES/libmessageviewer.mo share/locale/is/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libmessagecomposer.mo share/locale/it/LC_MESSAGES/libmessagecore.mo share/locale/it/LC_MESSAGES/libmessagelist.mo share/locale/it/LC_MESSAGES/libmessageviewer.mo share/locale/it/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libtemplateparser.mo share/locale/it/LC_MESSAGES/libwebengineviewer.mo share/locale/ja/LC_MESSAGES/libmessagecomposer.mo share/locale/ja/LC_MESSAGES/libmessagecore.mo share/locale/ja/LC_MESSAGES/libmessagelist.mo share/locale/ja/LC_MESSAGES/libmessageviewer.mo share/locale/ja/LC_MESSAGES/libmimetreeparser.mo share/locale/ja/LC_MESSAGES/libtemplateparser.mo share/locale/ja/LC_MESSAGES/libwebengineviewer.mo share/locale/kk/LC_MESSAGES/libmessagecomposer.mo share/locale/kk/LC_MESSAGES/libmessagecore.mo share/locale/kk/LC_MESSAGES/libmessagelist.mo share/locale/kk/LC_MESSAGES/libmessageviewer.mo share/locale/kk/LC_MESSAGES/libmimetreeparser.mo share/locale/kk/LC_MESSAGES/libtemplateparser.mo share/locale/km/LC_MESSAGES/libmessagecore.mo share/locale/km/LC_MESSAGES/libmessagelist.mo share/locale/km/LC_MESSAGES/libmessageviewer.mo share/locale/km/LC_MESSAGES/libmimetreeparser.mo share/locale/km/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libmessagecomposer.mo share/locale/ko/LC_MESSAGES/libmessagecore.mo share/locale/ko/LC_MESSAGES/libmessagelist.mo share/locale/ko/LC_MESSAGES/libmessageviewer.mo share/locale/ko/LC_MESSAGES/libmimetreeparser.mo share/locale/ko/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libwebengineviewer.mo share/locale/lt/LC_MESSAGES/libmessagecomposer.mo share/locale/lt/LC_MESSAGES/libmessagecore.mo share/locale/lt/LC_MESSAGES/libmessagelist.mo share/locale/lt/LC_MESSAGES/libmessageviewer.mo share/locale/lt/LC_MESSAGES/libmimetreeparser.mo share/locale/lt/LC_MESSAGES/libtemplateparser.mo share/locale/lt/LC_MESSAGES/libwebengineviewer.mo share/locale/lv/LC_MESSAGES/libmessagecore.mo share/locale/lv/LC_MESSAGES/libmessagelist.mo share/locale/lv/LC_MESSAGES/libmessageviewer.mo share/locale/lv/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libmessagecomposer.mo share/locale/mr/LC_MESSAGES/libmessagecore.mo share/locale/mr/LC_MESSAGES/libmessagelist.mo share/locale/mr/LC_MESSAGES/libmessageviewer.mo share/locale/mr/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libtemplateparser.mo share/locale/nb/LC_MESSAGES/libmessagecomposer.mo share/locale/nb/LC_MESSAGES/libmessagecore.mo share/locale/nb/LC_MESSAGES/libmessagelist.mo share/locale/nb/LC_MESSAGES/libmessageviewer.mo share/locale/nb/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libtemplateparser.mo share/locale/nds/LC_MESSAGES/libmessagecomposer.mo share/locale/nds/LC_MESSAGES/libmessagecore.mo share/locale/nds/LC_MESSAGES/libmessagelist.mo share/locale/nds/LC_MESSAGES/libmessageviewer.mo share/locale/nds/LC_MESSAGES/libmimetreeparser.mo share/locale/nds/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libmessagecomposer.mo share/locale/nl/LC_MESSAGES/libmessagecore.mo share/locale/nl/LC_MESSAGES/libmessagelist.mo share/locale/nl/LC_MESSAGES/libmessageviewer.mo share/locale/nl/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libwebengineviewer.mo share/locale/nn/LC_MESSAGES/libmessagecomposer.mo share/locale/nn/LC_MESSAGES/libmessagecore.mo share/locale/nn/LC_MESSAGES/libmessagelist.mo share/locale/nn/LC_MESSAGES/libmessageviewer.mo share/locale/nn/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libmessagecomposer.mo share/locale/pa/LC_MESSAGES/libmessagecore.mo share/locale/pa/LC_MESSAGES/libmessagelist.mo share/locale/pa/LC_MESSAGES/libmessageviewer.mo share/locale/pa/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libmessagecomposer.mo share/locale/pl/LC_MESSAGES/libmessagecore.mo share/locale/pl/LC_MESSAGES/libmessagelist.mo share/locale/pl/LC_MESSAGES/libmessageviewer.mo share/locale/pl/LC_MESSAGES/libmimetreeparser.mo share/locale/pl/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libwebengineviewer.mo share/locale/pt/LC_MESSAGES/libmessagecomposer.mo share/locale/pt/LC_MESSAGES/libmessagecore.mo share/locale/pt/LC_MESSAGES/libmessagelist.mo share/locale/pt/LC_MESSAGES/libmessageviewer.mo share/locale/pt/LC_MESSAGES/libmimetreeparser.mo share/locale/pt/LC_MESSAGES/libtemplateparser.mo share/locale/pt/LC_MESSAGES/libwebengineviewer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer.mo share/locale/ro/LC_MESSAGES/libmessagecomposer.mo share/locale/ro/LC_MESSAGES/libmessagecore.mo share/locale/ro/LC_MESSAGES/libmessagelist.mo share/locale/ro/LC_MESSAGES/libmessageviewer.mo share/locale/ro/LC_MESSAGES/libmimetreeparser.mo share/locale/ro/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libmessagecomposer.mo share/locale/ru/LC_MESSAGES/libmessagecore.mo share/locale/ru/LC_MESSAGES/libmessagelist.mo share/locale/ru/LC_MESSAGES/libmessageviewer.mo share/locale/ru/LC_MESSAGES/libmimetreeparser.mo share/locale/ru/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libwebengineviewer.mo share/locale/sk/LC_MESSAGES/libmessagecomposer.mo share/locale/sk/LC_MESSAGES/libmessagecore.mo share/locale/sk/LC_MESSAGES/libmessagelist.mo share/locale/sk/LC_MESSAGES/libmessageviewer.mo share/locale/sk/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libtemplateparser.mo share/locale/sk/LC_MESSAGES/libwebengineviewer.mo share/locale/sl/LC_MESSAGES/libmessagecomposer.mo share/locale/sl/LC_MESSAGES/libmessagecore.mo share/locale/sl/LC_MESSAGES/libmessagelist.mo share/locale/sl/LC_MESSAGES/libmessageviewer.mo share/locale/sl/LC_MESSAGES/libmimetreeparser.mo share/locale/sl/LC_MESSAGES/libtemplateparser.mo share/locale/sl/LC_MESSAGES/libwebengineviewer.mo share/locale/sr/LC_MESSAGES/libmessagecomposer.mo share/locale/sr/LC_MESSAGES/libmessagecore.mo share/locale/sr/LC_MESSAGES/libmessagelist.mo share/locale/sr/LC_MESSAGES/libmessageviewer.mo share/locale/sr/LC_MESSAGES/libmimetreeparser.mo share/locale/sr/LC_MESSAGES/libtemplateparser.mo share/locale/sr/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/tr/LC_MESSAGES/libmessagecomposer.mo share/locale/tr/LC_MESSAGES/libmessagecore.mo share/locale/tr/LC_MESSAGES/libmessagelist.mo share/locale/tr/LC_MESSAGES/libmessageviewer.mo share/locale/tr/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libtemplateparser.mo share/locale/tr/LC_MESSAGES/libwebengineviewer.mo share/locale/ug/LC_MESSAGES/libmessagecomposer.mo share/locale/ug/LC_MESSAGES/libmessagecore.mo share/locale/ug/LC_MESSAGES/libmessagelist.mo share/locale/ug/LC_MESSAGES/libmessageviewer.mo share/locale/ug/LC_MESSAGES/libmimetreeparser.mo share/locale/ug/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libmessagecomposer.mo share/locale/uk/LC_MESSAGES/libmessagecore.mo share/locale/uk/LC_MESSAGES/libmessagelist.mo share/locale/uk/LC_MESSAGES/libmessageviewer.mo share/locale/uk/LC_MESSAGES/libmimetreeparser.mo share/locale/uk/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libwebengineviewer.mo share/locale/wa/LC_MESSAGES/libmessagelist.mo share/locale/wa/LC_MESSAGES/libmessageviewer.mo share/locale/wa/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/background.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml +share/qlogging-categories5/messagelib.categories +share/qlogging-categories5/messagelib.renamecategories Index: head/net/pimcommon/Makefile =================================================================== --- head/net/pimcommon/Makefile (revision 519954) +++ head/net/pimcommon/Makefile (revision 519955) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= pimcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons ecm emoticons i18n init iconthemes itemmodels \ jobwidgets kdelibs4support kio newstuff service sonnet textwidgets \ wallet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts contacts imap libkdepim mime \ pimtextedit purpose USE_QT= concurrent core dbus designer gui network printsupport script testlib \ uiplugin uitools webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 519954) +++ head/net/pimcommon/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931015 -SHA256 (KDE/applications/19.08.3/pimcommon-19.08.3.tar.xz) = 76a67c28db71e1187fa192f0e1a07279c690dea313a2a376b2d21b82ab0784ca -SIZE (KDE/applications/19.08.3/pimcommon-19.08.3.tar.xz) = 293596 +TIMESTAMP = 1575623499 +SHA256 (KDE/applications/19.12.0/pimcommon-19.12.0.tar.xz) = c6805618f431d4e8e7c3f1d49f7ad2d1bb84426a4fbfb4d8af7c27b70ef1eb4f +SIZE (KDE/applications/19.12.0/pimcommon-19.12.0.tar.xz) = 294760 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 519954) +++ head/net/zeroconf-ioslave/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931016 -SHA256 (KDE/applications/19.08.3/zeroconf-ioslave-19.08.3.tar.xz) = b7b00edcc987c298e1dc885e3ceb6acbcbfe40141423d90406a3ccecef2471ed -SIZE (KDE/applications/19.08.3/zeroconf-ioslave-19.08.3.tar.xz) = 39100 +TIMESTAMP = 1575623503 +SHA256 (KDE/applications/19.12.0/zeroconf-ioslave-19.12.0.tar.xz) = 0dc179173337d7ec5f074956520e12ff969e16d18125a5bc700f4c153a0c9130 +SIZE (KDE/applications/19.12.0/zeroconf-ioslave-19.12.0.tar.xz) = 41840 Index: head/net/zeroconf-ioslave/pkg-plist =================================================================== --- head/net/zeroconf-ioslave/pkg-plist (revision 519954) +++ head/net/zeroconf-ioslave/pkg-plist (revision 519955) @@ -1,57 +1,58 @@ %%QT_PLUGINDIR%%/kded_dnssdwatcher.so %%QT_PLUGINDIR%%/kf5/kio/zeroconf.so share/dbus-1/interfaces/org.kde.kdnssd.xml share/kservices5/kded/dnssdwatcher.desktop share/locale/ar/LC_MESSAGES/kio5_zeroconf.mo share/locale/bg/LC_MESSAGES/kio5_zeroconf.mo share/locale/bs/LC_MESSAGES/kio5_zeroconf.mo share/locale/ca/LC_MESSAGES/kio5_zeroconf.mo share/locale/ca@valencia/LC_MESSAGES/kio5_zeroconf.mo share/locale/cs/LC_MESSAGES/kio5_zeroconf.mo share/locale/da/LC_MESSAGES/kio5_zeroconf.mo share/locale/de/LC_MESSAGES/kio5_zeroconf.mo share/locale/el/LC_MESSAGES/kio5_zeroconf.mo share/locale/en_GB/LC_MESSAGES/kio5_zeroconf.mo share/locale/eo/LC_MESSAGES/kio5_zeroconf.mo share/locale/es/LC_MESSAGES/kio5_zeroconf.mo share/locale/et/LC_MESSAGES/kio5_zeroconf.mo share/locale/eu/LC_MESSAGES/kio5_zeroconf.mo share/locale/fa/LC_MESSAGES/kio5_zeroconf.mo share/locale/fi/LC_MESSAGES/kio5_zeroconf.mo share/locale/fr/LC_MESSAGES/kio5_zeroconf.mo share/locale/ga/LC_MESSAGES/kio5_zeroconf.mo share/locale/gl/LC_MESSAGES/kio5_zeroconf.mo share/locale/hi/LC_MESSAGES/kio5_zeroconf.mo share/locale/hr/LC_MESSAGES/kio5_zeroconf.mo share/locale/hu/LC_MESSAGES/kio5_zeroconf.mo share/locale/ia/LC_MESSAGES/kio5_zeroconf.mo share/locale/is/LC_MESSAGES/kio5_zeroconf.mo share/locale/it/LC_MESSAGES/kio5_zeroconf.mo share/locale/ja/LC_MESSAGES/kio5_zeroconf.mo share/locale/kk/LC_MESSAGES/kio5_zeroconf.mo share/locale/km/LC_MESSAGES/kio5_zeroconf.mo share/locale/ko/LC_MESSAGES/kio5_zeroconf.mo share/locale/lt/LC_MESSAGES/kio5_zeroconf.mo share/locale/lv/LC_MESSAGES/kio5_zeroconf.mo share/locale/ml/LC_MESSAGES/kio5_zeroconf.mo share/locale/mr/LC_MESSAGES/kio5_zeroconf.mo share/locale/nb/LC_MESSAGES/kio5_zeroconf.mo share/locale/nds/LC_MESSAGES/kio5_zeroconf.mo share/locale/nl/LC_MESSAGES/kio5_zeroconf.mo share/locale/nn/LC_MESSAGES/kio5_zeroconf.mo share/locale/pa/LC_MESSAGES/kio5_zeroconf.mo share/locale/pl/LC_MESSAGES/kio5_zeroconf.mo share/locale/pt/LC_MESSAGES/kio5_zeroconf.mo share/locale/pt_BR/LC_MESSAGES/kio5_zeroconf.mo share/locale/ro/LC_MESSAGES/kio5_zeroconf.mo share/locale/ru/LC_MESSAGES/kio5_zeroconf.mo share/locale/sk/LC_MESSAGES/kio5_zeroconf.mo share/locale/sl/LC_MESSAGES/kio5_zeroconf.mo share/locale/sr/LC_MESSAGES/kio5_zeroconf.mo share/locale/sv/LC_MESSAGES/kio5_zeroconf.mo share/locale/tr/LC_MESSAGES/kio5_zeroconf.mo share/locale/ug/LC_MESSAGES/kio5_zeroconf.mo share/locale/uk/LC_MESSAGES/kio5_zeroconf.mo share/locale/zh_CN/LC_MESSAGES/kio5_zeroconf.mo share/locale/zh_TW/LC_MESSAGES/kio5_zeroconf.mo +share/metainfo/org.kde.zeroconf-ioslave.metainfo.xml share/remoteview/zeroconf.desktop Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 519954) +++ head/net-im/kaccounts-integration/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930958 -SHA256 (KDE/applications/19.08.3/kaccounts-integration-19.08.3.tar.xz) = 9106718c3ac8beeb11dc8a8d2ad53c7cc4a364ab6246ca9a24ea05dfe7415723 -SIZE (KDE/applications/19.08.3/kaccounts-integration-19.08.3.tar.xz) = 71924 +TIMESTAMP = 1575623471 +SHA256 (KDE/applications/19.12.0/kaccounts-integration-19.12.0.tar.xz) = 638629989b6c1b033c0e2d02b32c3c31b1322402405e4577fb61fd2518547414 +SIZE (KDE/applications/19.12.0/kaccounts-integration-19.12.0.tar.xz) = 66496 Index: head/net-im/kaccounts-integration/pkg-plist =================================================================== --- head/net-im/kaccounts-integration/pkg-plist (revision 519954) +++ head/net-im/kaccounts-integration/pkg-plist (revision 519955) @@ -1,60 +1,65 @@ include/KAccounts/Core include/KAccounts/GetCredentialsJob include/KAccounts/KAccountsDPlugin include/KAccounts/KAccountsUiPlugin include/KAccounts/core.h include/KAccounts/getcredentialsjob.h include/KAccounts/kaccounts_export.h include/KAccounts/kaccounts_version.h include/KAccounts/kaccountsdplugin.h include/KAccounts/kaccountsuiplugin.h lib/cmake/KAccounts/FindAccountsFileDir.cmake lib/cmake/KAccounts/KAccountsConfig.cmake lib/cmake/KAccounts/KAccountsConfigVersion.cmake lib/cmake/KAccounts/KAccountsMacros.cmake lib/cmake/KAccounts/KAccountsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KAccounts/KAccountsTargets.cmake lib/libkaccounts.so lib/libkaccounts.so.1 lib/libkaccounts.so.%%KDE_APPLICATIONS_VERSION%% -%%QT_PLUGINDIR%%/kcm_kaccounts.so +%%QT_PLUGINDIR%%/kcms/kcm_kaccounts.so %%QT_PLUGINDIR%%/kf5/kded/accounts.so %%QT_QMLDIR%%/org/kde/kaccounts/libkaccountsdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kaccounts/qmldir +share/kpackage/kcms/kcm_kaccounts/contents/ui/Accounts.qml +share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableAccounts.qml +share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableServices.qml +share/kpackage/kcms/kcm_kaccounts/metadata.desktop +share/kpackage/kcms/kcm_kaccounts/metadata.json share/kservices5/kcm_kaccounts.desktop share/locale/ar/LC_MESSAGES/kaccounts-integration.mo share/locale/bs/LC_MESSAGES/kaccounts-integration.mo share/locale/ca/LC_MESSAGES/kaccounts-integration.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-integration.mo share/locale/cs/LC_MESSAGES/kaccounts-integration.mo share/locale/da/LC_MESSAGES/kaccounts-integration.mo share/locale/de/LC_MESSAGES/kaccounts-integration.mo share/locale/el/LC_MESSAGES/kaccounts-integration.mo share/locale/en_GB/LC_MESSAGES/kaccounts-integration.mo share/locale/es/LC_MESSAGES/kaccounts-integration.mo share/locale/et/LC_MESSAGES/kaccounts-integration.mo share/locale/eu/LC_MESSAGES/kaccounts-integration.mo share/locale/fi/LC_MESSAGES/kaccounts-integration.mo share/locale/fr/LC_MESSAGES/kaccounts-integration.mo share/locale/gl/LC_MESSAGES/kaccounts-integration.mo share/locale/ia/LC_MESSAGES/kaccounts-integration.mo share/locale/it/LC_MESSAGES/kaccounts-integration.mo share/locale/ja/LC_MESSAGES/kaccounts-integration.mo share/locale/ko/LC_MESSAGES/kaccounts-integration.mo share/locale/lt/LC_MESSAGES/kaccounts-integration.mo share/locale/nl/LC_MESSAGES/kaccounts-integration.mo share/locale/nn/LC_MESSAGES/kaccounts-integration.mo share/locale/pa/LC_MESSAGES/kaccounts-integration.mo share/locale/pl/LC_MESSAGES/kaccounts-integration.mo share/locale/pt/LC_MESSAGES/kaccounts-integration.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-integration.mo share/locale/ro/LC_MESSAGES/kaccounts-integration.mo share/locale/ru/LC_MESSAGES/kaccounts-integration.mo share/locale/sk/LC_MESSAGES/kaccounts-integration.mo share/locale/sl/LC_MESSAGES/kaccounts-integration.mo share/locale/sr/LC_MESSAGES/kaccounts-integration.mo share/locale/sv/LC_MESSAGES/kaccounts-integration.mo share/locale/tr/LC_MESSAGES/kaccounts-integration.mo share/locale/uk/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-integration.mo Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 519954) +++ head/net-im/kaccounts-providers/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930959 -SHA256 (KDE/applications/19.08.3/kaccounts-providers-19.08.3.tar.xz) = 55093c9ab5e001f126e86e1dbf55209c5f6365d9aad392cf506eab6a95d59a23 -SIZE (KDE/applications/19.08.3/kaccounts-providers-19.08.3.tar.xz) = 32104 +TIMESTAMP = 1575623470 +SHA256 (KDE/applications/19.12.0/kaccounts-providers-19.12.0.tar.xz) = 6c8b6c4cadd73fbce110d2ab586ec0163134af8389871e5d4417c9005d33b1b4 +SIZE (KDE/applications/19.12.0/kaccounts-providers-19.12.0.tar.xz) = 32180 Index: head/net-im/kaccounts-providers/pkg-plist =================================================================== --- head/net-im/kaccounts-providers/pkg-plist (revision 519954) +++ head/net-im/kaccounts-providers/pkg-plist (revision 519955) @@ -1,49 +1,48 @@ etc/signon-ui/webkit-options.d/accounts.google.com.conf etc/signon-ui/webkit-options.d/api.twitter.com.conf etc/signon-ui/webkit-options.d/identi.ca.conf etc/signon-ui/webkit-options.d/www.facebook.com.conf %%QT_PLUGINDIR%%/kaccounts/ui/owncloud_plugin_kaccounts.so share/accounts/providers/kde/google.provider share/accounts/providers/kde/owncloud.provider -share/accounts/providers/kde/twitter.provider share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/BasicInfo.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/Services.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/main.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.desktop share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.json share/locale/ar/LC_MESSAGES/kaccounts-providers.mo share/locale/bs/LC_MESSAGES/kaccounts-providers.mo share/locale/ca/LC_MESSAGES/kaccounts-providers.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-providers.mo share/locale/cs/LC_MESSAGES/kaccounts-providers.mo share/locale/da/LC_MESSAGES/kaccounts-providers.mo share/locale/de/LC_MESSAGES/kaccounts-providers.mo share/locale/el/LC_MESSAGES/kaccounts-providers.mo share/locale/en_GB/LC_MESSAGES/kaccounts-providers.mo share/locale/es/LC_MESSAGES/kaccounts-providers.mo share/locale/et/LC_MESSAGES/kaccounts-providers.mo share/locale/eu/LC_MESSAGES/kaccounts-providers.mo share/locale/fi/LC_MESSAGES/kaccounts-providers.mo share/locale/fr/LC_MESSAGES/kaccounts-providers.mo share/locale/gl/LC_MESSAGES/kaccounts-providers.mo share/locale/ia/LC_MESSAGES/kaccounts-providers.mo share/locale/it/LC_MESSAGES/kaccounts-providers.mo share/locale/ja/LC_MESSAGES/kaccounts-providers.mo share/locale/ko/LC_MESSAGES/kaccounts-providers.mo share/locale/lt/LC_MESSAGES/kaccounts-providers.mo share/locale/nl/LC_MESSAGES/kaccounts-providers.mo share/locale/nn/LC_MESSAGES/kaccounts-providers.mo share/locale/pl/LC_MESSAGES/kaccounts-providers.mo share/locale/pt/LC_MESSAGES/kaccounts-providers.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-providers.mo share/locale/ro/LC_MESSAGES/kaccounts-providers.mo share/locale/ru/LC_MESSAGES/kaccounts-providers.mo share/locale/sk/LC_MESSAGES/kaccounts-providers.mo share/locale/sl/LC_MESSAGES/kaccounts-providers.mo share/locale/sr/LC_MESSAGES/kaccounts-providers.mo share/locale/sv/LC_MESSAGES/kaccounts-providers.mo share/locale/tr/LC_MESSAGES/kaccounts-providers.mo share/locale/uk/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-providers.mo share/metainfo/org.kde.kaccounts.owncloud.appdata.xml Index: head/net-im/kopete/Makefile =================================================================== --- head/net-im/kopete/Makefile (revision 519954) +++ head/net-im/kopete/Makefile (revision 519955) @@ -1,38 +1,37 @@ # $FreeBSD$ PORTNAME= kopete PORTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE multi-protocol instant messenger BUILD_DEPENDS= v4l_compat>0:multimedia/v4l_compat LIB_DEPENDS= libidn.so:dns/libidn \ libjasper.so:graphics/jasper \ libotr.so:security/libotr \ libqca-qt5.so:devel/qca \ libv4l2.so:multimedia/libv4l USES= cmake compiler:c++11-lang desktop-file-utils gnome jpeg kde:5 \ qt:5 shebangfix tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd ecm emoticons guiaddons i18n \ iconthemes itemviews jobwidgets js kcmutils kdelibs4support \ khtml kio notifications notifyconfig parts service solid sonnet \ texteditor textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui # KDE PIM components USE_KDE+= contacts identitymanagement libkleo pimtextedit USE_QT= concurrent core dbus gui network phonon4 printsupport sql widgets xml \ buildtools_build qmake_build SHEBANG_FILES= protocols/winpopup/winpopup-install \ protocols/winpopup/winpopup-send \ kopete/kconf_update/*.pl OPTIONS_DEFINE= DOCS .include Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 519954) +++ head/net-im/kopete/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930980 -SHA256 (KDE/applications/19.08.3/kopete-19.08.3.tar.xz) = d4e407516754cdf66f447e4439f41080586af2ec30c07bd1c88712b089f21221 -SIZE (KDE/applications/19.08.3/kopete-19.08.3.tar.xz) = 9367624 +TIMESTAMP = 1575623473 +SHA256 (KDE/applications/19.12.0/kopete-19.12.0.tar.xz) = b5093b75cc6da0df874246fe36a1c220088bf353c924bbc9bb02ab97acc8daa5 +SIZE (KDE/applications/19.12.0/kopete-19.12.0.tar.xz) = 9386240 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 519954) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930981 -SHA256 (KDE/applications/19.08.3/ktp-accounts-kcm-19.08.3.tar.xz) = 79d2af8b3863d2f4fda51c0bc04b696648d297f2af33e09237b0eed9dd24509f -SIZE (KDE/applications/19.08.3/ktp-accounts-kcm-19.08.3.tar.xz) = 265200 +TIMESTAMP = 1575623469 +SHA256 (KDE/applications/19.12.0/ktp-accounts-kcm-19.12.0.tar.xz) = 2a46fbf876bba864de7a6926f3acc110b9476ff09bbae9918df9af856d2e1dc9 +SIZE (KDE/applications/19.12.0/ktp-accounts-kcm-19.12.0.tar.xz) = 263776 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 519954) +++ head/net-im/ktp-approver/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930982 -SHA256 (KDE/applications/19.08.3/ktp-approver-19.08.3.tar.xz) = 6051059761a1fe05ad696846a20752707ed6c9ce164aa551e86e3a5ddca4a65f -SIZE (KDE/applications/19.08.3/ktp-approver-19.08.3.tar.xz) = 37296 +TIMESTAMP = 1575623479 +SHA256 (KDE/applications/19.12.0/ktp-approver-19.12.0.tar.xz) = fcf278806b2b72c4afca42847e0441d46b1e53a2058f621a7539b63f8a433edf +SIZE (KDE/applications/19.12.0/ktp-approver-19.12.0.tar.xz) = 37424 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 519954) +++ head/net-im/ktp-auth-handler/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930982 -SHA256 (KDE/applications/19.08.3/ktp-auth-handler-19.08.3.tar.xz) = 6275ea746a28857cc77cc031a75a5f2278cf85dd1ef3c04e47006c4316975659 -SIZE (KDE/applications/19.08.3/ktp-auth-handler-19.08.3.tar.xz) = 46416 +TIMESTAMP = 1575623482 +SHA256 (KDE/applications/19.12.0/ktp-auth-handler-19.12.0.tar.xz) = b4d6a24bd0ebb75b1b490ffa7efac76aea5a0fc5ad1783b43a95a1dc0b338919 +SIZE (KDE/applications/19.12.0/ktp-auth-handler-19.12.0.tar.xz) = 46420 Index: head/net-im/ktp-call-ui/Makefile =================================================================== --- head/net-im/ktp-call-ui/Makefile (revision 519954) +++ head/net-im/ktp-call-ui/Makefile (revision 519955) @@ -1,37 +1,36 @@ # $FreeBSD$ PORTNAME= ktp-call-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Voice/Video Call UI for Telepathy LICENSE= GPLv2+ LGPL21+ LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_LGPL21+ = ${WRKSRC}/COPYING.LIB LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals \ libQt5GStreamer-1.0.so:multimedia/gstreamer1-qt \ libboost_thread.so:devel/boost-libs \ libfarstream-0.2.so:net-im/farstream \ libtelepathy-farstream.so:net-im/telepathy-farstream \ libtelepathy-glib.so:net-im/telepathy-glib \ libtelepathy-qt5-farstream.so:net-im/telepathy-qt USES= cmake compiler:c++11-lang gettext gnome kde:5 pkgconfig \ python:2.7 qt:5 tar:xz USE_GNOME= glib20 USE_GSTREAMER1= yes USE_KDE= auth codecs config configwidgets coreaddons ecm iconthemes \ i18n kcmutils kdeclarative notifications package service \ wallet widgetsaddons xmlgui USE_QT= core dbus declarative gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 519954) +++ head/net-im/ktp-call-ui/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930983 -SHA256 (KDE/applications/19.08.3/ktp-call-ui-19.08.3.tar.xz) = 9245d11a28c2022ec98de6368d03ba8d9a53d8364d4f87efb142a0f843eea67d -SIZE (KDE/applications/19.08.3/ktp-call-ui-19.08.3.tar.xz) = 97260 +TIMESTAMP = 1575623474 +SHA256 (KDE/applications/19.12.0/ktp-call-ui-19.12.0.tar.xz) = c3e1206aaedcbd341e04cf29eaaf8547b83f5d8e6320f90de9b4001e5dac671c +SIZE (KDE/applications/19.12.0/ktp-call-ui-19.12.0.tar.xz) = 97320 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 519954) +++ head/net-im/ktp-common-internals/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930984 -SHA256 (KDE/applications/19.08.3/ktp-common-internals-19.08.3.tar.xz) = 7ec6466ebaa0f4acb7e38707b013989ef0a7d50bad5520d1a53fcf17b5ef5670 -SIZE (KDE/applications/19.08.3/ktp-common-internals-19.08.3.tar.xz) = 445792 +TIMESTAMP = 1575623481 +SHA256 (KDE/applications/19.12.0/ktp-common-internals-19.12.0.tar.xz) = 26b49336bca848f82254077f025f4e11f6742bcbe6d97a4503bcd5971631d245 +SIZE (KDE/applications/19.12.0/ktp-common-internals-19.12.0.tar.xz) = 444260 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 519954) +++ head/net-im/ktp-contact-list/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930985 -SHA256 (KDE/applications/19.08.3/ktp-contact-list-19.08.3.tar.xz) = 508085b52fff2e542ea28acb853f1cb3fcdf99d1f72ed99bc42991784fb2efd6 -SIZE (KDE/applications/19.08.3/ktp-contact-list-19.08.3.tar.xz) = 149412 +TIMESTAMP = 1575623476 +SHA256 (KDE/applications/19.12.0/ktp-contact-list-19.12.0.tar.xz) = 41fc7f6a1c850de557c31c07bf25d4dd81904f10bbf9faa03ec76d326574c09f +SIZE (KDE/applications/19.12.0/ktp-contact-list-19.12.0.tar.xz) = 149476 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 519954) +++ head/net-im/ktp-contact-runner/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930985 -SHA256 (KDE/applications/19.08.3/ktp-contact-runner-19.08.3.tar.xz) = fe343560b80a4d9734f0160c8257fffe762801364e5dcbb9cf82edd6ded5683c -SIZE (KDE/applications/19.08.3/ktp-contact-runner-19.08.3.tar.xz) = 42896 +TIMESTAMP = 1575623477 +SHA256 (KDE/applications/19.12.0/ktp-contact-runner-19.12.0.tar.xz) = ad506d279651e81990e935af0a0ee27ec81d43406cb9df0ec39c8594871e2384 +SIZE (KDE/applications/19.12.0/ktp-contact-runner-19.12.0.tar.xz) = 43136 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 519954) +++ head/net-im/ktp-desktop-applets/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930986 -SHA256 (KDE/applications/19.08.3/ktp-desktop-applets-19.08.3.tar.xz) = 318b6a8f40cbbd7a82a1ed55788f8832133ee8d5685182783a4c00e1b2e6fa2a -SIZE (KDE/applications/19.08.3/ktp-desktop-applets-19.08.3.tar.xz) = 43576 +TIMESTAMP = 1575623485 +SHA256 (KDE/applications/19.12.0/ktp-desktop-applets-19.12.0.tar.xz) = 61da10da15f87cf1373e572640e014853f6e267cb1fc90c97c571a15ed4beb80 +SIZE (KDE/applications/19.12.0/ktp-desktop-applets-19.12.0.tar.xz) = 43588 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 519954) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930987 -SHA256 (KDE/applications/19.08.3/ktp-filetransfer-handler-19.08.3.tar.xz) = cdc90313da9a238197b69d0ebc11d8e4c6ce617063acbf2864d966aff6df1e94 -SIZE (KDE/applications/19.08.3/ktp-filetransfer-handler-19.08.3.tar.xz) = 46320 +TIMESTAMP = 1575623475 +SHA256 (KDE/applications/19.12.0/ktp-filetransfer-handler-19.12.0.tar.xz) = 2c7621a66f7c76ec0f956815d62498fbb81db9156ac4ac9f863029f4d449f67d +SIZE (KDE/applications/19.12.0/ktp-filetransfer-handler-19.12.0.tar.xz) = 46260 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 519954) +++ head/net-im/ktp-kded-module/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930988 -SHA256 (KDE/applications/19.08.3/ktp-kded-module-19.08.3.tar.xz) = c16d46035874460f98c4f59e04d50e197c1c70ae9b441dfeb53dd4b319e96d15 -SIZE (KDE/applications/19.08.3/ktp-kded-module-19.08.3.tar.xz) = 97024 +TIMESTAMP = 1575623480 +SHA256 (KDE/applications/19.12.0/ktp-kded-module-19.12.0.tar.xz) = bb717714e0f775b2483c39724867f369e0b0138c5dd3a1ec72e495c303384b5d +SIZE (KDE/applications/19.12.0/ktp-kded-module-19.12.0.tar.xz) = 97400 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 519954) +++ head/net-im/ktp-send-file/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930988 -SHA256 (KDE/applications/19.08.3/ktp-send-file-19.08.3.tar.xz) = db03d482f7bb101e1655262cd99d46e4a551141b8784bae67162d941fb13644f -SIZE (KDE/applications/19.08.3/ktp-send-file-19.08.3.tar.xz) = 28896 +TIMESTAMP = 1575623478 +SHA256 (KDE/applications/19.12.0/ktp-send-file-19.12.0.tar.xz) = 6059a5c7acb744f5309d2e9d3bf2e4cb78e7df59b2baeaa7c4970584de6654df +SIZE (KDE/applications/19.12.0/ktp-send-file-19.12.0.tar.xz) = 29024 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 519954) +++ head/net-im/ktp-text-ui/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572930989 -SHA256 (KDE/applications/19.08.3/ktp-text-ui-19.08.3.tar.xz) = 6779fad4ae6198ebf2e0759b53a8a0792bfca477df2c1f538bc00d1da281eae8 -SIZE (KDE/applications/19.08.3/ktp-text-ui-19.08.3.tar.xz) = 469764 +TIMESTAMP = 1575623483 +SHA256 (KDE/applications/19.12.0/ktp-text-ui-19.12.0.tar.xz) = 18d87f99a854b01b0dd602df65c969c52298b9b2843da1da24d5ab0766b5dcb2 +SIZE (KDE/applications/19.12.0/ktp-text-ui-19.12.0.tar.xz) = 471572 Index: head/print/print-manager/Makefile =================================================================== --- head/print/print-manager/Makefile (revision 519954) +++ head/print/print-manager/Makefile (revision 519955) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= print-manager DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= print kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Printer manager for KDE LIB_DEPENDS= libcups.so:print/cups USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemviews jobwidgets kcmutils \ kio notifications plasma-framework service widgetsaddons \ windowsystem USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS post-patch: ${REINPLACE_CMD} '/CUPS_DATADIR/s|/usr/share/cups|${LOCALBASE}/share/cups|' \ ${PATCH_WRKSRC}/libkcups/KCupsRequest.cpp .include Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 519954) +++ head/print/print-manager/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931017 -SHA256 (KDE/applications/19.08.3/print-manager-19.08.3.tar.xz) = c6420dfa711fc68a6d681d27521eac3c9f1060e57f048594b43f2941a78320ee -SIZE (KDE/applications/19.08.3/print-manager-19.08.3.tar.xz) = 245476 +TIMESTAMP = 1575623569 +SHA256 (KDE/applications/19.12.0/print-manager-19.12.0.tar.xz) = 166b9eef8eb94b0a9cbf257807c4432bef0489d7e2c401865a3fd028426797a5 +SIZE (KDE/applications/19.12.0/print-manager-19.12.0.tar.xz) = 250916 Index: head/print/print-manager/pkg-plist =================================================================== --- head/print/print-manager/pkg-plist (revision 519954) +++ head/print/print-manager/pkg-plist (revision 519955) @@ -1,117 +1,118 @@ bin/configure-printer bin/kde-add-printer bin/kde-print-queue lib/libkcupslib.so %%QT_PLUGINDIR%%/kcm_printer_manager.so %%QT_PLUGINDIR%%/kded_printmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/libprintmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/org.kde.ConfigurePrinter.desktop share/applications/org.kde.PrintQueue.desktop share/applications/org.kde.kde-add-printer.desktop share/knotifications5/printmanager.notifyrc share/kservices5/kcm_printer_manager.desktop share/kservices5/kded/printmanager.desktop share/kservices5/plasma-applet-org.kde.plasma.printmanager.desktop share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ar/LC_MESSAGES/print-manager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bg/LC_MESSAGES/print-manager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bs/LC_MESSAGES/print-manager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca/LC_MESSAGES/print-manager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca@valencia/LC_MESSAGES/print-manager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/cs/LC_MESSAGES/print-manager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/da/LC_MESSAGES/print-manager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/de/LC_MESSAGES/print-manager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/el/LC_MESSAGES/print-manager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/en_GB/LC_MESSAGES/print-manager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/es/LC_MESSAGES/print-manager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/et/LC_MESSAGES/print-manager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eu/LC_MESSAGES/print-manager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fi/LC_MESSAGES/print-manager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fr/LC_MESSAGES/print-manager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ga/LC_MESSAGES/print-manager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/gl/LC_MESSAGES/print-manager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/print-manager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ia/LC_MESSAGES/print-manager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/id/LC_MESSAGES/print-manager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/it/LC_MESSAGES/print-manager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ja/LC_MESSAGES/print-manager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/kk/LC_MESSAGES/print-manager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/km/LC_MESSAGES/print-manager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ko/LC_MESSAGES/print-manager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lt/LC_MESSAGES/print-manager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/mr/LC_MESSAGES/print-manager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nb/LC_MESSAGES/print-manager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nds/LC_MESSAGES/print-manager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nl/LC_MESSAGES/print-manager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nn/LC_MESSAGES/print-manager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pa/LC_MESSAGES/print-manager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pl/LC_MESSAGES/print-manager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt/LC_MESSAGES/print-manager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt_BR/LC_MESSAGES/print-manager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ro/LC_MESSAGES/print-manager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ru/LC_MESSAGES/print-manager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sk/LC_MESSAGES/print-manager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sl/LC_MESSAGES/print-manager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr/LC_MESSAGES/print-manager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sv/LC_MESSAGES/print-manager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tr/LC_MESSAGES/print-manager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ug/LC_MESSAGES/print-manager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/uk/LC_MESSAGES/print-manager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_CN/LC_MESSAGES/print-manager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_TW/LC_MESSAGES/print-manager.mo share/metainfo/org.kde.plasma.printmanager.appdata.xml +share/metainfo/org.kde.print-manager.metainfo.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PrinterItem.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/StatusView.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/config.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/printmanager.qml share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.json Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 519954) +++ head/science/kalzium/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931038 -SHA256 (KDE/applications/19.08.3/kalzium-19.08.3.tar.xz) = 5dc3423a0f2646b59233f92b6a6e81b4a0bcdb819aa543c83270fe4cc5592933 -SIZE (KDE/applications/19.08.3/kalzium-19.08.3.tar.xz) = 26415448 +TIMESTAMP = 1575623468 +SHA256 (KDE/applications/19.12.0/kalzium-19.12.0.tar.xz) = 0d2a2db4dac5e0ef70b296cf621b42e50322b57500fd8aa7a001a0436ad3de33 +SIZE (KDE/applications/19.12.0/kalzium-19.12.0.tar.xz) = 24587464 Index: head/science/kalzium/pkg-plist =================================================================== --- head/science/kalzium/pkg-plist (revision 519954) +++ head/science/kalzium/pkg-plist (revision 519955) @@ -1,696 +1,693 @@ bin/kalzium etc/xdg/kalzium.knsrc include/libkdeedu/chemicaldataobject.h include/libkdeedu/element.h include/libkdeedu/elementparser.h include/libkdeedu/isotope.h include/libkdeedu/isotopeparser.h include/libkdeedu/libkdeedu_science_export.h include/libkdeedu/moleculeparser.h include/libkdeedu/parser.h include/libkdeedu/psetables.h include/libkdeedu/spectrum.h include/libkdeedu/spectrumparser.h lib/libcompoundviewer.so lib/libcompoundviewer.so.5 lib/libcompoundviewer.so.5.0.0 lib/libscience.so lib/libscience.so.5 lib/libscience.so.5.0.0 man/ca/man1/kalzium.1.gz man/da/man1/kalzium.1.gz man/de/man1/kalzium.1.gz man/es/man1/kalzium.1.gz man/et/man1/kalzium.1.gz man/fr/man1/kalzium.1.gz man/gl/man1/kalzium.1.gz man/it/man1/kalzium.1.gz man/man1/kalzium.1.gz man/nl/man1/kalzium.1.gz man/pl/man1/kalzium.1.gz man/pt/man1/kalzium.1.gz man/pt_BR/man1/kalzium.1.gz man/ru/man1/kalzium.1.gz man/sv/man1/kalzium.1.gz man/uk/man1/kalzium.1.gz share/applications/org.kde.kalzium.desktop share/applications/org.kde.kalzium_cml.desktop share/config.kcfg/kalzium.kcfg share/icons/hicolor/128x128/apps/kalzium.png share/icons/hicolor/16x16/apps/kalzium.png share/icons/hicolor/22x22/apps/kalzium.png share/icons/hicolor/32x32/apps/kalzium.png share/icons/hicolor/48x48/apps/kalzium.png share/icons/hicolor/64x64/apps/kalzium.png share/icons/hicolor/scalable/apps/kalzium.svgz %%DATADIR%%/data/bg.jpg %%DATADIR%%/data/hazardsymbols/hazard_C.png %%DATADIR%%/data/hazardsymbols/hazard_E.png %%DATADIR%%/data/hazardsymbols/hazard_F.png %%DATADIR%%/data/hazardsymbols/hazard_N.png %%DATADIR%%/data/hazardsymbols/hazard_O.png %%DATADIR%%/data/hazardsymbols/hazard_T.png %%DATADIR%%/data/hazardsymbols/hazard_X.png %%DATADIR%%/data/htmlview/abundance.png %%DATADIR%%/data/htmlview/boilingpoint.png %%DATADIR%%/data/htmlview/book.png -%%DATADIR%%/data/htmlview/characteristics.png %%DATADIR%%/data/htmlview/discovery.png %%DATADIR%%/data/htmlview/electronaffinity.png -%%DATADIR%%/data/htmlview/header.png %%DATADIR%%/data/htmlview/icons.svg %%DATADIR%%/data/htmlview/ionization.png %%DATADIR%%/data/htmlview/mass.png %%DATADIR%%/data/htmlview/meltingpoint.png %%DATADIR%%/data/htmlview/radius.png %%DATADIR%%/data/htmlview/structure.png -%%DATADIR%%/data/htmlview/style.css %%DATADIR%%/data/iconsets/school/1.svg %%DATADIR%%/data/iconsets/school/10.svg %%DATADIR%%/data/iconsets/school/100.svg %%DATADIR%%/data/iconsets/school/101.svg %%DATADIR%%/data/iconsets/school/102.svg %%DATADIR%%/data/iconsets/school/103.svg %%DATADIR%%/data/iconsets/school/104.svg %%DATADIR%%/data/iconsets/school/105.svg %%DATADIR%%/data/iconsets/school/106.svg %%DATADIR%%/data/iconsets/school/107.svg %%DATADIR%%/data/iconsets/school/108.svg %%DATADIR%%/data/iconsets/school/109.svg %%DATADIR%%/data/iconsets/school/11.svg %%DATADIR%%/data/iconsets/school/110.svg %%DATADIR%%/data/iconsets/school/111.svg %%DATADIR%%/data/iconsets/school/112.svg %%DATADIR%%/data/iconsets/school/113.svg %%DATADIR%%/data/iconsets/school/114.svg %%DATADIR%%/data/iconsets/school/115.svg %%DATADIR%%/data/iconsets/school/116.svg %%DATADIR%%/data/iconsets/school/117.svg %%DATADIR%%/data/iconsets/school/118.svg %%DATADIR%%/data/iconsets/school/12.svg %%DATADIR%%/data/iconsets/school/13.svg %%DATADIR%%/data/iconsets/school/14.svg %%DATADIR%%/data/iconsets/school/15.svg %%DATADIR%%/data/iconsets/school/16.svg %%DATADIR%%/data/iconsets/school/17.svg %%DATADIR%%/data/iconsets/school/18.svg %%DATADIR%%/data/iconsets/school/19.svg %%DATADIR%%/data/iconsets/school/2.svg %%DATADIR%%/data/iconsets/school/20.svg %%DATADIR%%/data/iconsets/school/21.svg %%DATADIR%%/data/iconsets/school/22.svg %%DATADIR%%/data/iconsets/school/23.svg %%DATADIR%%/data/iconsets/school/24.svg %%DATADIR%%/data/iconsets/school/25.svg %%DATADIR%%/data/iconsets/school/26.svg %%DATADIR%%/data/iconsets/school/27.svg %%DATADIR%%/data/iconsets/school/28.svg %%DATADIR%%/data/iconsets/school/29.svg %%DATADIR%%/data/iconsets/school/3.svg %%DATADIR%%/data/iconsets/school/30.svg %%DATADIR%%/data/iconsets/school/31.svg %%DATADIR%%/data/iconsets/school/32.svg %%DATADIR%%/data/iconsets/school/33.svg %%DATADIR%%/data/iconsets/school/34.svg %%DATADIR%%/data/iconsets/school/35.svg %%DATADIR%%/data/iconsets/school/36.svg %%DATADIR%%/data/iconsets/school/37.svg %%DATADIR%%/data/iconsets/school/38.svg %%DATADIR%%/data/iconsets/school/39.svg %%DATADIR%%/data/iconsets/school/4.svg %%DATADIR%%/data/iconsets/school/40.svg %%DATADIR%%/data/iconsets/school/41.svg %%DATADIR%%/data/iconsets/school/42.svg %%DATADIR%%/data/iconsets/school/43.svg %%DATADIR%%/data/iconsets/school/44.svg %%DATADIR%%/data/iconsets/school/45.svg %%DATADIR%%/data/iconsets/school/46.svg %%DATADIR%%/data/iconsets/school/47.svg %%DATADIR%%/data/iconsets/school/48.svg %%DATADIR%%/data/iconsets/school/49.svg %%DATADIR%%/data/iconsets/school/5.svg %%DATADIR%%/data/iconsets/school/50.svg %%DATADIR%%/data/iconsets/school/51.svg %%DATADIR%%/data/iconsets/school/52.svg %%DATADIR%%/data/iconsets/school/53.svg %%DATADIR%%/data/iconsets/school/54.svg %%DATADIR%%/data/iconsets/school/55.svg %%DATADIR%%/data/iconsets/school/56.svg %%DATADIR%%/data/iconsets/school/57.svg %%DATADIR%%/data/iconsets/school/58.svg %%DATADIR%%/data/iconsets/school/59.svg %%DATADIR%%/data/iconsets/school/6.svg %%DATADIR%%/data/iconsets/school/60.svg %%DATADIR%%/data/iconsets/school/61.svg %%DATADIR%%/data/iconsets/school/62.svg %%DATADIR%%/data/iconsets/school/63.svg %%DATADIR%%/data/iconsets/school/64.svg %%DATADIR%%/data/iconsets/school/65.svg %%DATADIR%%/data/iconsets/school/66.svg %%DATADIR%%/data/iconsets/school/67.svg %%DATADIR%%/data/iconsets/school/68.svg %%DATADIR%%/data/iconsets/school/69.svg %%DATADIR%%/data/iconsets/school/7.svg %%DATADIR%%/data/iconsets/school/70.svg %%DATADIR%%/data/iconsets/school/71.svg %%DATADIR%%/data/iconsets/school/72.svg %%DATADIR%%/data/iconsets/school/73.svg %%DATADIR%%/data/iconsets/school/74.svg %%DATADIR%%/data/iconsets/school/75.svg %%DATADIR%%/data/iconsets/school/76.svg %%DATADIR%%/data/iconsets/school/77.svg %%DATADIR%%/data/iconsets/school/78.svg %%DATADIR%%/data/iconsets/school/79.svg %%DATADIR%%/data/iconsets/school/8.svg %%DATADIR%%/data/iconsets/school/80.svg %%DATADIR%%/data/iconsets/school/81.svg %%DATADIR%%/data/iconsets/school/82.svg %%DATADIR%%/data/iconsets/school/83.svg %%DATADIR%%/data/iconsets/school/84.svg %%DATADIR%%/data/iconsets/school/85.svg %%DATADIR%%/data/iconsets/school/86.svg %%DATADIR%%/data/iconsets/school/87.svg %%DATADIR%%/data/iconsets/school/88.svg %%DATADIR%%/data/iconsets/school/89.svg %%DATADIR%%/data/iconsets/school/9.svg %%DATADIR%%/data/iconsets/school/90.svg %%DATADIR%%/data/iconsets/school/91.svg %%DATADIR%%/data/iconsets/school/92.svg %%DATADIR%%/data/iconsets/school/93.svg %%DATADIR%%/data/iconsets/school/94.svg %%DATADIR%%/data/iconsets/school/95.svg %%DATADIR%%/data/iconsets/school/96.svg %%DATADIR%%/data/iconsets/school/97.svg %%DATADIR%%/data/iconsets/school/98.svg %%DATADIR%%/data/iconsets/school/99.svg %%DATADIR%%/data/iconsets/school/iconinformation.txt %%DATADIR%%/data/knowledge.xml %%DATADIR%%/data/latticeicons/cf.svgz %%DATADIR%%/data/latticeicons/ci.svgz %%DATADIR%%/data/latticeicons/cp.svgz %%DATADIR%%/data/latticeicons/hp.svgz %%DATADIR%%/data/latticeicons/hr.svgz %%DATADIR%%/data/latticeicons/mp.svgz %%DATADIR%%/data/latticeicons/op.svgz %%DATADIR%%/data/latticeicons/tp.svgz %%DATADIR%%/data/maps/de.png %%DATADIR%%/data/maps/dk.png %%DATADIR%%/data/maps/es.png %%DATADIR%%/data/maps/fi.png %%DATADIR%%/data/maps/fr.png %%DATADIR%%/data/maps/it.png %%DATADIR%%/data/maps/ru.png %%DATADIR%%/data/maps/ruus.png %%DATADIR%%/data/maps/se.png %%DATADIR%%/data/maps/uk.png %%DATADIR%%/data/maps/ukfr.png %%DATADIR%%/data/maps/ukse.png %%DATADIR%%/data/maps/us.png %%DATADIR%%/data/molecules/2-aminoethanol.cml %%DATADIR%%/data/molecules/2-thioethanol.cml %%DATADIR%%/data/molecules/2_2_2-trifluoroethanol.cml %%DATADIR%%/data/molecules/but-2-yne-1_4-diol.cml %%DATADIR%%/data/molecules/butane.cml %%DATADIR%%/data/molecules/carbon_dioxide.cml %%DATADIR%%/data/molecules/carbon_monoxide.cml %%DATADIR%%/data/molecules/ethane-1_2-diol.cml %%DATADIR%%/data/molecules/ethane.cml %%DATADIR%%/data/molecules/ethanol.cml %%DATADIR%%/data/molecules/methane.cml %%DATADIR%%/data/molecules/methanol.cml %%DATADIR%%/data/molecules/porphyrin.cml %%DATADIR%%/data/molecules/propan-1-ol.cml %%DATADIR%%/data/molecules/propan-2-ol.cml %%DATADIR%%/data/molecules/propane.cml %%DATADIR%%/data/molecules/thiophene.cml %%DATADIR%%/data/molecules/water.cml %%DATADIR%%/data/toolpics/abzug.jpg %%DATADIR%%/data/toolpics/becherglas.jpg %%DATADIR%%/data/toolpics/brechungsmesser.jpg %%DATADIR%%/data/toolpics/brenner.jpg %%DATADIR%%/data/toolpics/destillierbruecke.jpg %%DATADIR%%/data/toolpics/dsc.jpg %%DATADIR%%/data/toolpics/erlenmeyerkolben.jpg %%DATADIR%%/data/toolpics/exikator.jpg %%DATADIR%%/data/toolpics/halter.jpg %%DATADIR%%/data/toolpics/heizplatte.jpg %%DATADIR%%/data/toolpics/hplc.jpg %%DATADIR%%/data/toolpics/kolbenprober.png %%DATADIR%%/data/toolpics/korkring.jpg %%DATADIR%%/data/toolpics/messzylinder.jpg %%DATADIR%%/data/toolpics/moerser.jpg %%DATADIR%%/data/toolpics/phpapier.jpg %%DATADIR%%/data/toolpics/pileusball.jpg %%DATADIR%%/data/toolpics/pipette.jpg %%DATADIR%%/data/toolpics/rg-halter.jpg %%DATADIR%%/data/toolpics/rg-staender.jpg %%DATADIR%%/data/toolpics/rg.jpg %%DATADIR%%/data/toolpics/rotationsverdampfer.jpg %%DATADIR%%/data/toolpics/rueckflusskuehler.jpg %%DATADIR%%/data/toolpics/ruehrfisch.jpg %%DATADIR%%/data/toolpics/rundkolben.jpg %%DATADIR%%/data/toolpics/scheidetrichter.jpg %%DATADIR%%/data/toolpics/schutzbrille.jpg %%DATADIR%%/data/toolpics/spatel.jpg %%DATADIR%%/data/toolpics/spritzflasche.jpg %%DATADIR%%/data/toolpics/thermometer.jpg %%DATADIR%%/data/toolpics/thermometer2.jpg %%DATADIR%%/data/toolpics/tonschale.jpg %%DATADIR%%/data/toolpics/trichter.jpg %%DATADIR%%/data/toolpics/trockenrohr.jpg %%DATADIR%%/data/toolpics/tropftrichter.jpg %%DATADIR%%/data/toolpics/uhrglas.jpg %%DATADIR%%/data/toolpics/verteiler.jpg %%DATADIR%%/data/toolpics/vollpipette.jpg %%DATADIR%%/data/toolpics/waage.jpg %%DATADIR%%/data/toolpics/wasserstrahlpumpe.jpg %%DATADIR%%/data/tools.xml %%DATADIR%%/icons/hicolor/16x16/actions/calculate.png %%DATADIR%%/icons/hicolor/16x16/actions/chemical.png %%DATADIR%%/icons/hicolor/16x16/actions/elempic.png %%DATADIR%%/icons/hicolor/16x16/actions/energies.png %%DATADIR%%/icons/hicolor/16x16/actions/eqchem.png %%DATADIR%%/icons/hicolor/16x16/actions/glossary.png %%DATADIR%%/icons/hicolor/16x16/actions/isotopemap.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/16x16/actions/legend.png %%DATADIR%%/icons/hicolor/16x16/actions/misc.png %%DATADIR%%/icons/hicolor/16x16/actions/numbers.png %%DATADIR%%/icons/hicolor/16x16/actions/orbits.png %%DATADIR%%/icons/hicolor/16x16/actions/overview.png %%DATADIR%%/icons/hicolor/16x16/actions/plot.png %%DATADIR%%/icons/hicolor/16x16/actions/sidebar.png %%DATADIR%%/icons/hicolor/16x16/actions/spectrum.png %%DATADIR%%/icons/hicolor/16x16/actions/statematter.png %%DATADIR%%/icons/hicolor/16x16/actions/timeline.png %%DATADIR%%/icons/hicolor/16x16/actions/tooltip.png %%DATADIR%%/icons/hicolor/22x22/actions/calculate.png %%DATADIR%%/icons/hicolor/22x22/actions/chemical.png %%DATADIR%%/icons/hicolor/22x22/actions/elempic.png %%DATADIR%%/icons/hicolor/22x22/actions/energies.png %%DATADIR%%/icons/hicolor/22x22/actions/eqchem.png %%DATADIR%%/icons/hicolor/22x22/actions/glossary.png %%DATADIR%%/icons/hicolor/22x22/actions/isotopemap.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/22x22/actions/legend.png %%DATADIR%%/icons/hicolor/22x22/actions/numbers.png %%DATADIR%%/icons/hicolor/22x22/actions/orbits.png %%DATADIR%%/icons/hicolor/22x22/actions/overview.png %%DATADIR%%/icons/hicolor/22x22/actions/plot.png %%DATADIR%%/icons/hicolor/22x22/actions/sidebar.png %%DATADIR%%/icons/hicolor/22x22/actions/spectrum.png %%DATADIR%%/icons/hicolor/22x22/actions/statematter.png %%DATADIR%%/icons/hicolor/22x22/actions/timeline.png %%DATADIR%%/icons/hicolor/22x22/actions/tooltip.png %%DATADIR%%/icons/hicolor/32x32/actions/calculate.png %%DATADIR%%/icons/hicolor/32x32/actions/chemical.png %%DATADIR%%/icons/hicolor/32x32/actions/elempic.png %%DATADIR%%/icons/hicolor/32x32/actions/energies.png %%DATADIR%%/icons/hicolor/32x32/actions/eqchem.png %%DATADIR%%/icons/hicolor/32x32/actions/glossary.png %%DATADIR%%/icons/hicolor/32x32/actions/isotopemap.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/32x32/actions/legend.png %%DATADIR%%/icons/hicolor/32x32/actions/misc.png %%DATADIR%%/icons/hicolor/32x32/actions/numbers.png %%DATADIR%%/icons/hicolor/32x32/actions/orbits.png %%DATADIR%%/icons/hicolor/32x32/actions/overview.png %%DATADIR%%/icons/hicolor/32x32/actions/plot.png %%DATADIR%%/icons/hicolor/32x32/actions/sidebar.png %%DATADIR%%/icons/hicolor/32x32/actions/spectrum.png %%DATADIR%%/icons/hicolor/32x32/actions/statematter.png %%DATADIR%%/icons/hicolor/32x32/actions/timeline.png %%DATADIR%%/icons/hicolor/32x32/actions/tooltip.png %%DATADIR%%/icons/hicolor/48x48/actions/calculate.png %%DATADIR%%/icons/hicolor/48x48/actions/chemical.png %%DATADIR%%/icons/hicolor/48x48/actions/energies.png %%DATADIR%%/icons/hicolor/48x48/actions/eqchem.png %%DATADIR%%/icons/hicolor/48x48/actions/glossary.png %%DATADIR%%/icons/hicolor/48x48/actions/isotopemap.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/48x48/actions/legend.png %%DATADIR%%/icons/hicolor/48x48/actions/misc.png %%DATADIR%%/icons/hicolor/48x48/actions/numbers.png %%DATADIR%%/icons/hicolor/48x48/actions/orbits.png %%DATADIR%%/icons/hicolor/48x48/actions/overview.png %%DATADIR%%/icons/hicolor/48x48/actions/plot.png %%DATADIR%%/icons/hicolor/48x48/actions/sidebar.png %%DATADIR%%/icons/hicolor/48x48/actions/spectrum.png %%DATADIR%%/icons/hicolor/48x48/actions/statematter.png %%DATADIR%%/icons/hicolor/48x48/actions/timeline.png %%DATADIR%%/icons/hicolor/48x48/actions/tooltip.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/64x64/actions/numbers.png %%DATADIR%%/icons/hicolor/scalable/actions/calculate.svgz %%DATADIR%%/icons/hicolor/scalable/actions/chemical.svgz %%DATADIR%%/icons/hicolor/scalable/actions/elempic.svgz %%DATADIR%%/icons/hicolor/scalable/actions/energies.svgz %%DATADIR%%/icons/hicolor/scalable/actions/eqchem.svgz %%DATADIR%%/icons/hicolor/scalable/actions/glossary.svgz %%DATADIR%%/icons/hicolor/scalable/actions/isotopemap.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_molviewer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_rs.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_tables.svgz %%DATADIR%%/icons/hicolor/scalable/actions/misc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/numbers.svgz %%DATADIR%%/icons/hicolor/scalable/actions/orbits.svgz %%DATADIR%%/icons/hicolor/scalable/actions/overview.svgz %%DATADIR%%/icons/hicolor/scalable/actions/plot.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sidebar.svgz %%DATADIR%%/icons/hicolor/scalable/actions/spectrum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/statematter.svgz %%DATADIR%%/icons/hicolor/scalable/actions/timeline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tooltip.svgz share/kxmlgui5/kalzium/kalziumui.rc share/libkdeedu/data/elements.xml share/libkdeedu/data/isotopes.xml share/libkdeedu/data/spectra.xml share/libkdeedu/data/symbols.csv share/libkdeedu/data/symbols2.csv share/locale/ar/LC_MESSAGES/kalzium.mo share/locale/bg/LC_MESSAGES/kalzium.mo share/locale/bg/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/bg/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/bs/LC_MESSAGES/kalzium.mo share/locale/bs/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/bs/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/bs/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ca/LC_MESSAGES/kalzium.mo share/locale/ca/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ca/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ca/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ca@valencia/LC_MESSAGES/kalzium.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/cs/LC_MESSAGES/kalzium.mo share/locale/cs/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/cs/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/cs/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/da/LC_MESSAGES/kalzium.mo share/locale/da/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/da/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/da/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/da/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/da/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/da/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/de/LC_MESSAGES/kalzium.mo share/locale/de/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/de/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/de/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/de/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/de/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/de/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/el/LC_MESSAGES/kalzium.mo share/locale/el/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/el/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/el/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/el/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/el/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/el/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/en_GB/LC_MESSAGES/kalzium.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/eo/LC_MESSAGES/kalzium.mo share/locale/eo/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/eo/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/eo/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/es/LC_MESSAGES/kalzium.mo share/locale/es/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/es/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/es/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/es/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/es/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/es/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/et/LC_MESSAGES/kalzium.mo share/locale/et/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/et/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/et/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/et/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/et/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/et/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/eu/LC_MESSAGES/kalzium.mo share/locale/eu/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/fa/LC_MESSAGES/kalzium.mo share/locale/fi/LC_MESSAGES/kalzium.mo share/locale/fi/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/fi/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/fi/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/fr/LC_MESSAGES/kalzium.mo share/locale/fr/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/fr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/fr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ga/LC_MESSAGES/kalzium.mo share/locale/ga/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ga/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ga/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/gl/LC_MESSAGES/kalzium.mo share/locale/gl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/gl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/gl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/he/LC_MESSAGES/kalzium.mo share/locale/he/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/he/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/hi/LC_MESSAGES/kalzium.mo share/locale/hr/LC_MESSAGES/kalzium.mo share/locale/hr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/hr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/hr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/hu/LC_MESSAGES/kalzium.mo share/locale/hu/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/hu/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/hu/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/is/LC_MESSAGES/kalzium.mo share/locale/it/LC_MESSAGES/kalzium.mo share/locale/it/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/it/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/it/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/it/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/it/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/it/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ja/LC_MESSAGES/kalzium.mo share/locale/ja/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ja/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ja/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/kk/LC_MESSAGES/kalzium.mo share/locale/kk/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/kk/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/kk/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/km/LC_MESSAGES/kalzium.mo share/locale/km/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/km/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ko/LC_MESSAGES/kalzium.mo share/locale/ko/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ko/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ko/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/lt/LC_MESSAGES/kalzium.mo share/locale/lt/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/lt/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/lt/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/lv/LC_MESSAGES/kalzium.mo share/locale/lv/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/lv/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/lv/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ml/LC_MESSAGES/kalzium.mo share/locale/ml/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ml/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ml/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/mr/LC_MESSAGES/kalzium.mo share/locale/mr/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/mr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/mr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nb/LC_MESSAGES/kalzium.mo share/locale/nb/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nb/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nb/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nds/LC_MESSAGES/kalzium.mo share/locale/nds/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nds/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nds/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nl/LC_MESSAGES/kalzium.mo share/locale/nl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nn/LC_MESSAGES/kalzium.mo share/locale/nn/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nn/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nn/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pa/LC_MESSAGES/kalzium.mo share/locale/pa/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pa/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pa/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pl/LC_MESSAGES/kalzium.mo share/locale/pl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pt/LC_MESSAGES/kalzium.mo share/locale/pt/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pt/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pt/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pt_BR/LC_MESSAGES/kalzium.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ro/LC_MESSAGES/kalzium.mo share/locale/ro/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ro/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ro/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ru/LC_MESSAGES/kalzium.mo share/locale/ru/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ru/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ru/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/sk/LC_MESSAGES/kalzium.mo share/locale/sk/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sk/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/sk/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/sl/LC_MESSAGES/kalzium.mo share/locale/sl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/sl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/sv/LC_MESSAGES/kalzium.mo share/locale/sv/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sv/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/sv/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/tr/LC_MESSAGES/kalzium.mo share/locale/tr/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/tr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/tr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ug/LC_MESSAGES/kalzium.mo share/locale/ug/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ug/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ug/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/uk/LC_MESSAGES/kalzium.mo share/locale/uk/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/uk/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/uk/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/zh_CN/LC_MESSAGES/kalzium.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/zh_TW/LC_MESSAGES/kalzium.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_kalzium.mo share/metainfo/org.kde.kalzium.appdata.xml Index: head/science/step/Makefile =================================================================== --- head/science/step/Makefile (revision 519954) +++ head/science/step/Makefile (revision 519955) @@ -1,39 +1,40 @@ # $FreeBSD$ PORTNAME= step DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive physics simulator LIB_DEPENDS= libcln.so:math/cln \ libgsl.so:math/gsl \ libqalculate.so:math/libqalculate USES= cmake compiler:c++11-lang eigen:3 gettext kde:5 \ - pkgconfig qt:5 tar:xz + pkgconfig python:3.5+ qt:5 shebangfix tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio newstuff notifications parts \ plotting service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network opengl printsupport svg \ widgets xml \ buildtools_build qmake_build CXXFLAGS_powerpc64= -Wno-error=return-type CXXFLAGS_powerpc= -Wno-error=return-type CXXFLAGS_powerpcspe= -Wno-error=return-type CXXFLAGS_sparc64= -Wno-error=return-type + +SHEBANG_FILES= step/data/extractxml OPTIONS_DEFINE= DOCS pre-configure: # Avoid building translations, should the user pass # CURRENT_LANG to CMake. ${REINPLACE_CMD} -e '/set(STEP_BUILD_TRANSLATIONS 1)/ d' \ ${WRKSRC}/${PORTNAME}/data/CMakeLists.txt .include Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 519954) +++ head/science/step/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931039 -SHA256 (KDE/applications/19.08.3/step-19.08.3.tar.xz) = 1197b38d9ef14305cf341eba4cd2df08695a9b3f53e2bebff8abb7cbd7a9e2aa -SIZE (KDE/applications/19.08.3/step-19.08.3.tar.xz) = 869880 +TIMESTAMP = 1575623467 +SHA256 (KDE/applications/19.12.0/step-19.12.0.tar.xz) = 7d7fe7d4a47f212576b6db415c74ff0eb26d0c21302376ad42a0bd624efdd24d +SIZE (KDE/applications/19.12.0/step-19.12.0.tar.xz) = 905528 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 519954) +++ head/science/step/pkg-plist (revision 519955) @@ -1,232 +1,690 @@ bin/step etc/xdg/step.knsrc share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo +share/locale/ca/LC_MESSAGES/step_example_files.mo +share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo +share/locale/en_GB/LC_MESSAGES/step_example_files.mo +share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo +share/locale/es/LC_MESSAGES/step_example_files.mo +share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo +share/locale/fr/LC_MESSAGES/step_example_files.mo +share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo +share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo +share/locale/nl/LC_MESSAGES/step_example_files.mo +share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo +share/locale/pt/LC_MESSAGES/step_example_files.mo +share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo +share/locale/pt_BR/LC_MESSAGES/step_example_files.mo +share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo +share/locale/ru/LC_MESSAGES/step_example_files.mo +share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo +share/locale/sk/LC_MESSAGES/step_example_files.mo +share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo +share/locale/uk/LC_MESSAGES/step_example_files.mo +share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo +share/locale/zh_TW/LC_MESSAGES/step_example_files.mo +share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step +%%DATADIR%%/examples/ca/brownian.step +%%DATADIR%%/examples/ca/doublependulum.step +%%DATADIR%%/examples/ca/eightpendula.step +%%DATADIR%%/examples/ca/first.step +%%DATADIR%%/examples/ca/fourpendula.step +%%DATADIR%%/examples/ca/gas.step +%%DATADIR%%/examples/ca/graph.step +%%DATADIR%%/examples/ca/liquid.step +%%DATADIR%%/examples/ca/lissajous.step +%%DATADIR%%/examples/ca/motor.step +%%DATADIR%%/examples/ca/motor1.step +%%DATADIR%%/examples/ca/note.step +%%DATADIR%%/examples/ca/resonance.step +%%DATADIR%%/examples/ca/softbody.step +%%DATADIR%%/examples/ca/solar.step +%%DATADIR%%/examples/ca/springs.step +%%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step +%%DATADIR%%/examples/en_GB/brownian.step +%%DATADIR%%/examples/en_GB/doublependulum.step +%%DATADIR%%/examples/en_GB/eightpendula.step +%%DATADIR%%/examples/en_GB/first.step +%%DATADIR%%/examples/en_GB/fourpendula.step +%%DATADIR%%/examples/en_GB/gas.step +%%DATADIR%%/examples/en_GB/graph.step +%%DATADIR%%/examples/en_GB/liquid.step +%%DATADIR%%/examples/en_GB/lissajous.step +%%DATADIR%%/examples/en_GB/motor.step +%%DATADIR%%/examples/en_GB/motor1.step +%%DATADIR%%/examples/en_GB/note.step +%%DATADIR%%/examples/en_GB/resonance.step +%%DATADIR%%/examples/en_GB/softbody.step +%%DATADIR%%/examples/en_GB/solar.step +%%DATADIR%%/examples/en_GB/springs.step +%%DATADIR%%/examples/en_GB/wave.step +%%DATADIR%%/examples/es/brownian.step +%%DATADIR%%/examples/es/doublependulum.step +%%DATADIR%%/examples/es/eightpendula.step +%%DATADIR%%/examples/es/first.step +%%DATADIR%%/examples/es/fourpendula.step +%%DATADIR%%/examples/es/gas.step +%%DATADIR%%/examples/es/graph.step +%%DATADIR%%/examples/es/liquid.step +%%DATADIR%%/examples/es/lissajous.step +%%DATADIR%%/examples/es/motor.step +%%DATADIR%%/examples/es/motor1.step +%%DATADIR%%/examples/es/note.step +%%DATADIR%%/examples/es/resonance.step +%%DATADIR%%/examples/es/softbody.step +%%DATADIR%%/examples/es/solar.step +%%DATADIR%%/examples/es/springs.step +%%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step +%%DATADIR%%/examples/fr/brownian.step +%%DATADIR%%/examples/fr/doublependulum.step +%%DATADIR%%/examples/fr/eightpendula.step +%%DATADIR%%/examples/fr/first.step +%%DATADIR%%/examples/fr/fourpendula.step +%%DATADIR%%/examples/fr/gas.step +%%DATADIR%%/examples/fr/graph.step +%%DATADIR%%/examples/fr/liquid.step +%%DATADIR%%/examples/fr/lissajous.step +%%DATADIR%%/examples/fr/motor.step +%%DATADIR%%/examples/fr/motor1.step +%%DATADIR%%/examples/fr/note.step +%%DATADIR%%/examples/fr/resonance.step +%%DATADIR%%/examples/fr/softbody.step +%%DATADIR%%/examples/fr/solar.step +%%DATADIR%%/examples/fr/springs.step +%%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step +%%DATADIR%%/examples/nl/brownian.step +%%DATADIR%%/examples/nl/doublependulum.step +%%DATADIR%%/examples/nl/eightpendula.step +%%DATADIR%%/examples/nl/first.step +%%DATADIR%%/examples/nl/fourpendula.step +%%DATADIR%%/examples/nl/gas.step +%%DATADIR%%/examples/nl/graph.step +%%DATADIR%%/examples/nl/liquid.step +%%DATADIR%%/examples/nl/lissajous.step +%%DATADIR%%/examples/nl/motor.step +%%DATADIR%%/examples/nl/motor1.step +%%DATADIR%%/examples/nl/note.step +%%DATADIR%%/examples/nl/resonance.step +%%DATADIR%%/examples/nl/softbody.step +%%DATADIR%%/examples/nl/solar.step +%%DATADIR%%/examples/nl/springs.step +%%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step +%%DATADIR%%/examples/pt/brownian.step +%%DATADIR%%/examples/pt/doublependulum.step +%%DATADIR%%/examples/pt/eightpendula.step +%%DATADIR%%/examples/pt/first.step +%%DATADIR%%/examples/pt/fourpendula.step +%%DATADIR%%/examples/pt/gas.step +%%DATADIR%%/examples/pt/graph.step +%%DATADIR%%/examples/pt/liquid.step +%%DATADIR%%/examples/pt/lissajous.step +%%DATADIR%%/examples/pt/motor.step +%%DATADIR%%/examples/pt/motor1.step +%%DATADIR%%/examples/pt/note.step +%%DATADIR%%/examples/pt/resonance.step +%%DATADIR%%/examples/pt/softbody.step +%%DATADIR%%/examples/pt/solar.step +%%DATADIR%%/examples/pt/springs.step +%%DATADIR%%/examples/pt/wave.step +%%DATADIR%%/examples/pt_BR/brownian.step +%%DATADIR%%/examples/pt_BR/doublependulum.step +%%DATADIR%%/examples/pt_BR/eightpendula.step +%%DATADIR%%/examples/pt_BR/first.step +%%DATADIR%%/examples/pt_BR/fourpendula.step +%%DATADIR%%/examples/pt_BR/gas.step +%%DATADIR%%/examples/pt_BR/graph.step +%%DATADIR%%/examples/pt_BR/liquid.step +%%DATADIR%%/examples/pt_BR/lissajous.step +%%DATADIR%%/examples/pt_BR/motor.step +%%DATADIR%%/examples/pt_BR/motor1.step +%%DATADIR%%/examples/pt_BR/note.step +%%DATADIR%%/examples/pt_BR/resonance.step +%%DATADIR%%/examples/pt_BR/softbody.step +%%DATADIR%%/examples/pt_BR/solar.step +%%DATADIR%%/examples/pt_BR/springs.step +%%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step +%%DATADIR%%/examples/ru/brownian.step +%%DATADIR%%/examples/ru/doublependulum.step +%%DATADIR%%/examples/ru/eightpendula.step +%%DATADIR%%/examples/ru/first.step +%%DATADIR%%/examples/ru/fourpendula.step +%%DATADIR%%/examples/ru/gas.step +%%DATADIR%%/examples/ru/graph.step +%%DATADIR%%/examples/ru/liquid.step +%%DATADIR%%/examples/ru/lissajous.step +%%DATADIR%%/examples/ru/motor.step +%%DATADIR%%/examples/ru/motor1.step +%%DATADIR%%/examples/ru/note.step +%%DATADIR%%/examples/ru/resonance.step +%%DATADIR%%/examples/ru/softbody.step +%%DATADIR%%/examples/ru/solar.step +%%DATADIR%%/examples/ru/springs.step +%%DATADIR%%/examples/ru/wave.step +%%DATADIR%%/examples/sk/brownian.step +%%DATADIR%%/examples/sk/doublependulum.step +%%DATADIR%%/examples/sk/eightpendula.step +%%DATADIR%%/examples/sk/first.step +%%DATADIR%%/examples/sk/fourpendula.step +%%DATADIR%%/examples/sk/gas.step +%%DATADIR%%/examples/sk/graph.step +%%DATADIR%%/examples/sk/liquid.step +%%DATADIR%%/examples/sk/lissajous.step +%%DATADIR%%/examples/sk/motor.step +%%DATADIR%%/examples/sk/motor1.step +%%DATADIR%%/examples/sk/note.step +%%DATADIR%%/examples/sk/resonance.step +%%DATADIR%%/examples/sk/softbody.step +%%DATADIR%%/examples/sk/solar.step +%%DATADIR%%/examples/sk/springs.step +%%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step +%%DATADIR%%/examples/uk/brownian.step +%%DATADIR%%/examples/uk/doublependulum.step +%%DATADIR%%/examples/uk/eightpendula.step +%%DATADIR%%/examples/uk/first.step +%%DATADIR%%/examples/uk/fourpendula.step +%%DATADIR%%/examples/uk/gas.step +%%DATADIR%%/examples/uk/graph.step +%%DATADIR%%/examples/uk/liquid.step +%%DATADIR%%/examples/uk/lissajous.step +%%DATADIR%%/examples/uk/motor.step +%%DATADIR%%/examples/uk/motor1.step +%%DATADIR%%/examples/uk/note.step +%%DATADIR%%/examples/uk/resonance.step +%%DATADIR%%/examples/uk/softbody.step +%%DATADIR%%/examples/uk/solar.step +%%DATADIR%%/examples/uk/springs.step +%%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step -%%DATADIR%%/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/LinearMotor.html -%%DATADIR%%/objinfo/Meter.html -%%DATADIR%%/objinfo/Note.html -%%DATADIR%%/objinfo/Particle.html -%%DATADIR%%/objinfo/Pin.html -%%DATADIR%%/objinfo/Polygon.html -%%DATADIR%%/objinfo/Spring.html -%%DATADIR%%/objinfo/WeightForce.html -%%DATADIR%%/objinfo/World.html +%%DATADIR%%/examples/zh_TW/brownian.step +%%DATADIR%%/examples/zh_TW/doublependulum.step +%%DATADIR%%/examples/zh_TW/eightpendula.step +%%DATADIR%%/examples/zh_TW/first.step +%%DATADIR%%/examples/zh_TW/fourpendula.step +%%DATADIR%%/examples/zh_TW/gas.step +%%DATADIR%%/examples/zh_TW/graph.step +%%DATADIR%%/examples/zh_TW/liquid.step +%%DATADIR%%/examples/zh_TW/lissajous.step +%%DATADIR%%/examples/zh_TW/motor.step +%%DATADIR%%/examples/zh_TW/motor1.step +%%DATADIR%%/examples/zh_TW/note.step +%%DATADIR%%/examples/zh_TW/resonance.step +%%DATADIR%%/examples/zh_TW/softbody.step +%%DATADIR%%/examples/zh_TW/solar.step +%%DATADIR%%/examples/zh_TW/springs.step +%%DATADIR%%/examples/zh_TW/wave.step +%%DATADIR%%/objinfo/anchor.html +%%DATADIR%%/objinfo/box.html +%%DATADIR%%/objinfo/chargedparticle.html +%%DATADIR%%/objinfo/coulombforce.html +%%DATADIR%%/objinfo/disk.html +%%DATADIR%%/objinfo/gas.html +%%DATADIR%%/objinfo/gasljforce.html +%%DATADIR%%/objinfo/gasparticle.html +%%DATADIR%%/objinfo/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ca/anchor.html +%%DATADIR%%/objinfo/l10n/ca/box.html +%%DATADIR%%/objinfo/l10n/ca/chargedparticle.html +%%DATADIR%%/objinfo/l10n/ca/coulombforce.html +%%DATADIR%%/objinfo/l10n/ca/disk.html +%%DATADIR%%/objinfo/l10n/ca/gas.html +%%DATADIR%%/objinfo/l10n/ca/gasljforce.html +%%DATADIR%%/objinfo/l10n/ca/gasparticle.html +%%DATADIR%%/objinfo/l10n/ca/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ca/linearmotor.html +%%DATADIR%%/objinfo/l10n/ca/meter.html +%%DATADIR%%/objinfo/l10n/ca/note.html +%%DATADIR%%/objinfo/l10n/ca/particle.html +%%DATADIR%%/objinfo/l10n/ca/pin.html +%%DATADIR%%/objinfo/l10n/ca/polygon.html +%%DATADIR%%/objinfo/l10n/ca/softbody.html +%%DATADIR%%/objinfo/l10n/ca/spring.html +%%DATADIR%%/objinfo/l10n/ca/weightforce.html +%%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/de/Anchor.html %%DATADIR%%/objinfo/l10n/de/Box.html %%DATADIR%%/objinfo/l10n/de/ChargedParticle.html %%DATADIR%%/objinfo/l10n/de/CoulombForce.html %%DATADIR%%/objinfo/l10n/de/Disk.html %%DATADIR%%/objinfo/l10n/de/Gas.html %%DATADIR%%/objinfo/l10n/de/GasLJForce.html %%DATADIR%%/objinfo/l10n/de/GasParticle.html %%DATADIR%%/objinfo/l10n/de/GravitationForce.html %%DATADIR%%/objinfo/l10n/de/LinearMotor.html %%DATADIR%%/objinfo/l10n/de/Meter.html %%DATADIR%%/objinfo/l10n/de/Note.html %%DATADIR%%/objinfo/l10n/de/Particle.html %%DATADIR%%/objinfo/l10n/de/Pin.html %%DATADIR%%/objinfo/l10n/de/Polygon.html %%DATADIR%%/objinfo/l10n/de/Spring.html %%DATADIR%%/objinfo/l10n/de/WeightForce.html %%DATADIR%%/objinfo/l10n/de/World.html +%%DATADIR%%/objinfo/l10n/en_GB/anchor.html +%%DATADIR%%/objinfo/l10n/en_GB/box.html +%%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html +%%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html +%%DATADIR%%/objinfo/l10n/en_GB/disk.html +%%DATADIR%%/objinfo/l10n/en_GB/gas.html +%%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html +%%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html +%%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html +%%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html +%%DATADIR%%/objinfo/l10n/en_GB/meter.html +%%DATADIR%%/objinfo/l10n/en_GB/note.html +%%DATADIR%%/objinfo/l10n/en_GB/particle.html +%%DATADIR%%/objinfo/l10n/en_GB/pin.html +%%DATADIR%%/objinfo/l10n/en_GB/polygon.html +%%DATADIR%%/objinfo/l10n/en_GB/softbody.html +%%DATADIR%%/objinfo/l10n/en_GB/spring.html +%%DATADIR%%/objinfo/l10n/en_GB/weightforce.html +%%DATADIR%%/objinfo/l10n/en_GB/world.html +%%DATADIR%%/objinfo/l10n/es/anchor.html +%%DATADIR%%/objinfo/l10n/es/box.html +%%DATADIR%%/objinfo/l10n/es/chargedparticle.html +%%DATADIR%%/objinfo/l10n/es/coulombforce.html +%%DATADIR%%/objinfo/l10n/es/disk.html +%%DATADIR%%/objinfo/l10n/es/gas.html +%%DATADIR%%/objinfo/l10n/es/gasljforce.html +%%DATADIR%%/objinfo/l10n/es/gasparticle.html +%%DATADIR%%/objinfo/l10n/es/gravitationforce.html +%%DATADIR%%/objinfo/l10n/es/linearmotor.html +%%DATADIR%%/objinfo/l10n/es/meter.html +%%DATADIR%%/objinfo/l10n/es/note.html +%%DATADIR%%/objinfo/l10n/es/particle.html +%%DATADIR%%/objinfo/l10n/es/pin.html +%%DATADIR%%/objinfo/l10n/es/polygon.html +%%DATADIR%%/objinfo/l10n/es/softbody.html +%%DATADIR%%/objinfo/l10n/es/spring.html +%%DATADIR%%/objinfo/l10n/es/weightforce.html +%%DATADIR%%/objinfo/l10n/es/world.html +%%DATADIR%%/objinfo/l10n/fr/anchor.html +%%DATADIR%%/objinfo/l10n/fr/box.html +%%DATADIR%%/objinfo/l10n/fr/chargedparticle.html +%%DATADIR%%/objinfo/l10n/fr/coulombforce.html +%%DATADIR%%/objinfo/l10n/fr/disk.html +%%DATADIR%%/objinfo/l10n/fr/gas.html +%%DATADIR%%/objinfo/l10n/fr/gasljforce.html +%%DATADIR%%/objinfo/l10n/fr/gasparticle.html +%%DATADIR%%/objinfo/l10n/fr/gravitationforce.html +%%DATADIR%%/objinfo/l10n/fr/linearmotor.html +%%DATADIR%%/objinfo/l10n/fr/meter.html +%%DATADIR%%/objinfo/l10n/fr/note.html +%%DATADIR%%/objinfo/l10n/fr/particle.html +%%DATADIR%%/objinfo/l10n/fr/pin.html +%%DATADIR%%/objinfo/l10n/fr/polygon.html +%%DATADIR%%/objinfo/l10n/fr/softbody.html +%%DATADIR%%/objinfo/l10n/fr/spring.html +%%DATADIR%%/objinfo/l10n/fr/weightforce.html +%%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/it/Box.html %%DATADIR%%/objinfo/l10n/it/ChargedParticle.html %%DATADIR%%/objinfo/l10n/it/Disk.html %%DATADIR%%/objinfo/l10n/it/Gas.html %%DATADIR%%/objinfo/l10n/it/GasParticle.html %%DATADIR%%/objinfo/l10n/it/Meter.html %%DATADIR%%/objinfo/l10n/it/Note.html %%DATADIR%%/objinfo/l10n/it/Particle.html %%DATADIR%%/objinfo/l10n/it/Polygon.html %%DATADIR%%/objinfo/l10n/it/Spring.html %%DATADIR%%/objinfo/l10n/it/World.html -%%DATADIR%%/objinfo/l10n/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/Spring.html -%%DATADIR%%/objinfo/l10n/uk/WeightForce.html -%%DATADIR%%/objinfo/l10n/uk/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/Spring.html -%%DATADIR%%/objinfo/l10n/ru/WeightForce.html -%%DATADIR%%/objinfo/l10n/ru/World.html +%%DATADIR%%/objinfo/l10n/it/anchor.html +%%DATADIR%%/objinfo/l10n/it/box.html +%%DATADIR%%/objinfo/l10n/it/chargedparticle.html +%%DATADIR%%/objinfo/l10n/it/coulombforce.html +%%DATADIR%%/objinfo/l10n/it/disk.html +%%DATADIR%%/objinfo/l10n/it/gas.html +%%DATADIR%%/objinfo/l10n/it/gasljforce.html +%%DATADIR%%/objinfo/l10n/it/gasparticle.html +%%DATADIR%%/objinfo/l10n/it/gravitationforce.html +%%DATADIR%%/objinfo/l10n/it/linearmotor.html +%%DATADIR%%/objinfo/l10n/it/meter.html +%%DATADIR%%/objinfo/l10n/it/note.html +%%DATADIR%%/objinfo/l10n/it/particle.html +%%DATADIR%%/objinfo/l10n/it/pin.html +%%DATADIR%%/objinfo/l10n/it/polygon.html +%%DATADIR%%/objinfo/l10n/it/softbody.html +%%DATADIR%%/objinfo/l10n/it/spring.html +%%DATADIR%%/objinfo/l10n/it/weightforce.html +%%DATADIR%%/objinfo/l10n/it/world.html +%%DATADIR%%/objinfo/l10n/nl/anchor.html +%%DATADIR%%/objinfo/l10n/nl/box.html +%%DATADIR%%/objinfo/l10n/nl/chargedparticle.html +%%DATADIR%%/objinfo/l10n/nl/coulombforce.html +%%DATADIR%%/objinfo/l10n/nl/disk.html +%%DATADIR%%/objinfo/l10n/nl/gas.html +%%DATADIR%%/objinfo/l10n/nl/gasljforce.html +%%DATADIR%%/objinfo/l10n/nl/gasparticle.html +%%DATADIR%%/objinfo/l10n/nl/gravitationforce.html +%%DATADIR%%/objinfo/l10n/nl/linearmotor.html +%%DATADIR%%/objinfo/l10n/nl/meter.html +%%DATADIR%%/objinfo/l10n/nl/note.html +%%DATADIR%%/objinfo/l10n/nl/particle.html +%%DATADIR%%/objinfo/l10n/nl/pin.html +%%DATADIR%%/objinfo/l10n/nl/polygon.html +%%DATADIR%%/objinfo/l10n/nl/softbody.html +%%DATADIR%%/objinfo/l10n/nl/spring.html +%%DATADIR%%/objinfo/l10n/nl/weightforce.html +%%DATADIR%%/objinfo/l10n/nl/world.html +%%DATADIR%%/objinfo/l10n/pt/anchor.html +%%DATADIR%%/objinfo/l10n/pt/box.html +%%DATADIR%%/objinfo/l10n/pt/chargedparticle.html +%%DATADIR%%/objinfo/l10n/pt/coulombforce.html +%%DATADIR%%/objinfo/l10n/pt/disk.html +%%DATADIR%%/objinfo/l10n/pt/gas.html +%%DATADIR%%/objinfo/l10n/pt/gasljforce.html +%%DATADIR%%/objinfo/l10n/pt/gasparticle.html +%%DATADIR%%/objinfo/l10n/pt/gravitationforce.html +%%DATADIR%%/objinfo/l10n/pt/linearmotor.html +%%DATADIR%%/objinfo/l10n/pt/meter.html +%%DATADIR%%/objinfo/l10n/pt/note.html +%%DATADIR%%/objinfo/l10n/pt/particle.html +%%DATADIR%%/objinfo/l10n/pt/pin.html +%%DATADIR%%/objinfo/l10n/pt/polygon.html +%%DATADIR%%/objinfo/l10n/pt/softbody.html +%%DATADIR%%/objinfo/l10n/pt/spring.html +%%DATADIR%%/objinfo/l10n/pt/weightforce.html +%%DATADIR%%/objinfo/l10n/pt/world.html +%%DATADIR%%/objinfo/l10n/pt_BR/anchor.html +%%DATADIR%%/objinfo/l10n/pt_BR/box.html +%%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html +%%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html +%%DATADIR%%/objinfo/l10n/pt_BR/disk.html +%%DATADIR%%/objinfo/l10n/pt_BR/gas.html +%%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html +%%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html +%%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html +%%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html +%%DATADIR%%/objinfo/l10n/pt_BR/meter.html +%%DATADIR%%/objinfo/l10n/pt_BR/note.html +%%DATADIR%%/objinfo/l10n/pt_BR/particle.html +%%DATADIR%%/objinfo/l10n/pt_BR/pin.html +%%DATADIR%%/objinfo/l10n/pt_BR/polygon.html +%%DATADIR%%/objinfo/l10n/pt_BR/softbody.html +%%DATADIR%%/objinfo/l10n/pt_BR/spring.html +%%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html +%%DATADIR%%/objinfo/l10n/pt_BR/world.html +%%DATADIR%%/objinfo/l10n/ru/anchor.html +%%DATADIR%%/objinfo/l10n/ru/box.html +%%DATADIR%%/objinfo/l10n/ru/chargedparticle.html +%%DATADIR%%/objinfo/l10n/ru/coulombforce.html +%%DATADIR%%/objinfo/l10n/ru/disk.html +%%DATADIR%%/objinfo/l10n/ru/gas.html +%%DATADIR%%/objinfo/l10n/ru/gasljforce.html +%%DATADIR%%/objinfo/l10n/ru/gasparticle.html +%%DATADIR%%/objinfo/l10n/ru/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ru/linearmotor.html +%%DATADIR%%/objinfo/l10n/ru/meter.html +%%DATADIR%%/objinfo/l10n/ru/note.html +%%DATADIR%%/objinfo/l10n/ru/particle.html +%%DATADIR%%/objinfo/l10n/ru/pin.html +%%DATADIR%%/objinfo/l10n/ru/polygon.html +%%DATADIR%%/objinfo/l10n/ru/softbody.html +%%DATADIR%%/objinfo/l10n/ru/spring.html +%%DATADIR%%/objinfo/l10n/ru/weightforce.html +%%DATADIR%%/objinfo/l10n/ru/world.html +%%DATADIR%%/objinfo/l10n/sk/anchor.html +%%DATADIR%%/objinfo/l10n/sk/box.html +%%DATADIR%%/objinfo/l10n/sk/chargedparticle.html +%%DATADIR%%/objinfo/l10n/sk/coulombforce.html +%%DATADIR%%/objinfo/l10n/sk/disk.html +%%DATADIR%%/objinfo/l10n/sk/gas.html +%%DATADIR%%/objinfo/l10n/sk/gasljforce.html +%%DATADIR%%/objinfo/l10n/sk/gasparticle.html +%%DATADIR%%/objinfo/l10n/sk/gravitationforce.html +%%DATADIR%%/objinfo/l10n/sk/linearmotor.html +%%DATADIR%%/objinfo/l10n/sk/meter.html +%%DATADIR%%/objinfo/l10n/sk/note.html +%%DATADIR%%/objinfo/l10n/sk/particle.html +%%DATADIR%%/objinfo/l10n/sk/pin.html +%%DATADIR%%/objinfo/l10n/sk/polygon.html +%%DATADIR%%/objinfo/l10n/sk/softbody.html +%%DATADIR%%/objinfo/l10n/sk/spring.html +%%DATADIR%%/objinfo/l10n/sk/weightforce.html +%%DATADIR%%/objinfo/l10n/sk/world.html +%%DATADIR%%/objinfo/l10n/uk/anchor.html +%%DATADIR%%/objinfo/l10n/uk/box.html +%%DATADIR%%/objinfo/l10n/uk/chargedparticle.html +%%DATADIR%%/objinfo/l10n/uk/coulombforce.html +%%DATADIR%%/objinfo/l10n/uk/disk.html +%%DATADIR%%/objinfo/l10n/uk/gas.html +%%DATADIR%%/objinfo/l10n/uk/gasljforce.html +%%DATADIR%%/objinfo/l10n/uk/gasparticle.html +%%DATADIR%%/objinfo/l10n/uk/gravitationforce.html +%%DATADIR%%/objinfo/l10n/uk/linearmotor.html +%%DATADIR%%/objinfo/l10n/uk/meter.html +%%DATADIR%%/objinfo/l10n/uk/note.html +%%DATADIR%%/objinfo/l10n/uk/particle.html +%%DATADIR%%/objinfo/l10n/uk/pin.html +%%DATADIR%%/objinfo/l10n/uk/polygon.html +%%DATADIR%%/objinfo/l10n/uk/softbody.html +%%DATADIR%%/objinfo/l10n/uk/spring.html +%%DATADIR%%/objinfo/l10n/uk/weightforce.html +%%DATADIR%%/objinfo/l10n/uk/world.html +%%DATADIR%%/objinfo/l10n/zh_TW/anchor.html +%%DATADIR%%/objinfo/l10n/zh_TW/box.html +%%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html +%%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html +%%DATADIR%%/objinfo/l10n/zh_TW/disk.html +%%DATADIR%%/objinfo/l10n/zh_TW/gas.html +%%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html +%%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html +%%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html +%%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html +%%DATADIR%%/objinfo/l10n/zh_TW/meter.html +%%DATADIR%%/objinfo/l10n/zh_TW/note.html +%%DATADIR%%/objinfo/l10n/zh_TW/particle.html +%%DATADIR%%/objinfo/l10n/zh_TW/pin.html +%%DATADIR%%/objinfo/l10n/zh_TW/polygon.html +%%DATADIR%%/objinfo/l10n/zh_TW/softbody.html +%%DATADIR%%/objinfo/l10n/zh_TW/spring.html +%%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html +%%DATADIR%%/objinfo/l10n/zh_TW/world.html +%%DATADIR%%/objinfo/linearmotor.html +%%DATADIR%%/objinfo/meter.html +%%DATADIR%%/objinfo/note.html +%%DATADIR%%/objinfo/particle.html +%%DATADIR%%/objinfo/pin.html +%%DATADIR%%/objinfo/polygon.html +%%DATADIR%%/objinfo/softbody.html +%%DATADIR%%/objinfo/spring.html +%%DATADIR%%/objinfo/weightforce.html +%%DATADIR%%/objinfo/world.html +%%DATADIR%%/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/en_GB/tutorial1.step +%%DATADIR%%/tutorials/en_GB/tutorial2.step +%%DATADIR%%/tutorials/en_GB/tutorial3.step +%%DATADIR%%/tutorials/en_GB/tutorial4.step +%%DATADIR%%/tutorials/en_GB/tutorial5.step +%%DATADIR%%/tutorials/es/tutorial1.step +%%DATADIR%%/tutorials/es/tutorial2.step +%%DATADIR%%/tutorials/es/tutorial3.step +%%DATADIR%%/tutorials/es/tutorial4.step +%%DATADIR%%/tutorials/es/tutorial5.step +%%DATADIR%%/tutorials/fr/tutorial1.step +%%DATADIR%%/tutorials/fr/tutorial2.step +%%DATADIR%%/tutorials/fr/tutorial3.step +%%DATADIR%%/tutorials/fr/tutorial4.step +%%DATADIR%%/tutorials/fr/tutorial5.step +%%DATADIR%%/tutorials/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/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_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/Makefile =================================================================== --- head/security/kgpg/Makefile (revision 519954) +++ head/security/kgpg/Makefile (revision 519955) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= kgpg DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Encryption tool for KDE RUN_DEPENDS= gpg2:security/gnupg USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 \ tar:xz USE_KDE= akonadi akonadicontacts archive auth bookmarks codecs \ completion config configwidgets contacts coreaddons crash \ dbusaddons doctools ecm i18n iconthemes itemmodels itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 519954) +++ head/security/kgpg/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931040 -SHA256 (KDE/applications/19.08.3/kgpg-19.08.3.tar.xz) = 85bb9adbd7a7213bdd4913c2153582e938543db49cf2414b8794a850f63f3ab6 -SIZE (KDE/applications/19.08.3/kgpg-19.08.3.tar.xz) = 2786856 +TIMESTAMP = 1575623435 +SHA256 (KDE/applications/19.12.0/kgpg-19.12.0.tar.xz) = cf6b61991804adbe260b12bfd9ca7d360c957f3e4b5d1fdb62e2f8aebd443151 +SIZE (KDE/applications/19.12.0/kgpg-19.12.0.tar.xz) = 2788980 Index: head/security/kleopatra/Makefile =================================================================== --- head/security/kleopatra/Makefile (revision 519954) +++ head/security/kleopatra/Makefile (revision 519955) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm i18n iconthemes itemmodels kcmutils notifications \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ libkleo mime USE_QT= core dbus gui network printsupport testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 519954) +++ head/security/kleopatra/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931040 -SHA256 (KDE/applications/19.08.3/kleopatra-19.08.3.tar.xz) = 44b9873fbdeb88416d33b54491b75d35eac1589d70ef70505456e89068eb1caf -SIZE (KDE/applications/19.08.3/kleopatra-19.08.3.tar.xz) = 1928668 +TIMESTAMP = 1575623438 +SHA256 (KDE/applications/19.12.0/kleopatra-19.12.0.tar.xz) = 89b56e38c544055ad35a219bd13b12590a8e7fb319e0103a6f96075b356b8ae5 +SIZE (KDE/applications/19.12.0/kleopatra-19.12.0.tar.xz) = 1941060 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 519954) +++ head/security/kpkpass/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931041 -SHA256 (KDE/applications/19.08.3/kpkpass-19.08.3.tar.xz) = 6d70d3bcc949e83543ae7cf9d22280c270107bd9c9cb2882d6b37f6d036f5126 -SIZE (KDE/applications/19.08.3/kpkpass-19.08.3.tar.xz) = 23260 +TIMESTAMP = 1575623439 +SHA256 (KDE/applications/19.12.0/kpkpass-19.12.0.tar.xz) = 81032fd3807195109450141cd007dbd24a84fc789a83f68885c0a7dcbe2d66b4 +SIZE (KDE/applications/19.12.0/kpkpass-19.12.0.tar.xz) = 23316 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 519954) +++ head/security/kwalletmanager/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931042 -SHA256 (KDE/applications/19.08.3/kwalletmanager-19.08.3.tar.xz) = 00c1362d1454f4593e1f99847b97b3da99931c74ceafc3c3350337af0038b985 -SIZE (KDE/applications/19.08.3/kwalletmanager-19.08.3.tar.xz) = 786804 +TIMESTAMP = 1575623436 +SHA256 (KDE/applications/19.12.0/kwalletmanager-19.12.0.tar.xz) = 4ca98577b375b897a1939c2987551e0f332b659fe3d87ba8398fdd6b8d35c576 +SIZE (KDE/applications/19.12.0/kwalletmanager-19.12.0.tar.xz) = 788744 Index: head/security/kwalletmanager/pkg-plist =================================================================== --- head/security/kwalletmanager/pkg-plist (revision 519954) +++ head/security/kwalletmanager/pkg-plist (revision 519955) @@ -1,129 +1,130 @@ bin/kwalletmanager5 share/qlogging-categories5/kwalletmanager.categories lib/libexec/kauth/kcm_kwallet_helper5 %%QT_PLUGINDIR%%/kcm_kwallet5.so share/applications/kwalletmanager5-kwalletd.desktop share/applications/org.kde.kwalletmanager5.desktop share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service share/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwalletmanager.png share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/22x22/actions/wallet-closed.png share/icons/hicolor/22x22/actions/wallet-open.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwalletmanager.png share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/kservices5/kwalletconfig5.desktop share/kservices5/kwalletmanager5_show.desktop share/kxmlgui5/kwalletmanager5/kwalletmanager.rc share/locale/ar/LC_MESSAGES/kcmkwallet.mo share/locale/ar/LC_MESSAGES/kwalletmanager.mo share/locale/bg/LC_MESSAGES/kcmkwallet.mo share/locale/bg/LC_MESSAGES/kwalletmanager.mo share/locale/bs/LC_MESSAGES/kcmkwallet.mo share/locale/bs/LC_MESSAGES/kwalletmanager.mo share/locale/ca/LC_MESSAGES/kcmkwallet.mo share/locale/ca/LC_MESSAGES/kwalletmanager.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwallet.mo share/locale/ca@valencia/LC_MESSAGES/kwalletmanager.mo share/locale/cs/LC_MESSAGES/kcmkwallet.mo share/locale/cs/LC_MESSAGES/kwalletmanager.mo share/locale/da/LC_MESSAGES/kcmkwallet.mo share/locale/da/LC_MESSAGES/kwalletmanager.mo share/locale/de/LC_MESSAGES/kcmkwallet.mo share/locale/de/LC_MESSAGES/kwalletmanager.mo share/locale/el/LC_MESSAGES/kcmkwallet.mo share/locale/el/LC_MESSAGES/kwalletmanager.mo share/locale/en_GB/LC_MESSAGES/kcmkwallet.mo share/locale/en_GB/LC_MESSAGES/kwalletmanager.mo share/locale/eo/LC_MESSAGES/kcmkwallet.mo share/locale/eo/LC_MESSAGES/kwalletmanager.mo share/locale/es/LC_MESSAGES/kcmkwallet.mo share/locale/es/LC_MESSAGES/kwalletmanager.mo share/locale/et/LC_MESSAGES/kcmkwallet.mo share/locale/et/LC_MESSAGES/kwalletmanager.mo share/locale/eu/LC_MESSAGES/kcmkwallet.mo share/locale/eu/LC_MESSAGES/kwalletmanager.mo share/locale/fa/LC_MESSAGES/kcmkwallet.mo share/locale/fa/LC_MESSAGES/kwalletmanager.mo share/locale/fi/LC_MESSAGES/kcmkwallet.mo share/locale/fi/LC_MESSAGES/kwalletmanager.mo share/locale/fr/LC_MESSAGES/kcmkwallet.mo share/locale/fr/LC_MESSAGES/kwalletmanager.mo share/locale/ga/LC_MESSAGES/kcmkwallet.mo share/locale/ga/LC_MESSAGES/kwalletmanager.mo share/locale/gl/LC_MESSAGES/kcmkwallet.mo share/locale/gl/LC_MESSAGES/kwalletmanager.mo share/locale/hi/LC_MESSAGES/kcmkwallet.mo share/locale/hi/LC_MESSAGES/kwalletmanager.mo share/locale/hr/LC_MESSAGES/kcmkwallet.mo share/locale/hr/LC_MESSAGES/kwalletmanager.mo share/locale/hu/LC_MESSAGES/kcmkwallet.mo share/locale/hu/LC_MESSAGES/kwalletmanager.mo share/locale/ia/LC_MESSAGES/kcmkwallet.mo share/locale/ia/LC_MESSAGES/kwalletmanager.mo share/locale/id/LC_MESSAGES/kcmkwallet.mo +share/locale/id/LC_MESSAGES/kwalletmanager.mo share/locale/is/LC_MESSAGES/kcmkwallet.mo share/locale/is/LC_MESSAGES/kwalletmanager.mo share/locale/it/LC_MESSAGES/kcmkwallet.mo share/locale/it/LC_MESSAGES/kwalletmanager.mo share/locale/ja/LC_MESSAGES/kcmkwallet.mo share/locale/ja/LC_MESSAGES/kwalletmanager.mo share/locale/kk/LC_MESSAGES/kcmkwallet.mo share/locale/kk/LC_MESSAGES/kwalletmanager.mo share/locale/km/LC_MESSAGES/kcmkwallet.mo share/locale/km/LC_MESSAGES/kwalletmanager.mo share/locale/ko/LC_MESSAGES/kcmkwallet.mo share/locale/ko/LC_MESSAGES/kwalletmanager.mo share/locale/lt/LC_MESSAGES/kcmkwallet.mo share/locale/lt/LC_MESSAGES/kwalletmanager.mo share/locale/lv/LC_MESSAGES/kcmkwallet.mo share/locale/lv/LC_MESSAGES/kwalletmanager.mo share/locale/mr/LC_MESSAGES/kcmkwallet.mo share/locale/mr/LC_MESSAGES/kwalletmanager.mo share/locale/nb/LC_MESSAGES/kcmkwallet.mo share/locale/nb/LC_MESSAGES/kwalletmanager.mo share/locale/nds/LC_MESSAGES/kcmkwallet.mo share/locale/nds/LC_MESSAGES/kwalletmanager.mo share/locale/nl/LC_MESSAGES/kcmkwallet.mo share/locale/nl/LC_MESSAGES/kwalletmanager.mo share/locale/nn/LC_MESSAGES/kcmkwallet.mo share/locale/nn/LC_MESSAGES/kwalletmanager.mo share/locale/pa/LC_MESSAGES/kcmkwallet.mo share/locale/pa/LC_MESSAGES/kwalletmanager.mo share/locale/pl/LC_MESSAGES/kcmkwallet.mo share/locale/pl/LC_MESSAGES/kwalletmanager.mo share/locale/pt/LC_MESSAGES/kcmkwallet.mo share/locale/pt/LC_MESSAGES/kwalletmanager.mo share/locale/pt_BR/LC_MESSAGES/kcmkwallet.mo share/locale/pt_BR/LC_MESSAGES/kwalletmanager.mo share/locale/ro/LC_MESSAGES/kcmkwallet.mo share/locale/ro/LC_MESSAGES/kwalletmanager.mo share/locale/ru/LC_MESSAGES/kcmkwallet.mo share/locale/ru/LC_MESSAGES/kwalletmanager.mo share/locale/sk/LC_MESSAGES/kcmkwallet.mo share/locale/sk/LC_MESSAGES/kwalletmanager.mo share/locale/sl/LC_MESSAGES/kcmkwallet.mo share/locale/sl/LC_MESSAGES/kwalletmanager.mo share/locale/sr/LC_MESSAGES/kcmkwallet.mo share/locale/sr/LC_MESSAGES/kwalletmanager.mo share/locale/sv/LC_MESSAGES/kcmkwallet.mo share/locale/sv/LC_MESSAGES/kwalletmanager.mo share/locale/tr/LC_MESSAGES/kcmkwallet.mo share/locale/tr/LC_MESSAGES/kwalletmanager.mo share/locale/ug/LC_MESSAGES/kcmkwallet.mo share/locale/ug/LC_MESSAGES/kwalletmanager.mo share/locale/uk/LC_MESSAGES/kcmkwallet.mo share/locale/uk/LC_MESSAGES/kwalletmanager.mo share/locale/zh_CN/LC_MESSAGES/kcmkwallet.mo share/locale/zh_CN/LC_MESSAGES/kwalletmanager.mo share/locale/zh_TW/LC_MESSAGES/kcmkwallet.mo share/locale/zh_TW/LC_MESSAGES/kwalletmanager.mo share/metainfo/org.kde.kwalletmanager5.appdata.xml share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 519954) +++ head/security/libkleo/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931043 -SHA256 (KDE/applications/19.08.3/libkleo-19.08.3.tar.xz) = 5f1a3276646c786e8e25e6765d0f4e6b6ac0e4dccd094c1810b10a10e401576e -SIZE (KDE/applications/19.08.3/libkleo-19.08.3.tar.xz) = 338888 +TIMESTAMP = 1575623437 +SHA256 (KDE/applications/19.12.0/libkleo-19.12.0.tar.xz) = 24ae030a390475386bbbe686ec92bc0c55579c3ae437347c5568e89a94796deb +SIZE (KDE/applications/19.12.0/libkleo-19.12.0.tar.xz) = 344220 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 519954) +++ head/sysutils/baloo-widgets/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931043 -SHA256 (KDE/applications/19.08.3/baloo-widgets-19.08.3.tar.xz) = edb9284b1a7d73b0c824390aa875593650880eb77c2680a2942c9fd65f436a2d -SIZE (KDE/applications/19.08.3/baloo-widgets-19.08.3.tar.xz) = 261744 +TIMESTAMP = 1575623547 +SHA256 (KDE/applications/19.12.0/baloo-widgets-19.12.0.tar.xz) = c16c248c20b2f4fe344b90283070a316eaef7e03b3b4e5f3b9a102b89977672e +SIZE (KDE/applications/19.12.0/baloo-widgets-19.12.0.tar.xz) = 262956 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 519954) +++ head/sysutils/baloo-widgets/pkg-plist (revision 519955) @@ -1,66 +1,66 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 -lib/libKF5BalooWidgets.so.19.8.3 +lib/libKF5BalooWidgets.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/baloofilepropertiesplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/tagsfileitemaction.so share/kservices5/baloofilepropertiesplugin.desktop share/locale/ar/LC_MESSAGES/baloowidgets5.mo share/locale/ast/LC_MESSAGES/baloowidgets5.mo share/locale/bg/LC_MESSAGES/baloowidgets5.mo share/locale/bs/LC_MESSAGES/baloowidgets5.mo share/locale/ca/LC_MESSAGES/baloowidgets5.mo share/locale/ca@valencia/LC_MESSAGES/baloowidgets5.mo share/locale/cs/LC_MESSAGES/baloowidgets5.mo share/locale/da/LC_MESSAGES/baloowidgets5.mo share/locale/de/LC_MESSAGES/baloowidgets5.mo share/locale/el/LC_MESSAGES/baloowidgets5.mo share/locale/en_GB/LC_MESSAGES/baloowidgets5.mo share/locale/es/LC_MESSAGES/baloowidgets5.mo share/locale/et/LC_MESSAGES/baloowidgets5.mo share/locale/eu/LC_MESSAGES/baloowidgets5.mo share/locale/fi/LC_MESSAGES/baloowidgets5.mo share/locale/fr/LC_MESSAGES/baloowidgets5.mo share/locale/ga/LC_MESSAGES/baloowidgets5.mo share/locale/gl/LC_MESSAGES/baloowidgets5.mo share/locale/he/LC_MESSAGES/baloowidgets5.mo share/locale/hu/LC_MESSAGES/baloowidgets5.mo share/locale/ia/LC_MESSAGES/baloowidgets5.mo share/locale/id/LC_MESSAGES/baloowidgets5.mo share/locale/it/LC_MESSAGES/baloowidgets5.mo share/locale/ja/LC_MESSAGES/baloowidgets5.mo share/locale/kk/LC_MESSAGES/baloowidgets5.mo share/locale/ko/LC_MESSAGES/baloowidgets5.mo share/locale/lt/LC_MESSAGES/baloowidgets5.mo share/locale/ml/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 519954) +++ head/sysutils/filelight/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931044 -SHA256 (KDE/applications/19.08.3/filelight-19.08.3.tar.xz) = 95fa38574292a2aa8d3d90749fbbb61c5005889ef1df1aaa04d2d789bbf4fb00 -SIZE (KDE/applications/19.08.3/filelight-19.08.3.tar.xz) = 660804 +TIMESTAMP = 1575623544 +SHA256 (KDE/applications/19.12.0/filelight-19.12.0.tar.xz) = 59441fd262bbef2b313ad346565b2584034a202f09c876ef349eb16a9e69e2be +SIZE (KDE/applications/19.12.0/filelight-19.12.0.tar.xz) = 661692 Index: head/sysutils/k3b/Makefile =================================================================== --- head/sysutils/k3b/Makefile (revision 519954) +++ head/sysutils/k3b/Makefile (revision 519955) @@ -1,56 +1,55 @@ # $FreeBSD$ PORTNAME= k3b DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils multimedia kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CD/DVD writing suite LIB_DEPENDS= libFLAC.so:audio/flac \ libKF5Cddb.so:audio/libkcddb \ libcdda_paranoia.so:audio/cdparanoia \ libdvdread.so:multimedia/libdvdread \ libmad.so:audio/libmad \ libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libtag.so:audio/taglib \ libvorbis.so:audio/libvorbis RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools USES= cmake compiler:c++11-lang desktop-file-utils gettext iconv \ kde:5 pkgconfig qt:5 shared-mime-info tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons ecm filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools_build qmake_build # The ffmpeg-plugin needs patching CMAKE_ARGS= -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=FALSE OPTIONS_DEFINE= CDRDAO CDRSKIN DVDPLUSRW EMOVIX VCDIMAGER DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CDRDAO_DESC= Burning: cdrdao CDRDAO_RUN_DEPENDS= cdrdao:sysutils/cdrdao DVDPLUSRW_DESC= Burning: DVD+RW tools (DVD+/-R(W)) DVDPLUSRW_RUN_DEPENDS= dvd+rw-format:sysutils/dvd+rw-tools EMOVIX_DESC= Burning: eMovix (bootable video CDs) EMOVIX_RUN_DEPENDS= mkmovixiso:multimedia/emovix VCDIMAGER_DESC= Burning: VCDImager (video CDs) VCDIMAGER_RUN_DEPENDS= vcdxrip:multimedia/vcdimager CDRSKIN_DESC= Burning: cdrskin (improved performance) CDRSKIN_RUN_DEPENDS= cdrskin:devel/libburn .include Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 519954) +++ head/sysutils/k3b/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931045 -SHA256 (KDE/applications/19.08.3/k3b-19.08.3.tar.xz) = 197ea67fa9ef66f8ee084608fd1907e2b3db108eec643d5bd6a0980f838f2b23 -SIZE (KDE/applications/19.08.3/k3b-19.08.3.tar.xz) = 10500940 +TIMESTAMP = 1575623541 +SHA256 (KDE/applications/19.12.0/k3b-19.12.0.tar.xz) = 766395c5b9a77e061dbd5a882d768e3bdf926dfbdd83d476fcfdb1060473f11e +SIZE (KDE/applications/19.12.0/k3b-19.12.0.tar.xz) = 10505540 Index: head/sysutils/k3b/pkg-plist =================================================================== --- head/sysutils/k3b/pkg-plist (revision 519954) +++ head/sysutils/k3b/pkg-plist (revision 519955) @@ -1,538 +1,538 @@ bin/k3b -etc/xdg/k3btheme.knsrc include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libk3bdevice.so lib/libk3bdevice.so.7 lib/libk3bdevice.so.7.0.0 lib/libk3blib.so lib/libk3blib.so.7 lib/libk3blib.so.7.0.0 lib/libexec/k3bhelper %%QT_PLUGINDIR%%/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3blameencoder.so %%QT_PLUGINDIR%%/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3bwavedecoder.so %%QT_PLUGINDIR%%/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc +share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservices5/k3baudiometainforenamerplugin.desktop share/kservices5/k3baudioprojectcddbplugin.desktop share/kservices5/k3bexternalencoder.desktop share/kservices5/k3bflacdecoder.desktop share/kservices5/k3blameencoder.desktop share/kservices5/k3blibsndfiledecoder.desktop share/kservices5/k3bmaddecoder.desktop share/kservices5/k3boggvorbisdecoder.desktop share/kservices5/k3boggvorbisencoder.desktop share/kservices5/k3bsoxencoder.desktop share/kservices5/k3bwavedecoder.desktop share/kservices5/kcm_k3bexternalencoder.desktop share/kservices5/kcm_k3blameencoder.desktop share/kservices5/kcm_k3boggvorbisencoder.desktop share/kservices5/kcm_k3bsoxencoder.desktop share/kservices5/videodvd.protocol share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo share/locale/ast/LC_MESSAGES/kio_videodvd.mo share/locale/ast/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 519954) +++ head/sysutils/kbackup/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931046 -SHA256 (KDE/applications/19.08.3/kbackup-19.08.3.tar.xz) = c71156528087e0c799b4c957b6525b85763bdeb35ebc58ba480878f2f0daf97d -SIZE (KDE/applications/19.08.3/kbackup-19.08.3.tar.xz) = 358156 +TIMESTAMP = 1575623539 +SHA256 (KDE/applications/19.12.0/kbackup-19.12.0.tar.xz) = 051e8763db670215c95ad14ca931b9f7ea9b7bcd180ef6177d79a5b67a4bc4a6 +SIZE (KDE/applications/19.12.0/kbackup-19.12.0.tar.xz) = 358300 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 519954) +++ head/sysutils/kcron/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931046 -SHA256 (KDE/applications/19.08.3/kcron-19.08.3.tar.xz) = b2270bb3390570ee49b887e5cda1c596c351fd0cd83183f091ef1b078fa55669 -SIZE (KDE/applications/19.08.3/kcron-19.08.3.tar.xz) = 888268 +TIMESTAMP = 1575623543 +SHA256 (KDE/applications/19.12.0/kcron-19.12.0.tar.xz) = a07fd20e18f8468868fd59b30de13db4459baf2730600061b7d280c435fd05c8 +SIZE (KDE/applications/19.12.0/kcron-19.12.0.tar.xz) = 890916 Index: head/sysutils/kcron/pkg-plist =================================================================== --- head/sysutils/kcron/pkg-plist (revision 519954) +++ head/sysutils/kcron/pkg-plist (revision 519955) @@ -1,56 +1,57 @@ share/qlogging-categories5/kcron.categories %%QT_PLUGINDIR%%/kcm_cron.so share/kservices5/kcm_cron.desktop share/locale/ar/LC_MESSAGES/kcron.mo share/locale/bg/LC_MESSAGES/kcron.mo share/locale/bs/LC_MESSAGES/kcron.mo share/locale/ca/LC_MESSAGES/kcron.mo share/locale/ca@valencia/LC_MESSAGES/kcron.mo share/locale/cs/LC_MESSAGES/kcron.mo share/locale/da/LC_MESSAGES/kcron.mo share/locale/de/LC_MESSAGES/kcron.mo share/locale/el/LC_MESSAGES/kcron.mo share/locale/en_GB/LC_MESSAGES/kcron.mo share/locale/eo/LC_MESSAGES/kcron.mo share/locale/es/LC_MESSAGES/kcron.mo share/locale/et/LC_MESSAGES/kcron.mo share/locale/eu/LC_MESSAGES/kcron.mo share/locale/fa/LC_MESSAGES/kcron.mo share/locale/fi/LC_MESSAGES/kcron.mo share/locale/fr/LC_MESSAGES/kcron.mo share/locale/ga/LC_MESSAGES/kcron.mo share/locale/gl/LC_MESSAGES/kcron.mo share/locale/he/LC_MESSAGES/kcron.mo share/locale/hi/LC_MESSAGES/kcron.mo share/locale/hr/LC_MESSAGES/kcron.mo share/locale/hu/LC_MESSAGES/kcron.mo share/locale/ia/LC_MESSAGES/kcron.mo share/locale/is/LC_MESSAGES/kcron.mo share/locale/it/LC_MESSAGES/kcron.mo share/locale/ja/LC_MESSAGES/kcron.mo share/locale/kk/LC_MESSAGES/kcron.mo share/locale/km/LC_MESSAGES/kcron.mo share/locale/ko/LC_MESSAGES/kcron.mo share/locale/lt/LC_MESSAGES/kcron.mo share/locale/lv/LC_MESSAGES/kcron.mo share/locale/mr/LC_MESSAGES/kcron.mo share/locale/nb/LC_MESSAGES/kcron.mo share/locale/nds/LC_MESSAGES/kcron.mo share/locale/nl/LC_MESSAGES/kcron.mo share/locale/nn/LC_MESSAGES/kcron.mo share/locale/pa/LC_MESSAGES/kcron.mo share/locale/pl/LC_MESSAGES/kcron.mo share/locale/pt/LC_MESSAGES/kcron.mo share/locale/pt_BR/LC_MESSAGES/kcron.mo share/locale/ro/LC_MESSAGES/kcron.mo share/locale/ru/LC_MESSAGES/kcron.mo share/locale/sk/LC_MESSAGES/kcron.mo share/locale/sl/LC_MESSAGES/kcron.mo share/locale/sr/LC_MESSAGES/kcron.mo share/locale/sv/LC_MESSAGES/kcron.mo share/locale/tr/LC_MESSAGES/kcron.mo share/locale/ug/LC_MESSAGES/kcron.mo share/locale/uk/LC_MESSAGES/kcron.mo share/locale/wa/LC_MESSAGES/kcron.mo share/locale/zh_CN/LC_MESSAGES/kcron.mo share/locale/zh_TW/LC_MESSAGES/kcron.mo +share/metainfo/org.kde.kcron.metainfo.xml Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 519954) +++ head/sysutils/kdebugsettings/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931047 -SHA256 (KDE/applications/19.08.3/kdebugsettings-19.08.3.tar.xz) = 10ccbc85c36a81ba7fdf3230f16c3b9974d240d17347d21aa7b67e9b5f85c78d -SIZE (KDE/applications/19.08.3/kdebugsettings-19.08.3.tar.xz) = 55472 +TIMESTAMP = 1575623549 +SHA256 (KDE/applications/19.12.0/kdebugsettings-19.12.0.tar.xz) = f74cbf61c0c2256ece947155860f80d550c69f30ea3916d281b02b824a667814 +SIZE (KDE/applications/19.12.0/kdebugsettings-19.12.0.tar.xz) = 63196 Index: head/sysutils/kdebugsettings/pkg-plist =================================================================== --- head/sysutils/kdebugsettings/pkg-plist (revision 519954) +++ head/sysutils/kdebugsettings/pkg-plist (revision 519955) @@ -1,40 +1,43 @@ bin/kdebugsettings -share/qlogging-categories5/kde.categories -share/qlogging-categories5/kde.renamecategories +lib/libkdebugsettings.so.%%KDE_APPLICATIONS_VERSION%% +lib/libkdebugsettings.so.5 share/applications/org.kde.kdebugsettings.desktop share/locale/ar/LC_MESSAGES/kdebugsettings.mo share/locale/ca/LC_MESSAGES/kdebugsettings.mo share/locale/ca@valencia/LC_MESSAGES/kdebugsettings.mo share/locale/cs/LC_MESSAGES/kdebugsettings.mo share/locale/da/LC_MESSAGES/kdebugsettings.mo share/locale/de/LC_MESSAGES/kdebugsettings.mo share/locale/el/LC_MESSAGES/kdebugsettings.mo share/locale/en_GB/LC_MESSAGES/kdebugsettings.mo share/locale/es/LC_MESSAGES/kdebugsettings.mo share/locale/et/LC_MESSAGES/kdebugsettings.mo share/locale/eu/LC_MESSAGES/kdebugsettings.mo share/locale/fi/LC_MESSAGES/kdebugsettings.mo share/locale/fr/LC_MESSAGES/kdebugsettings.mo share/locale/gl/LC_MESSAGES/kdebugsettings.mo share/locale/hu/LC_MESSAGES/kdebugsettings.mo share/locale/ia/LC_MESSAGES/kdebugsettings.mo share/locale/it/LC_MESSAGES/kdebugsettings.mo share/locale/ja/LC_MESSAGES/kdebugsettings.mo share/locale/ko/LC_MESSAGES/kdebugsettings.mo share/locale/lt/LC_MESSAGES/kdebugsettings.mo share/locale/nl/LC_MESSAGES/kdebugsettings.mo share/locale/nn/LC_MESSAGES/kdebugsettings.mo share/locale/pl/LC_MESSAGES/kdebugsettings.mo share/locale/pt/LC_MESSAGES/kdebugsettings.mo share/locale/pt_BR/LC_MESSAGES/kdebugsettings.mo share/locale/ro/LC_MESSAGES/kdebugsettings.mo share/locale/ru/LC_MESSAGES/kdebugsettings.mo share/locale/sk/LC_MESSAGES/kdebugsettings.mo share/locale/sl/LC_MESSAGES/kdebugsettings.mo share/locale/sr/LC_MESSAGES/kdebugsettings.mo share/locale/sv/LC_MESSAGES/kdebugsettings.mo share/locale/tr/LC_MESSAGES/kdebugsettings.mo share/locale/uk/LC_MESSAGES/kdebugsettings.mo share/locale/zh_CN/LC_MESSAGES/kdebugsettings.mo share/locale/zh_TW/LC_MESSAGES/kdebugsettings.mo +share/metainfo/org.kde.kdebugsettings.appdata.xml +share/qlogging-categories5/kde.categories +share/qlogging-categories5/kde.renamecategories share/qlogging-categories5/kdebugsettings.categories Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 519954) +++ head/sysutils/kdf/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931048 -SHA256 (KDE/applications/19.08.3/kdf-19.08.3.tar.xz) = eef733c2089ce8fc40405653fa5e3aaafe67a1cc5d074f744e49b185291c0617 -SIZE (KDE/applications/19.08.3/kdf-19.08.3.tar.xz) = 461848 +TIMESTAMP = 1575623553 +SHA256 (KDE/applications/19.12.0/kdf-19.12.0.tar.xz) = e960f92d5ecd3e7fe6f5648b409ad5ad0e67659028a7e12f7643b368c040795f +SIZE (KDE/applications/19.12.0/kdf-19.12.0.tar.xz) = 462008 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 519954) +++ head/sysutils/kdialog/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931049 -SHA256 (KDE/applications/19.08.3/kdialog-19.08.3.tar.xz) = 2fa2e07fb9975e2e32e26a2a17350ef253b93471017e5945a2df0fef2eeba787 -SIZE (KDE/applications/19.08.3/kdialog-19.08.3.tar.xz) = 102480 +TIMESTAMP = 1575623552 +SHA256 (KDE/applications/19.12.0/kdialog-19.12.0.tar.xz) = 29e65065b2e5ff4aa95cb3e2773cdfb40d7c202e078cf5bf84d91b6eb1f8552c +SIZE (KDE/applications/19.12.0/kdialog-19.12.0.tar.xz) = 103792 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 519954) +++ head/sysutils/kfloppy/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931050 -SHA256 (KDE/applications/19.08.3/kfloppy-19.08.3.tar.xz) = aed5533db83513e7ad9d4108920fc0241569d6b1b649d95ef36a36bbc1f72cab -SIZE (KDE/applications/19.08.3/kfloppy-19.08.3.tar.xz) = 198760 +TIMESTAMP = 1575623542 +SHA256 (KDE/applications/19.12.0/kfloppy-19.12.0.tar.xz) = db1206c7b9e22d911b8bfea325dc7b23a72648870f2c71183713098dca2cb322 +SIZE (KDE/applications/19.12.0/kfloppy-19.12.0.tar.xz) = 199308 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 519954) +++ head/sysutils/khelpcenter/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931071 -SHA256 (KDE/applications/19.08.3/khelpcenter-19.08.3.tar.xz) = a03817fb16739b1b235dc54ddeda2c2ebc6605a0c7678e02af24c05271c0b77a -SIZE (KDE/applications/19.08.3/khelpcenter-19.08.3.tar.xz) = 3846196 +TIMESTAMP = 1575623545 +SHA256 (KDE/applications/19.12.0/khelpcenter-19.12.0.tar.xz) = 13384d3b454d9551f40541262168377ef7168983fc80fbe098f6cc53e8cc34db +SIZE (KDE/applications/19.12.0/khelpcenter-19.12.0.tar.xz) = 3849120 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 519954) +++ head/sysutils/ksystemlog/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931071 -SHA256 (KDE/applications/19.08.3/ksystemlog-19.08.3.tar.xz) = 97fca55ae5481d77628531482da99ece40cef2c81de633fe4c1e99206d17391d -SIZE (KDE/applications/19.08.3/ksystemlog-19.08.3.tar.xz) = 1928428 +TIMESTAMP = 1575623546 +SHA256 (KDE/applications/19.12.0/ksystemlog-19.12.0.tar.xz) = 2703649b50162babac7db7438a7b363a8ca464a5d360ed93ba50876ec2a668e7 +SIZE (KDE/applications/19.12.0/ksystemlog-19.12.0.tar.xz) = 1927480 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 519954) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931072 -SHA256 (KDE/applications/19.08.3/signon-kwallet-extension-19.08.3.tar.xz) = 273ff874bf08dd97a12b3b07215bc0ce9fd3c3c59b6bb1f61000411454211a65 -SIZE (KDE/applications/19.08.3/signon-kwallet-extension-19.08.3.tar.xz) = 10616 +TIMESTAMP = 1575623551 +SHA256 (KDE/applications/19.12.0/signon-kwallet-extension-19.12.0.tar.xz) = 663659b125aafff56f7777cf55e1ba22256cc66a89b5a1d97658ce75ad777c96 +SIZE (KDE/applications/19.12.0/signon-kwallet-extension-19.12.0.tar.xz) = 10604 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 519954) +++ head/sysutils/sweeper/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931073 -SHA256 (KDE/applications/19.08.3/sweeper-19.08.3.tar.xz) = 0451b9319c4390cfae497922cc135d7d8c4ef74ac81f2c05d2f94458bb3fc8be -SIZE (KDE/applications/19.08.3/sweeper-19.08.3.tar.xz) = 368332 +TIMESTAMP = 1575623548 +SHA256 (KDE/applications/19.12.0/sweeper-19.12.0.tar.xz) = 95654845f861adba7015c40de378b30bb241ae18843882a5fc6f5f240282dc00 +SIZE (KDE/applications/19.12.0/sweeper-19.12.0.tar.xz) = 368636 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 519954) +++ head/textproc/kompare/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931074 -SHA256 (KDE/applications/19.08.3/kompare-19.08.3.tar.xz) = d0adbae35e979212e9705cb815e309059d8b3d0b7a815d7ff2cd7197eff65f44 -SIZE (KDE/applications/19.08.3/kompare-19.08.3.tar.xz) = 801168 +TIMESTAMP = 1575623418 +SHA256 (KDE/applications/19.12.0/kompare-19.12.0.tar.xz) = aa6b3d63d5a4042a44d4adae4b95a4c0b9f22c39d49729a91ce6bf4196c7e3ea +SIZE (KDE/applications/19.12.0/kompare-19.12.0.tar.xz) = 801436 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 519954) +++ head/textproc/libkomparediff2/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931074 -SHA256 (KDE/applications/19.08.3/libkomparediff2-19.08.3.tar.xz) = a1ba5616fda806d5aedab3fb080bbcef5e13c04153fd9659d9d47f0a1a11125d -SIZE (KDE/applications/19.08.3/libkomparediff2-19.08.3.tar.xz) = 173512 +TIMESTAMP = 1575623417 +SHA256 (KDE/applications/19.12.0/libkomparediff2-19.12.0.tar.xz) = 39335b1b31dcac243df5543d4eaa5e230a262e23cd045c9e645e05079672001e +SIZE (KDE/applications/19.12.0/libkomparediff2-19.12.0.tar.xz) = 173592 Index: head/x11/konsole/Makefile =================================================================== --- head/x11/konsole/Makefile (revision 519954) +++ head/x11/konsole/Makefile (revision 519955) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= konsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-applications # kde kde-applications-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE terminal emulator BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml RUN_DEPENDS= keditbookmarks:deskutils/keditbookmarks USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth attica bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons globalaccel guiaddons i18n \ iconthemes init itemmodels jobwidgets kdelibs4support kio \ newstuff notifications notifyconfig parts pty service sonnet \ textwidgets widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport script scripttools sql \ widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 519954) +++ head/x11/konsole/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931079 -SHA256 (KDE/applications/19.08.3/konsole-19.08.3.tar.xz) = 2cc610109ff8ddc6efa6ea83f0153f4b1d72e4be65d8dbde9cfd526c257e7025 -SIZE (KDE/applications/19.08.3/konsole-19.08.3.tar.xz) = 1147832 +TIMESTAMP = 1575623415 +SHA256 (KDE/applications/19.12.0/konsole-19.12.0.tar.xz) = e1b2cafb25dea65df97fb7b0c766bb6db311c329fa33dc8d3703afbe2322e9fc +SIZE (KDE/applications/19.12.0/konsole-19.12.0.tar.xz) = 1161060 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 519954) +++ head/x11/yakuake/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572973362 -SHA256 (KDE/applications/19.08.3/yakuake-19.08.3.tar.xz) = 1ad2cc026eea9449690aa037ac94b09cd18696d71025204e648501fa7f2cfbaf -SIZE (KDE/applications/19.08.3/yakuake-19.08.3.tar.xz) = 371420 +TIMESTAMP = 1575623416 +SHA256 (KDE/applications/19.12.0/yakuake-19.12.0.tar.xz) = 9310d7d9571711bd1bc97374208bf8da3e3c76bab7ebda1f9f74a57bc04599a1 +SIZE (KDE/applications/19.12.0/yakuake-19.12.0.tar.xz) = 372548 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 519954) +++ head/x11-clocks/kteatime/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931075 -SHA256 (KDE/applications/19.08.3/kteatime-19.08.3.tar.xz) = dbe96fdd20545dc5ebe8103aed878dbbca5e015a42827129485a32fdcbf0d592 -SIZE (KDE/applications/19.08.3/kteatime-19.08.3.tar.xz) = 286792 +TIMESTAMP = 1575623568 +SHA256 (KDE/applications/19.12.0/kteatime-19.12.0.tar.xz) = 4480fd02a4d4f2abb1b1818c8bf29fd802e13c3c90fce1330130c041df8195e7 +SIZE (KDE/applications/19.12.0/kteatime-19.12.0.tar.xz) = 287156 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 519954) +++ head/x11-clocks/ktimer/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931076 -SHA256 (KDE/applications/19.08.3/ktimer-19.08.3.tar.xz) = d8c80c3929e21a0450574d2e05e2a2384978c70f812eaab25e32402fe3a2f6c5 -SIZE (KDE/applications/19.08.3/ktimer-19.08.3.tar.xz) = 376768 +TIMESTAMP = 1575623566 +SHA256 (KDE/applications/19.12.0/ktimer-19.12.0.tar.xz) = c5075d46ae6eccaf34c02a19bcffc7b137b2589cbcc53aa8f1d539a3c4c3fa91 +SIZE (KDE/applications/19.12.0/ktimer-19.12.0.tar.xz) = 377360 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 519954) +++ head/x11-fm/dolphin/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931077 -SHA256 (KDE/applications/19.08.3/dolphin-19.08.3.tar.xz) = de71f52324c15d692448ac4c79c1e0fcf35df5c03349a8bcbebfae20d9f69d4e -SIZE (KDE/applications/19.08.3/dolphin-19.08.3.tar.xz) = 5276344 +TIMESTAMP = 1576095120 +SHA256 (KDE/applications/19.12.0/dolphin-19.12.0.tar.xz) = 5bc092d2910583f1303d7800b836713e4547ac95cac06feaed67e4c038ff42e7 +SIZE (KDE/applications/19.12.0/dolphin-19.12.0.tar.xz) = 4779296 Index: head/x11-fm/dolphin/pkg-plist =================================================================== --- head/x11-fm/dolphin/pkg-plist (revision 519954) +++ head/x11-fm/dolphin/pkg-plist (revision 519955) @@ -1,122 +1,126 @@ bin/dolphin bin/servicemenuinstaller share/qlogging-categories5/dolphin.categories etc/xdg/servicemenu.knsrc include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so %%QT_PLUGINDIR%%/dolphinpart.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/kcm_dolphinservices.so %%QT_PLUGINDIR%%/kcm_dolphinviewmodes.so share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop share/kservices5/kcmdolphinservices.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo +share/locale/el/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo +share/locale/et/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin.mo +share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin.mo +share/locale/lv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml Index: head/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake =================================================================== --- head/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake (revision 519954) +++ head/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake (nonexistent) @@ -1,14 +0,0 @@ -Look for the renamed libtidy.so from www/tidy-html and not pick up www/tidy-lib -by mistake - ---- plugins/validators/FindLibTidy.cmake.orig 2019-08-30 19:38:08 UTC -+++ plugins/validators/FindLibTidy.cmake -@@ -28,7 +28,7 @@ endif( NOT LIBTIDY_INCLUDE_DIR ) - - - --FIND_LIBRARY(LIBTIDY_LIBRARIES NAMES tidy) -+FIND_LIBRARY(LIBTIDY_LIBRARIES NAMES tidy5) - - if (LIBTIDY_INCLUDE_DIR AND LIBTIDY_LIBRARIES) - set(LIBTIDY_FOUND TRUE) Property changes on: head/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/x11-fm/konqueror/Makefile =================================================================== --- head/x11-fm/konqueror/Makefile (revision 519954) +++ head/x11-fm/konqueror/Makefile (revision 519955) @@ -1,26 +1,24 @@ # $FreeBSD$ PORTNAME= konqueror DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= x11-fm www kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE system log application -LIB_DEPENDS= libtidy5.so:www/tidy-html5 - USES= cmake compiler:c++11-lang desktop-file-utils gettext \ localbase:ldflags kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= activities archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemviews jobwidgets js kcmutils kdelibs4support \ kdesu khtml kio notifications parts pty service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network printsupport script \ speech webchannel webengine widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext OPTIONS_DEFINE= DOCS .include Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 519954) +++ head/x11-fm/konqueror/distinfo (revision 519955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572931078 -SHA256 (KDE/applications/19.08.3/konqueror-19.08.3.tar.xz) = d0ff5b409bbbef5394aeb0bafeb6fea6265feff929fbf4b6a451adc030542d9b -SIZE (KDE/applications/19.08.3/konqueror-19.08.3.tar.xz) = 7604888 +TIMESTAMP = 1575623538 +SHA256 (KDE/applications/19.12.0/konqueror-19.12.0.tar.xz) = cbd261016fd5f43e849a1c210870c5f64b0b311e6aae4513d1f92908fcae6b72 +SIZE (KDE/applications/19.12.0/konqueror-19.12.0.tar.xz) = 7378460 Index: head/x11-fm/konqueror/pkg-plist =================================================================== --- head/x11-fm/konqueror/pkg-plist (revision 519954) +++ head/x11-fm/konqueror/pkg-plist (revision 519955) @@ -1,1630 +1,1205 @@ bin/fsview bin/kfmclient bin/konqueror -share/qlogging-categories5/akregatorplugin.categories etc/xdg/autostart/konqy_preload.desktop -share/qlogging-categories5/konqueror.categories 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 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/libkonquerorprivate.so.5 lib/libkonquerorprivate.so.5.0.97 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so -%%QT_PLUGINDIR%%/domtreeviewerplugin.so %%QT_PLUGINDIR%%/fsviewpart.so %%QT_PLUGINDIR%%/kcm_bookmarks.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_aboutpage.so %%QT_PLUGINDIR%%/konq_shellcmdplugin.so -%%QT_PLUGINDIR%%/minitoolsplugin.so -%%QT_PLUGINDIR%%/rellinksplugin.so %%QT_PLUGINDIR%%/searchbarplugin.so -%%QT_PLUGINDIR%%/validatorsplugin.so -%%QT_PLUGINDIR%%/webarchiverplugin.so -%%QT_PLUGINDIR%%/webarchivethumbnail.so 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/konqueror.kcfg -share/config.kcfg/validators.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/domtreeviewer/domtreeviewerui.rc share/fsview/fsview_part.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/cssvalidator.png -share/icons/hicolor/16x16/actions/htmlvalidator.png share/icons/hicolor/16x16/actions/imagegallery.png -share/icons/hicolor/16x16/actions/validators.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/cssvalidator.png -share/icons/hicolor/22x22/actions/htmlvalidator.png share/icons/hicolor/22x22/actions/imagegallery.png -share/icons/hicolor/22x22/actions/validators.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/actions/htmlvalidator.png -share/icons/hicolor/32x32/actions/validators.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/actions/htmlvalidator.png -share/icons/hicolor/48x48/actions/validators.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png -share/icons/hicolor/64x64/actions/htmlvalidator.png -share/icons/hicolor/64x64/actions/validators.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png -share/icons/hicolor/scalable/actions/htmlvalidator.svgz -share/icons/hicolor/scalable/actions/validators.svgz share/kcmcss/template.css 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/minitoolsplugin.desktop -share/khtml/kpartplugins/minitoolsplugin.rc share/khtml/kpartplugins/plugin_babelfish.rc -share/khtml/kpartplugins/plugin_domtreeviewer.desktop -share/khtml/kpartplugins/plugin_domtreeviewer.rc -share/khtml/kpartplugins/plugin_rellinks.desktop -share/khtml/kpartplugins/plugin_rellinks.rc share/khtml/kpartplugins/plugin_translator.desktop -share/khtml/kpartplugins/plugin_validators.desktop -share/khtml/kpartplugins/plugin_validators.rc -share/khtml/kpartplugins/plugin_webarchiver.desktop -share/khtml/kpartplugins/plugin_webarchiver.rc %%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/kservices5/akregator_konqplugin.desktop share/kservices5/bookmarks.desktop share/kservices5/filebehavior.desktop share/kservices5/fsview_part.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_aboutpage.desktop share/kservices5/org.kde.konqueror.desktop -share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kservicetypes5/konqaboutpage.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/kxmlgui5/webenginepart/webenginepart.rc -share/locale/ar/LC_MESSAGES/adblock.mo 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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ar/LC_MESSAGES/minitoolsplugin.mo -share/locale/ar/LC_MESSAGES/rellinks.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo -share/locale/ar/LC_MESSAGES/validatorsplugin.mo -share/locale/ar/LC_MESSAGES/webarchiver.mo share/locale/ar/LC_MESSAGES/webenginepart.mo -share/locale/ast/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ast/LC_MESSAGES/minitoolsplugin.mo -share/locale/ast/LC_MESSAGES/rellinks.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo -share/locale/ast/LC_MESSAGES/validatorsplugin.mo -share/locale/ast/LC_MESSAGES/webarchiver.mo share/locale/ast/LC_MESSAGES/webenginepart.mo -share/locale/bg/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/bg/LC_MESSAGES/minitoolsplugin.mo -share/locale/bg/LC_MESSAGES/rellinks.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo -share/locale/bg/LC_MESSAGES/validatorsplugin.mo -share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo -share/locale/bs/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/bs/LC_MESSAGES/minitoolsplugin.mo -share/locale/bs/LC_MESSAGES/rellinks.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo -share/locale/bs/LC_MESSAGES/validatorsplugin.mo -share/locale/bs/LC_MESSAGES/webarchiver.mo share/locale/bs/LC_MESSAGES/webenginepart.mo -share/locale/ca/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ca/LC_MESSAGES/minitoolsplugin.mo -share/locale/ca/LC_MESSAGES/rellinks.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo -share/locale/ca/LC_MESSAGES/validatorsplugin.mo -share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo -share/locale/ca@valencia/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ca@valencia/LC_MESSAGES/minitoolsplugin.mo -share/locale/ca@valencia/LC_MESSAGES/rellinks.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo -share/locale/ca@valencia/LC_MESSAGES/validatorsplugin.mo -share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo -share/locale/cs/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/cs/LC_MESSAGES/minitoolsplugin.mo -share/locale/cs/LC_MESSAGES/rellinks.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo -share/locale/cs/LC_MESSAGES/validatorsplugin.mo -share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo -share/locale/da/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/da/LC_MESSAGES/minitoolsplugin.mo -share/locale/da/LC_MESSAGES/rellinks.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo -share/locale/da/LC_MESSAGES/validatorsplugin.mo -share/locale/da/LC_MESSAGES/webarchiver.mo share/locale/da/LC_MESSAGES/webenginepart.mo -share/locale/de/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/de/LC_MESSAGES/minitoolsplugin.mo -share/locale/de/LC_MESSAGES/rellinks.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo -share/locale/de/LC_MESSAGES/validatorsplugin.mo -share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo -share/locale/el/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/el/LC_MESSAGES/minitoolsplugin.mo -share/locale/el/LC_MESSAGES/rellinks.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo -share/locale/el/LC_MESSAGES/validatorsplugin.mo -share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo -share/locale/en_GB/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/en_GB/LC_MESSAGES/minitoolsplugin.mo -share/locale/en_GB/LC_MESSAGES/rellinks.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo -share/locale/en_GB/LC_MESSAGES/validatorsplugin.mo -share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo -share/locale/eo/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/eo/LC_MESSAGES/minitoolsplugin.mo -share/locale/eo/LC_MESSAGES/rellinks.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo -share/locale/eo/LC_MESSAGES/validatorsplugin.mo -share/locale/eo/LC_MESSAGES/webarchiver.mo share/locale/eo/LC_MESSAGES/webenginepart.mo -share/locale/es/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/es/LC_MESSAGES/minitoolsplugin.mo -share/locale/es/LC_MESSAGES/rellinks.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo -share/locale/es/LC_MESSAGES/validatorsplugin.mo -share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo -share/locale/et/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/et/LC_MESSAGES/minitoolsplugin.mo -share/locale/et/LC_MESSAGES/rellinks.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo -share/locale/et/LC_MESSAGES/validatorsplugin.mo -share/locale/et/LC_MESSAGES/webarchiver.mo share/locale/et/LC_MESSAGES/webenginepart.mo -share/locale/eu/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/eu/LC_MESSAGES/minitoolsplugin.mo -share/locale/eu/LC_MESSAGES/rellinks.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo -share/locale/eu/LC_MESSAGES/validatorsplugin.mo -share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo -share/locale/fa/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/fa/LC_MESSAGES/minitoolsplugin.mo -share/locale/fa/LC_MESSAGES/rellinks.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo -share/locale/fa/LC_MESSAGES/validatorsplugin.mo -share/locale/fa/LC_MESSAGES/webarchiver.mo share/locale/fa/LC_MESSAGES/webenginepart.mo -share/locale/fi/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/fi/LC_MESSAGES/minitoolsplugin.mo -share/locale/fi/LC_MESSAGES/rellinks.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo -share/locale/fi/LC_MESSAGES/validatorsplugin.mo -share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo -share/locale/fr/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/fr/LC_MESSAGES/minitoolsplugin.mo -share/locale/fr/LC_MESSAGES/rellinks.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo -share/locale/fr/LC_MESSAGES/validatorsplugin.mo -share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo -share/locale/ga/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ga/LC_MESSAGES/minitoolsplugin.mo -share/locale/ga/LC_MESSAGES/rellinks.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo -share/locale/ga/LC_MESSAGES/validatorsplugin.mo -share/locale/ga/LC_MESSAGES/webarchiver.mo share/locale/ga/LC_MESSAGES/webenginepart.mo -share/locale/gl/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/gl/LC_MESSAGES/minitoolsplugin.mo -share/locale/gl/LC_MESSAGES/rellinks.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo -share/locale/gl/LC_MESSAGES/validatorsplugin.mo -share/locale/gl/LC_MESSAGES/webarchiver.mo share/locale/gl/LC_MESSAGES/webenginepart.mo -share/locale/he/LC_MESSAGES/adblock.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/domtreeviewer.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/minitoolsplugin.mo -share/locale/he/LC_MESSAGES/rellinks.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo -share/locale/he/LC_MESSAGES/validatorsplugin.mo -share/locale/he/LC_MESSAGES/webarchiver.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/hi/LC_MESSAGES/minitoolsplugin.mo -share/locale/hi/LC_MESSAGES/rellinks.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo -share/locale/hi/LC_MESSAGES/validatorsplugin.mo -share/locale/hi/LC_MESSAGES/webarchiver.mo -share/locale/hr/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/hr/LC_MESSAGES/minitoolsplugin.mo -share/locale/hr/LC_MESSAGES/rellinks.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo -share/locale/hr/LC_MESSAGES/validatorsplugin.mo -share/locale/hr/LC_MESSAGES/webarchiver.mo -share/locale/hu/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/hu/LC_MESSAGES/minitoolsplugin.mo -share/locale/hu/LC_MESSAGES/rellinks.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo -share/locale/hu/LC_MESSAGES/validatorsplugin.mo -share/locale/hu/LC_MESSAGES/webarchiver.mo share/locale/hu/LC_MESSAGES/webenginepart.mo -share/locale/ia/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ia/LC_MESSAGES/minitoolsplugin.mo -share/locale/ia/LC_MESSAGES/rellinks.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo -share/locale/ia/LC_MESSAGES/validatorsplugin.mo -share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo -share/locale/id/LC_MESSAGES/adblock.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/domtreeviewer.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/khtmltts.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/mf_konqplugin.mo -share/locale/id/LC_MESSAGES/minitoolsplugin.mo -share/locale/id/LC_MESSAGES/rellinks.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo -share/locale/id/LC_MESSAGES/validatorsplugin.mo -share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo -share/locale/is/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/is/LC_MESSAGES/minitoolsplugin.mo -share/locale/is/LC_MESSAGES/rellinks.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo -share/locale/is/LC_MESSAGES/validatorsplugin.mo -share/locale/is/LC_MESSAGES/webarchiver.mo -share/locale/it/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/it/LC_MESSAGES/minitoolsplugin.mo -share/locale/it/LC_MESSAGES/rellinks.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo -share/locale/it/LC_MESSAGES/validatorsplugin.mo -share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo -share/locale/ja/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ja/LC_MESSAGES/minitoolsplugin.mo -share/locale/ja/LC_MESSAGES/rellinks.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo -share/locale/ja/LC_MESSAGES/validatorsplugin.mo -share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo -share/locale/kk/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/kk/LC_MESSAGES/minitoolsplugin.mo -share/locale/kk/LC_MESSAGES/rellinks.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo -share/locale/kk/LC_MESSAGES/validatorsplugin.mo -share/locale/kk/LC_MESSAGES/webarchiver.mo share/locale/kk/LC_MESSAGES/webenginepart.mo -share/locale/km/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/km/LC_MESSAGES/minitoolsplugin.mo -share/locale/km/LC_MESSAGES/rellinks.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo -share/locale/km/LC_MESSAGES/validatorsplugin.mo -share/locale/km/LC_MESSAGES/webarchiver.mo share/locale/km/LC_MESSAGES/webenginepart.mo -share/locale/ko/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ko/LC_MESSAGES/minitoolsplugin.mo -share/locale/ko/LC_MESSAGES/rellinks.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo -share/locale/ko/LC_MESSAGES/validatorsplugin.mo -share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo -share/locale/lt/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/lt/LC_MESSAGES/minitoolsplugin.mo -share/locale/lt/LC_MESSAGES/rellinks.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo -share/locale/lt/LC_MESSAGES/validatorsplugin.mo -share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo -share/locale/lv/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/lv/LC_MESSAGES/minitoolsplugin.mo -share/locale/lv/LC_MESSAGES/rellinks.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo -share/locale/lv/LC_MESSAGES/validatorsplugin.mo -share/locale/lv/LC_MESSAGES/webarchiver.mo -share/locale/ml/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ml/LC_MESSAGES/minitoolsplugin.mo -share/locale/ml/LC_MESSAGES/rellinks.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo -share/locale/ml/LC_MESSAGES/validatorsplugin.mo -share/locale/ml/LC_MESSAGES/webarchiver.mo share/locale/ml/LC_MESSAGES/webenginepart.mo -share/locale/mr/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/mr/LC_MESSAGES/minitoolsplugin.mo -share/locale/mr/LC_MESSAGES/rellinks.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo -share/locale/mr/LC_MESSAGES/validatorsplugin.mo -share/locale/mr/LC_MESSAGES/webarchiver.mo share/locale/mr/LC_MESSAGES/webenginepart.mo -share/locale/nb/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/nb/LC_MESSAGES/minitoolsplugin.mo -share/locale/nb/LC_MESSAGES/rellinks.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo -share/locale/nb/LC_MESSAGES/validatorsplugin.mo -share/locale/nb/LC_MESSAGES/webarchiver.mo share/locale/nb/LC_MESSAGES/webenginepart.mo -share/locale/nds/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/nds/LC_MESSAGES/minitoolsplugin.mo -share/locale/nds/LC_MESSAGES/rellinks.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo -share/locale/nds/LC_MESSAGES/validatorsplugin.mo -share/locale/nds/LC_MESSAGES/webarchiver.mo share/locale/nds/LC_MESSAGES/webenginepart.mo -share/locale/nl/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/nl/LC_MESSAGES/minitoolsplugin.mo -share/locale/nl/LC_MESSAGES/rellinks.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo -share/locale/nl/LC_MESSAGES/validatorsplugin.mo -share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo -share/locale/nn/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/nn/LC_MESSAGES/minitoolsplugin.mo -share/locale/nn/LC_MESSAGES/rellinks.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo -share/locale/nn/LC_MESSAGES/validatorsplugin.mo -share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo -share/locale/pa/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/pa/LC_MESSAGES/minitoolsplugin.mo -share/locale/pa/LC_MESSAGES/rellinks.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo -share/locale/pa/LC_MESSAGES/validatorsplugin.mo -share/locale/pa/LC_MESSAGES/webarchiver.mo share/locale/pa/LC_MESSAGES/webenginepart.mo -share/locale/pl/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/pl/LC_MESSAGES/minitoolsplugin.mo -share/locale/pl/LC_MESSAGES/rellinks.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo -share/locale/pl/LC_MESSAGES/validatorsplugin.mo -share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo -share/locale/pt/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/pt/LC_MESSAGES/minitoolsplugin.mo -share/locale/pt/LC_MESSAGES/rellinks.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo -share/locale/pt/LC_MESSAGES/validatorsplugin.mo -share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo -share/locale/pt_BR/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/pt_BR/LC_MESSAGES/minitoolsplugin.mo -share/locale/pt_BR/LC_MESSAGES/rellinks.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo -share/locale/pt_BR/LC_MESSAGES/validatorsplugin.mo -share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo -share/locale/ro/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ro/LC_MESSAGES/minitoolsplugin.mo -share/locale/ro/LC_MESSAGES/rellinks.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo -share/locale/ro/LC_MESSAGES/validatorsplugin.mo -share/locale/ro/LC_MESSAGES/webarchiver.mo share/locale/ro/LC_MESSAGES/webenginepart.mo -share/locale/ru/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ru/LC_MESSAGES/minitoolsplugin.mo -share/locale/ru/LC_MESSAGES/rellinks.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo -share/locale/ru/LC_MESSAGES/validatorsplugin.mo -share/locale/ru/LC_MESSAGES/webarchiver.mo share/locale/ru/LC_MESSAGES/webenginepart.mo -share/locale/sk/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/sk/LC_MESSAGES/minitoolsplugin.mo -share/locale/sk/LC_MESSAGES/rellinks.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo -share/locale/sk/LC_MESSAGES/validatorsplugin.mo -share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo -share/locale/sl/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/sl/LC_MESSAGES/minitoolsplugin.mo -share/locale/sl/LC_MESSAGES/rellinks.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo -share/locale/sl/LC_MESSAGES/validatorsplugin.mo -share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo -share/locale/sr/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/sr/LC_MESSAGES/minitoolsplugin.mo -share/locale/sr/LC_MESSAGES/rellinks.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo -share/locale/sr/LC_MESSAGES/validatorsplugin.mo -share/locale/sr/LC_MESSAGES/webarchiver.mo share/locale/sr/LC_MESSAGES/webenginepart.mo -share/locale/sv/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/sv/LC_MESSAGES/minitoolsplugin.mo -share/locale/sv/LC_MESSAGES/rellinks.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo -share/locale/sv/LC_MESSAGES/validatorsplugin.mo -share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo -share/locale/tr/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/tr/LC_MESSAGES/minitoolsplugin.mo -share/locale/tr/LC_MESSAGES/rellinks.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo -share/locale/tr/LC_MESSAGES/validatorsplugin.mo -share/locale/tr/LC_MESSAGES/webarchiver.mo share/locale/tr/LC_MESSAGES/webenginepart.mo -share/locale/ug/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/ug/LC_MESSAGES/minitoolsplugin.mo -share/locale/ug/LC_MESSAGES/rellinks.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo -share/locale/ug/LC_MESSAGES/validatorsplugin.mo -share/locale/ug/LC_MESSAGES/webarchiver.mo share/locale/ug/LC_MESSAGES/webenginepart.mo -share/locale/uk/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/uk/LC_MESSAGES/minitoolsplugin.mo -share/locale/uk/LC_MESSAGES/rellinks.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo -share/locale/uk/LC_MESSAGES/validatorsplugin.mo -share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo -share/locale/wa/LC_MESSAGES/adblock.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/domtreeviewer.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/rellinks.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo -share/locale/zh_CN/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/zh_CN/LC_MESSAGES/minitoolsplugin.mo -share/locale/zh_CN/LC_MESSAGES/rellinks.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo -share/locale/zh_CN/LC_MESSAGES/validatorsplugin.mo -share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo -share/locale/zh_TW/LC_MESSAGES/adblock.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/domtreeviewer.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/mf_konqplugin.mo -share/locale/zh_TW/LC_MESSAGES/minitoolsplugin.mo -share/locale/zh_TW/LC_MESSAGES/rellinks.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo -share/locale/zh_TW/LC_MESSAGES/validatorsplugin.mo -share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml -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_validators.desktop -share/kwebkitpart/kpartplugins/plugin_validators.rc +share/qlogging-categories5/akregatorplugin.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_validators.desktop -share/webenginepart/kpartplugins/plugin_validators.rc -share/webenginepart/error.html