Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 489892) +++ head/Mk/Uses/kde.mk (revision 489893) @@ -1,867 +1,867 @@ # $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.14.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.53.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 18.12.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.10.0 +KDE_APPLICATIONS_VERSION?= 18.12.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.10.1 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${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 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 # ============================================================================== # === HANDLE PYTHON ============================================================ # TODO: Keep in sync with cmake/modules/PythonMacros.cmake _PYTHON_SHORT_VER= ${PYTHON_VERSION:S/^python//:S/.//} . if ${_PYTHON_SHORT_VER} > 31 PLIST_SUB+= PYCACHE="__pycache__/" \ PYC_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyc \ PYO_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyo . else PLIST_SUB+= PYCACHE="" \ PYC_SUFFIX=pyc \ PYO_SUFFIX=pyo . 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 # 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 account-wizard mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer mbox-importer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= activities_PORT= x11/kf5-kactivities activities_LIB= libKF5Activities.so activities-stats_PORT= x11/kf5-kactivities-stats activities-stats_LIB= libKF5ActivitiesStats.so apidox_PORT= devel/kf5-kapidox apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate apidox_TYPE= run archive_PORT= archivers/kf5-karchive archive_LIB= libKF5Archive.so attica5_PORT= x11-toolkits/kf5-attica attica5_LIB= libKF5Attica.so auth_PORT= devel/kf5-kauth auth_LIB= libKF5Auth.so baloo5_PORT= sysutils/kf5-baloo baloo5_LIB= libKF5Baloo.so bookmarks_PORT= devel/kf5-kbookmarks bookmarks_LIB= libKF5Bookmarks.so breeze-icons_PORT= x11-themes/kf5-breeze-icons breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme breeze-icons_TYPE= run codecs_PORT= textproc/kf5-kcodecs codecs_LIB= libKF5Codecs.so completion_PORT= x11-toolkits/kf5-kcompletion completion_LIB= libKF5Completion.so config_PORT= devel/kf5-kconfig config_LIB= libKF5ConfigCore.so configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets configwidgets_LIB= libKF5ConfigWidgets.so coreaddons_PORT= devel/kf5-kcoreaddons coreaddons_LIB= libKF5CoreAddons.so crash_PORT= devel/kf5-kcrash crash_LIB= libKF5Crash.so dbusaddons_PORT= devel/kf5-kdbusaddons dbusaddons_LIB= libKF5DBusAddons.so designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so designerplugin_TYPE= run dnssd_PORT= dns/kf5-kdnssd dnssd_LIB= libKF5DNSSD.so doctools_PORT= devel/kf5-kdoctools doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 ecm_PORT= devel/kf5-extra-cmake-modules ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake emoticons_PORT= x11-themes/kf5-kemoticons emoticons_LIB= libKF5Emoticons.so filemetadata_PORT= devel/kf5-kfilemetadata filemetadata_LIB= libKF5FileMetaData.so frameworkintegration_PORT= x11/kf5-frameworkintegration frameworkintegration_LIB= libKF5Style.so globalaccel_PORT= x11/kf5-kglobalaccel globalaccel_LIB= libKF5GlobalAccel.so guiaddons_PORT= x11-toolkits/kf5-kguiaddons guiaddons_LIB= libKF5GuiAddons.so holidays_PORT= net/kf5-kholidays holidays_LIB= libKF5Holidays.so i18n_PORT= devel/kf5-ki18n i18n_LIB= libKF5I18n.so iconthemes_PORT= x11-themes/kf5-kiconthemes iconthemes_LIB= libKF5IconThemes.so idletime_PORT= devel/kf5-kidletime idletime_LIB= libKF5IdleTime.so init_PORT= x11/kf5-kinit init_PATH= ${KDE_PREFIX}/bin/kdeinit5 itemmodels_PORT= devel/kf5-kitemmodels itemmodels_LIB= libKF5ItemModels.so itemviews_PORT= x11-toolkits/kf5-kitemviews itemviews_LIB= libKF5ItemViews.so jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets jobwidgets_LIB= libKF5JobWidgets.so js_PORT= www/kf5-kjs js_LIB= libKF5JS.so jsembed_PORT= www/kf5-kjsembed jsembed_LIB= libKF5JsEmbed.so kcmutils_PORT= devel/kf5-kcmutils kcmutils_LIB= libKF5KCMUtils.so kdeclarative_PORT= devel/kf5-kdeclarative kdeclarative_LIB= libKF5Declarative.so kded_PORT= x11/kf5-kded kded_LIB= libkdeinit5_kded5.so kdelibs4support_PORT= x11/kf5-kdelibs4support kdelibs4support_LIB= libKF5KDELibs4Support.so kdesu_PORT= security/kf5-kdesu kdesu_LIB= libKF5Su.so kdewebkit_PORT= www/kf5-kdewebkit kdewebkit_LIB= libKF5WebKit.so khtml_PORT= www/kf5-khtml khtml_LIB= libKF5KHtml.so kimageformats_PORT= graphics/kf5-kimageformats kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kimageformats_TYPE= run kio_PORT= devel/kf5-kio kio_LIB= libKF5KIOCore.so kirigami2_PORT= x11-toolkits/kf5-kirigami2 kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kross_PORT= lang/kf5-kross kross_LIB= libKF5KrossCore.so mediaplayer_PORT= multimedia/kf5-kmediaplayer mediaplayer_LIB= libKF5MediaPlayer.so.5 newstuff_PORT= devel/kf5-knewstuff newstuff_LIB= libKF5NewStuff.so notifications_PORT= devel/kf5-knotifications notifications_LIB= libKF5Notifications.so notifyconfig_PORT= devel/kf5-knotifyconfig notifyconfig_LIB= libKF5NotifyConfig.so # This is a KF5 port used by KDE4 as well, but it's architecture-independent # and only contains icons. oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme oxygen-icons5_TYPE= run package_PORT= devel/kf5-kpackage package_LIB= libKF5Package.so parts_PORT= devel/kf5-kparts parts_LIB= libKF5Parts.so people_PORT= devel/kf5-kpeople people_LIB= libKF5People.so plasma-framework_PORT= x11/kf5-plasma-framework plasma-framework_LIB= libKF5Plasma.so plotting_PORT= graphics/kf5-kplotting plotting_LIB= libKF5Plotting.so prison_PORT= graphics/kf5-prison prison_LIB= libKF5Prison.so pty_PORT= devel/kf5-kpty pty_LIB= libKF5Pty.so purpose_PORT= misc/kf5-purpose purpose_LIB= libKF5Purpose.so qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so runner_PORT= x11/kf5-krunner runner_LIB= libKF5Runner.so service_PORT= devel/kf5-kservice service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 solid_PORT= devel/kf5-solid solid_LIB= libKF5Solid.so sonnet_PORT= textproc/kf5-sonnet sonnet_LIB= libKF5SonnetCore.so syndication_PORT= net/kf5-syndication syndication_LIB= libKF5Syndication.so syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so texteditor_PORT= devel/kf5-ktexteditor texteditor_LIB= libKF5TextEditor.so textwidgets_PORT= x11-toolkits/kf5-ktextwidgets textwidgets_LIB= libKF5TextWidgets.so threadweaver_PORT= devel/kf5-threadweaver threadweaver_LIB= libKF5ThreadWeaver.so unitconversion_PORT= devel/kf5-kunitconversion unitconversion_LIB= libKF5UnitConversion.so wallet_PORT= sysutils/kf5-kwallet wallet_LIB= libKF5Wallet.so wayland_PORT= x11/kf5-kwayland wayland_LIB= libKF5WaylandClient.so widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons widgetsaddons_LIB= libKF5WidgetsAddons.so windowsystem_PORT= x11/kf5-kwindowsystem windowsystem_LIB= libKF5WindowSystem.so xmlgui_PORT= x11-toolkits/kf5-kxmlgui xmlgui_LIB= libKF5XmlGui.so xmlrpcclient_PORT= net/kf5-kxmlrpcclient xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== activitymanagerd_PORT= x11/plasma5-kactivitymanagerd activitymanagerd_LIB= libkactivitymanagerd_plugin.so breeze_PORT= x11-themes/plasma5-breeze breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 decoration_PORT= x11-wm/plasma5-kdecoration decoration_LIB= libkdecorations2.so discover_PORT= sysutils/plasma5-discover discover_PATH= ${KDE_PREFIX}/bin/plasma-discover drkonqi_PORT= sysutils/plasma5-drkonqi drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi hotkeys_PORT= devel/plasma5-khotkeys hotkeys_LIB= libkhotkeysprivate.so.5 infocenter_PORT= sysutils/plasma5-kinfocenter infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kgamma5_PORT= x11/plasma5-kgamma5 kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kmenuedit_PORT= sysutils/plasma5-kmenuedit kmenuedit_LIB= libkdeinit5_kmenuedit.so kscreen_PORT= x11/plasma5-kscreen kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kscreenlocker_PORT= security/plasma5-kscreenlocker kscreenlocker_LIB= libKScreenLocker.so ksshaskpass_PORT= security/plasma5-ksshaskpass ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass ksysguard_PORT= sysutils/plasma5-ksysguard ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kwallet-pam_PORT= security/plasma5-kwallet-pam kwallet-pam_PATH= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kwayland-integration_PORT= x11/plasma5-kwayland-integration kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kwin_PORT= x11-wm/plasma5-kwin kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kwrited_PORT= devel/plasma5-kwrited kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so libkscreen_PORT= x11/plasma5-libkscreen libkscreen_LIB= libKF5Screen.so libksysguard_PORT= sysutils/plasma5-libksysguard libksysguard_LIB= libksgrd.so milou_PORT= deskutils/plasma5-milou milou_LIB= libmilou.so.5 oxygen_PORT= x11-themes/plasma5-oxygen oxygen_LIB= liboxygenstyle5.so plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host plasma-desktop_PORT= x11/plasma5-plasma-desktop plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb plasma-integration_PORT= x11/plasma5-plasma-integration plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so plasma-pa_PORT= audio/plasma5-plasma-pa plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so plasma-sdk_PORT= devel/plasma5-plasma-sdk plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer plasma-workspace_PORT= x11/plasma5-plasma-workspace plasma-workspace_LIB= libkdeinit5_kcminit.so plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 powerdevil_PORT= sysutils/plasma5-powerdevil powerdevil_LIB= libpowerdevilcore.so systemsettings_PORT= sysutils/plasma5-systemsettings systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 user-manager_PORT= sysutils/plasma5-user-manager user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= akonadicontacts_PORT= net/akonadi-contacts akonadicontacts_LIB= libKF5AkonadiContact.so akonadiimportwizard_PORT= deskutils/akonadi-import-wizard akonadiimportwizard_LIB= libKPimImportWizard.so akonadimime_PORT= net/akonadi-mime akonadimime_LIB= libKF5AkonadiMime.so akonadinotes_PORT= net/akonadi-notes akonadinotes_LIB= libKF5AkonadiNotes.so akonadicalendar_PORT= net/akonadi-calendar akonadicalendar_LIB= libKF5AkonadiCalendar.so akonadisearch_PORT= net/akonadi-search akonadisearch_LIB= libKF5AkonadiSearchCore.so alarmcalendar_PORT= net/kalarmcal alarmcalendar_LIB= libKF5AlarmCalendar.so blog_PORT= net/kblog blog_LIB= libKF5Blog.so calendarsupport_PORT= net/calendarsupport calendarsupport_LIB= libKF5CalendarSupport.so calendarcore_PORT= net/kcalcore calendarcore_LIB= libKF5CalendarCore.so calendarutils_PORT= net/kcalutils calendarutils_LIB= libKF5CalendarUtils.so contacts_PORT= net/kcontacts contacts_LIB= libKF5Contacts.so eventviews_PORT= net/eventviews eventviews_LIB= libKF5EventViews.so gapi_PORT= net/libkgapi gapi_LIB= libKPimGAPICore.so grantleetheme_PORT= deskutils/grantleetheme grantleetheme_LIB= libKF5GrantleeTheme.so gravatar_PORT= net/libgravatar gravatar_LIB= libKF5Gravatar.so identitymanagement_PORT= net/kidentitymanagement identitymanagement_LIB= libKF5IdentityManagement.so imap_PORT= net/kimap imap_LIB= libKF5IMAP.so incidenceeditor_PORT= net/incidenceeditor incidenceeditor_LIB= libKF5IncidenceEditor.so kdepim-addons_PORT= deskutils/kdepim-addons kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kdepim-apps-libs_LIB= libKF5SendLater.so kdepim-runtime5_PORT= deskutils/kdepim-runtime kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kitinerary_PORT= net/kitinerary kitinerary_LIB= libKPimItinerary.so kontactinterface_PORT= net/kontactinterface kontactinterface_LIB= libKF5KontactInterface.so kpimdav_PORT= net/kdav kpimdav_LIB= libKPimKDAV.so kpkpass_PORT= security/kpkpass kpkpass_LIB= libKPimPkPass.so ksmtp_PORT= net/ksmtp ksmtp_LIB= libKPimSMTP.so ldap_PORT= net/kldap ldap_LIB= libKF5Ldap.so libkdepim_PORT= deskutils/libkdepim libkdepim_LIB= libKF5Libkdepim.so libkleo_PORT= security/libkleo libkleo_LIB= libKF5Libkleo.so libksieve_PORT= net/libksieve libksieve_LIB= libKF5KSieve.so mailcommon_PORT= net/mailcommon mailcommon_LIB= libKF5MailCommon.so mailimporter_PORT= net/mailimporter mailimporter_LIB= libKF5MailImporter.so mailtransport_PORT= net/kmailtransport mailtransport_LIB= libKF5MailTransport.so mbox_PORT= net/kmbox mbox_LIB= libKF5Mbox.so messagelib_PORT= net/messagelib messagelib_LIB= libKF5MessageList.so mime_PORT= net/kmime mime_LIB= libKF5Mime.so pimcommon_PORT= net/pimcommon pimcommon_LIB= libKF5PimCommon.so pimtextedit_PORT= net/kpimtextedit pimtextedit_LIB= libKF5PimTextEdit.so tnef_PORT= net/ktnef tnef_LIB= libKF5Tnef.so # PIM Applications akonadiconsole_PORT= deskutils/akonadiconsole akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole akregator_PORT= deskutils/akregator akregator_PATH= ${KDE_PREFIX}/bin/akregator grantlee-editor_PORT= deskutils/grantlee-editor grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kaddressbook_PORT= deskutils/kaddressbook kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kalarm_PORT= deskutils/kalarm kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kmail_PORT= deskutils/kmail kmail_PATH= ${KDE_PREFIX}/bin/kmail kmail-account-wizard_PORT= deskutils/kmail-account-wizard kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard knotes_PORT= deskutils/knotes knotex_PATH= ${KDE_PREFIX}/bin/knotes kontact_PORT= deskutils/kontact kontact_PATH= ${KDE_PREFIX}/bin/kontact korganizer_PORT= deskutils/korganizer korganizer_PATH= ${KDE_PREFIX}/bin/korganizer mbox-importer_PORT= deskutils/mbox-importer mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter pim-data-exporter_PORT= deskutils/pim-data-exporter pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimsettingexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ akonadi5_PORT= databases/akonadi akonadi5_LIB= libKF5AkonadiPrivate.so baloo-widgets5_PORT= sysutils/baloo-widgets baloo-widgets5_LIB= libKF5BalooWidgets.so kate5_PORT= editors/kate kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so libkcddb5_PORT= audio/libkcddb libkcddb5_LIB= libKF5Cddb.so libkcompactdisc5_PORT= audio/libkcompactdisc-kde5 libkcompactdisc5_LIB= libKF5CompactDisc.so libkdcraw5_PORT= graphics/libkdcraw libkdcraw5_LIB= libKF5KDcraw.so libkdegames5_PORT= games/libkdegames libkdegames5_LIB= libKF5KDEGames.so libkeduvocdocument5_PORT= misc/libkeduvocdocument libkeduvocdocument5_LIB= libKEduVocDocument.so libkexiv25_PORT= graphics/libkexiv2 libkexiv25_LIB= libKF5KExiv2.so libkipi5_PORT= graphics/libkipi libkipi5_LIB= libKF5Kipi.so libksane5_PORT= graphics/libksane libksane5_LIB= libKF5Sane.so marble5_PORT= astro/marble marble5_LIB= libmarblewidget-qt5.so okular5_PORT= graphics/okular okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} ${comp}_PORT= ${${comp}${_KDE_VERSION}_PORT} . if defined(${comp}${_KDE_VERSION}_LIB) ${comp}_LIB= ${${comp}${_KDE_VERSION}_LIB} . else . if defined(${comp}${_KDE_VERSION}_PATH}) ${comp}_PATH= ${${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(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" ${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" ${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" ${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(${component}_TYPE) ${component}_TYPE= build run . endif # Set real dependencies. . if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT} . else ${component}_PATH?= ${KDE_PREFIX}/lib/${${component}_LIB} ${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT} . if ${${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${${component}_DEPENDS} . endif . if ${${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${${component}_DEPENDS} . endif . endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} . endif # defined(${component}_PORT) && defined(${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 489892) +++ head/accessibility/kmag/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225569 -SHA256 (KDE/applications/18.12.0/kmag-18.12.0.tar.xz) = a75e1130b3b49e16077a109cfb509bd8a98efc9733b8bb04934344cc095b2c56 -SIZE (KDE/applications/18.12.0/kmag-18.12.0.tar.xz) = 628812 +TIMESTAMP = 1546985117 +SHA256 (KDE/applications/18.12.1/kmag-18.12.1.tar.xz) = fc6213c843918800abc457a23a41ad2dd73f76cc093615daeebb0bf5ed72e9c5 +SIZE (KDE/applications/18.12.1/kmag-18.12.1.tar.xz) = 629164 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 489892) +++ head/accessibility/kmousetool/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225569 -SHA256 (KDE/applications/18.12.0/kmousetool-18.12.0.tar.xz) = 60593618ba00d3eb21ae913fc676a2d023fe1208d400e8961056d2c34398dc02 -SIZE (KDE/applications/18.12.0/kmousetool-18.12.0.tar.xz) = 112708 +TIMESTAMP = 1546985117 +SHA256 (KDE/applications/18.12.1/kmousetool-18.12.1.tar.xz) = 1dd91586383c0a42d1f65c4ee8a16ca18b4c01cfe572ffb1520e845267f7dc1f +SIZE (KDE/applications/18.12.1/kmousetool-18.12.1.tar.xz) = 112712 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 489892) +++ head/accessibility/kmouth/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225569 -SHA256 (KDE/applications/18.12.0/kmouth-18.12.0.tar.xz) = 69dcb704cd5733d3b120530757a627a7af6529fc4d3631cfc6464ade55e7e145 -SIZE (KDE/applications/18.12.0/kmouth-18.12.0.tar.xz) = 1766124 +TIMESTAMP = 1546985117 +SHA256 (KDE/applications/18.12.1/kmouth-18.12.1.tar.xz) = 85f3c76712037f4f97d798e043fe569f43b49f08db7de15d6be0549729d402bd +SIZE (KDE/applications/18.12.1/kmouth-18.12.1.tar.xz) = 1766284 Index: head/archivers/ark/Makefile =================================================================== --- head/archivers/ark/Makefile (revision 489892) +++ head/archivers/ark/Makefile (revision 489893) @@ -1,40 +1,39 @@ # $FreeBSD$ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext libarchive kde:5 \ qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} OPTIONS_SUB= YES 7ZIP_DESC= Support for 7-Zip archives 7ZIP_RUN_DEPENDS= 7z:archivers/p7zip RAR_DESC= Support for RAR archives RAR_RUN_DEPENDS= unrar:archivers/unrar \ rar:archivers/rar ZIP_DESC= Support for ZIP archives ZIP_LIB_DEPENDS= libzip.so:archivers/libzip ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip .include Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 489892) +++ head/archivers/ark/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225568 -SHA256 (KDE/applications/18.12.0/ark-18.12.0.tar.xz) = 2f50e6f5b0973e6e760499c680d9c54aeef0d93c9440db4805401399148ad59a -SIZE (KDE/applications/18.12.0/ark-18.12.0.tar.xz) = 2580244 +TIMESTAMP = 1546985116 +SHA256 (KDE/applications/18.12.1/ark-18.12.1.tar.xz) = 0665a10b860a914b64b5e41de6c159f5dac9fbf1dce10f5c097cc88611568add +SIZE (KDE/applications/18.12.1/ark-18.12.1.tar.xz) = 2580288 Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 489892) +++ head/astro/libkgeomap/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225572 -SHA256 (KDE/applications/18.12.0/libkgeomap-18.12.0.tar.xz) = 71c3e20f3c7b36967be8a1898274eec02b2214d2962a23ed8927b4718964b1de -SIZE (KDE/applications/18.12.0/libkgeomap-18.12.0.tar.xz) = 151164 +TIMESTAMP = 1546985120 +SHA256 (KDE/applications/18.12.1/libkgeomap-18.12.1.tar.xz) = bf4928d386415642e943f553fb285da225027cb69cf442facb3962a475384e46 +SIZE (KDE/applications/18.12.1/libkgeomap-18.12.1.tar.xz) = 151076 Index: head/astro/marble/Makefile =================================================================== --- head/astro/marble/Makefile (revision 489892) +++ head/astro/marble/Makefile (revision 489893) @@ -1,46 +1,45 @@ # $FreeBSD$ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libquazip5.so:archivers/quazip@qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n jobwidgets kio newstuff package parts \ plasma-framework runner service sonnet textwidgets wallet \ widgetsaddons xmlgui USE_QT= concurrent core dbus declarative designer gui location network opengl \ phonon4 printsupport script sql svg webchannel widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null # We have to set QT_IMPORTS_PATH, as it does not get picked up CMAKE_ARGS= -DMOBILE:BOOL=FALSE \ -DQT_IMPORTS_DIR:PATH=${QT_IMPORTDIR} OPTIONS_DEFINE= GPS DOCS WEBENGINE OPTIONS_DEFAULT=GPS OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE OPTIONS_SUB= yes GPS_DESC= Support for GPS position provider GPS_LIB_DEPENDS= libgps.so:astro/gpsd GPS_CMAKE_BOOL_ON= WITH_libgps WEBENGINE_DESC= Add dependency on qt5-webengine WEBENGINE_USE= QT=webengine WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets .include Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 489892) +++ head/astro/marble/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225573 -SHA256 (KDE/applications/18.12.0/marble-18.12.0.tar.xz) = db39df148d327a61fd6080d4b3e55c8734762e4042c98386229fe3fbbcd85f52 -SIZE (KDE/applications/18.12.0/marble-18.12.0.tar.xz) = 52415644 +TIMESTAMP = 1546985120 +SHA256 (KDE/applications/18.12.1/marble-18.12.1.tar.xz) = 9e3f078279f07dabf83dbc52f0cecf479020bbaf886ca9a3631e275509905541 +SIZE (KDE/applications/18.12.1/marble-18.12.1.tar.xz) = 52422648 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 489892) +++ head/audio/audiocd-kio/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225582 -SHA256 (KDE/applications/18.12.0/audiocd-kio-18.12.0.tar.xz) = 35ded6eb564f06fa7234d6b88b57dff245b657bcb8571b43546616f63ed39310 -SIZE (KDE/applications/18.12.0/audiocd-kio-18.12.0.tar.xz) = 249952 +TIMESTAMP = 1546985128 +SHA256 (KDE/applications/18.12.1/audiocd-kio-18.12.1.tar.xz) = d73c51ae99e82ca616c7cc21296ffa9341ff7f9cb6fa84ee75c96dc0451b604f +SIZE (KDE/applications/18.12.1/audiocd-kio-18.12.1.tar.xz) = 250504 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 489892) +++ head/audio/audiocd-kio/pkg-plist (revision 489893) @@ -1,260 +1,260 @@ etc/xdg/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%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so -%%QT_PLUGINDIR%%/libkcm_audiocd.so %%QT_PLUGINDIR%%/libkio_audiocd.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_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/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_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_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_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/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_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_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_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_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_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_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_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_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_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_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.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_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_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_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_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_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_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_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_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_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_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/solid/actions/solid_audiocd.desktop share/metainfo/org.kde.kio_audiocd.appdata.xml Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 489892) +++ head/audio/juk/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225582 -SHA256 (KDE/applications/18.12.0/juk-18.12.0.tar.xz) = 5f89c2cf9a0bb1470064d54e0766f64a0cf4eace47812db637f6207931db5dcb -SIZE (KDE/applications/18.12.0/juk-18.12.0.tar.xz) = 1874936 +TIMESTAMP = 1546985128 +SHA256 (KDE/applications/18.12.1/juk-18.12.1.tar.xz) = 36e89ce921e959b2b158bc79a61decbf71bcf7c975973650f5ea8d1f98baf493 +SIZE (KDE/applications/18.12.1/juk-18.12.1.tar.xz) = 1875404 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 489892) +++ head/audio/kmix/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544478538 -SHA256 (KDE/applications/18.12.0/kmix-18.12.0.tar.xz) = 49311a4043acaba2ee58ce3b715334aef11a19338b1c84b2f15484c48569a126 -SIZE (KDE/applications/18.12.0/kmix-18.12.0.tar.xz) = 1075664 +TIMESTAMP = 1546985128 +SHA256 (KDE/applications/18.12.1/kmix-18.12.1.tar.xz) = e3684124bbf7cf1e4997a1a6627e439b0291bb06646b76e07a09d35e629547e5 +SIZE (KDE/applications/18.12.1/kmix-18.12.1.tar.xz) = 1075688 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 489892) +++ head/audio/kwave/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225582 -SHA256 (KDE/applications/18.12.0/kwave-18.12.0.tar.xz) = 10661106435de26f2cd1e2b9fb83f966e7722ed99b87c36f3a0da6ae22880502 -SIZE (KDE/applications/18.12.0/kwave-18.12.0.tar.xz) = 6212188 +TIMESTAMP = 1546985129 +SHA256 (KDE/applications/18.12.1/kwave-18.12.1.tar.xz) = a312c997d787d350348bdb507d098e017f53d7cf579ff4bc5462f9ff9dc31494 +SIZE (KDE/applications/18.12.1/kwave-18.12.1.tar.xz) = 6212400 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 489892) +++ head/audio/libkcddb/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225581 -SHA256 (KDE/applications/18.12.0/libkcddb-18.12.0.tar.xz) = ca71baa4d29e0e1c17d0b67d46adce0ef2d915152cff78b56239e5cdca5ab595 -SIZE (KDE/applications/18.12.0/libkcddb-18.12.0.tar.xz) = 426692 +TIMESTAMP = 1546985128 +SHA256 (KDE/applications/18.12.1/libkcddb-18.12.1.tar.xz) = a5849aafc0f6f619c4a0a7d2dbd19c71de9b7f310c7a3b84d5303c11dc5c39cd +SIZE (KDE/applications/18.12.1/libkcddb-18.12.1.tar.xz) = 426576 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 489892) +++ head/audio/libkcompactdisc/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225582 -SHA256 (KDE/applications/18.12.0/libkcompactdisc-18.12.0.tar.xz) = 6adef7596d24d9c586de3dea83c0d4f1f2687cbc1d3f702822d6a1bba0093ccb -SIZE (KDE/applications/18.12.0/libkcompactdisc-18.12.0.tar.xz) = 88580 +TIMESTAMP = 1546985128 +SHA256 (KDE/applications/18.12.1/libkcompactdisc-18.12.1.tar.xz) = 4ca9ff51d3d9ea106c65484af024263e99cb0f4f6d8de8a57b922e9c7482ee6c +SIZE (KDE/applications/18.12.1/libkcompactdisc-18.12.1.tar.xz) = 88544 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 489892) +++ head/databases/akonadi/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225599 -SHA256 (KDE/applications/18.12.0/akonadi-18.12.0.tar.xz) = 0860b4a3e2a091658b93a032cbf78d677dbb3acfd305469009205f365dce6eb0 -SIZE (KDE/applications/18.12.0/akonadi-18.12.0.tar.xz) = 1552448 +TIMESTAMP = 1546985145 +SHA256 (KDE/applications/18.12.1/akonadi-18.12.1.tar.xz) = 9d25e849ac81f552fe0d6232f43901803fa25905d023fd1a7f1451c7220f3290 +SIZE (KDE/applications/18.12.1/akonadi-18.12.1.tar.xz) = 1552724 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 489892) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225578 -SHA256 (KDE/applications/18.12.0/akonadi-calendar-tools-18.12.0.tar.xz) = 17aa8c1b6629663e65266fe059dd3a010f3201c45971c01259910def287a5670 -SIZE (KDE/applications/18.12.0/akonadi-calendar-tools-18.12.0.tar.xz) = 225048 +TIMESTAMP = 1546985125 +SHA256 (KDE/applications/18.12.1/akonadi-calendar-tools-18.12.1.tar.xz) = f4a9d950173cdc2cd8978cd54394e93ad445d1d1274fb29b68237e0dd494a428 +SIZE (KDE/applications/18.12.1/akonadi-calendar-tools-18.12.1.tar.xz) = 224972 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 489892) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225580 -SHA256 (KDE/applications/18.12.0/akonadi-import-wizard-18.12.0.tar.xz) = cd51da5ac6607cd08d8bb5b96e14c052ba10acfdf9f28530f918a7b5cd3f87e8 -SIZE (KDE/applications/18.12.0/akonadi-import-wizard-18.12.0.tar.xz) = 439196 +TIMESTAMP = 1546985126 +SHA256 (KDE/applications/18.12.1/akonadi-import-wizard-18.12.1.tar.xz) = b2dc7882d394610ce42a17290d41f0ef4dae4de4bdd82e6f0c11d1b0afb62527 +SIZE (KDE/applications/18.12.1/akonadi-import-wizard-18.12.1.tar.xz) = 438996 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 489892) +++ head/deskutils/akonadiconsole/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225581 -SHA256 (KDE/applications/18.12.0/akonadiconsole-18.12.0.tar.xz) = 65c53c7b938dca80919b97b3329d3764a722e7f3e8f3c6378f8505155e42e8e1 -SIZE (KDE/applications/18.12.0/akonadiconsole-18.12.0.tar.xz) = 193828 +TIMESTAMP = 1546985127 +SHA256 (KDE/applications/18.12.1/akonadiconsole-18.12.1.tar.xz) = 932360ab89aec5006ba40cd44244dd9ca6b1a5ad6ca0e89699674c66ccbcb01a +SIZE (KDE/applications/18.12.1/akonadiconsole-18.12.1.tar.xz) = 193828 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 489892) +++ head/deskutils/akregator/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225580 -SHA256 (KDE/applications/18.12.0/akregator-18.12.0.tar.xz) = 0dfa2a20c6a6118cfbcec409315b3fe5d8d08ee509f5204e0af6bd7dd945260d -SIZE (KDE/applications/18.12.0/akregator-18.12.0.tar.xz) = 2189036 +TIMESTAMP = 1546985127 +SHA256 (KDE/applications/18.12.1/akregator-18.12.1.tar.xz) = 299393c71ece1e774502c496d615d5e55535b12a81ceb18eacabdde2de364c7e +SIZE (KDE/applications/18.12.1/akregator-18.12.1.tar.xz) = 2189848 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 489892) +++ head/deskutils/grantlee-editor/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225580 -SHA256 (KDE/applications/18.12.0/grantlee-editor-18.12.0.tar.xz) = 365e25e91c4ef6b77c9f73d962f26568966827d11f08632dc3f32138ad66b040 -SIZE (KDE/applications/18.12.0/grantlee-editor-18.12.0.tar.xz) = 110700 +TIMESTAMP = 1546985127 +SHA256 (KDE/applications/18.12.1/grantlee-editor-18.12.1.tar.xz) = 442acac2eec2d92d2ffeac8ce7dc9491561a8a054b5acf8a929b359273e40565 +SIZE (KDE/applications/18.12.1/grantlee-editor-18.12.1.tar.xz) = 110696 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 489892) +++ head/deskutils/grantleetheme/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225578 -SHA256 (KDE/applications/18.12.0/grantleetheme-18.12.0.tar.xz) = fdffe9bbfef0e0f25be1dd3a63073834b58eb598fd156a11239d6f1f3718b8cc -SIZE (KDE/applications/18.12.0/grantleetheme-18.12.0.tar.xz) = 51580 +TIMESTAMP = 1546985125 +SHA256 (KDE/applications/18.12.1/grantleetheme-18.12.1.tar.xz) = 8c3a62510efcc054f50b0800be378bb5d20eb3f889bbe9ad81d6dfbfd41196b0 +SIZE (KDE/applications/18.12.1/grantleetheme-18.12.1.tar.xz) = 51524 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 489892) +++ head/deskutils/kaddressbook/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225579 -SHA256 (KDE/applications/18.12.0/kaddressbook-18.12.0.tar.xz) = f2568b8a5ae47502af82583fe49d934655f751165289026308d528ae8de5d535 -SIZE (KDE/applications/18.12.0/kaddressbook-18.12.0.tar.xz) = 471032 +TIMESTAMP = 1546985126 +SHA256 (KDE/applications/18.12.1/kaddressbook-18.12.1.tar.xz) = 53197384850ac7022d7c3de3bec504d92668747ef0cdef7b52564581995c8a58 +SIZE (KDE/applications/18.12.1/kaddressbook-18.12.1.tar.xz) = 471084 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 489892) +++ head/deskutils/kalarm/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225576 -SHA256 (KDE/applications/18.12.0/kalarm-18.12.0.tar.xz) = 228e40edf6cdeacb04113b7dde32838b7d236c4bb788d95c1e5f83421035b3b2 -SIZE (KDE/applications/18.12.0/kalarm-18.12.0.tar.xz) = 1812392 +TIMESTAMP = 1546985124 +SHA256 (KDE/applications/18.12.1/kalarm-18.12.1.tar.xz) = 34d2f00f8aa8f7e7b0de5fea0d8c4b0bb5b6f3bc09c499189b348ba6c07059fc +SIZE (KDE/applications/18.12.1/kalarm-18.12.1.tar.xz) = 1811976 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 489892) +++ head/deskutils/kcharselect/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225581 -SHA256 (KDE/applications/18.12.0/kcharselect-18.12.0.tar.xz) = 1cbfd369085a57659716a050d8a145f664b216720f6936f4a10fcac2a8c79e68 -SIZE (KDE/applications/18.12.0/kcharselect-18.12.0.tar.xz) = 355688 +TIMESTAMP = 1546985128 +SHA256 (KDE/applications/18.12.1/kcharselect-18.12.1.tar.xz) = a64647ede6c0a8e4e75a11891f290d33a5ef4c670686f3497ea9d9a0f7b98adc +SIZE (KDE/applications/18.12.1/kcharselect-18.12.1.tar.xz) = 333572 Index: head/deskutils/kdepim-addons/Makefile =================================================================== --- head/deskutils/kdepim-addons/Makefile (revision 489892) +++ head/deskutils/kdepim-addons/Makefile (revision 489893) @@ -1,41 +1,43 @@ # $FreeBSD$ PORTNAME= kdepim-addons DISTVERSION= ${KDE_APPLICATIONS_VERSION} 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 kpkpass libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport messagelib mime pimcommon \ pimtextedit tnef USE_QT= 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 489892) +++ head/deskutils/kdepim-addons/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225575 -SHA256 (KDE/applications/18.12.0/kdepim-addons-18.12.0.tar.xz) = 7766eb2af244bd45140a9d27b13fbaadbc16af0f52f481aa8e1d00cb0ad17e35 -SIZE (KDE/applications/18.12.0/kdepim-addons-18.12.0.tar.xz) = 2038112 +TIMESTAMP = 1546985123 +SHA256 (KDE/applications/18.12.1/kdepim-addons-18.12.1.tar.xz) = 575308fe132500a2757ba87cfb63ef5e07db4fbe5913a37f5682ee341ecee6bf +SIZE (KDE/applications/18.12.1/kdepim-addons-18.12.1.tar.xz) = 2039288 Index: head/deskutils/kdepim-addons/pkg-plist =================================================================== --- head/deskutils/kdepim-addons/pkg-plist (revision 489892) +++ head/deskutils/kdepim-addons/pkg-plist (revision 489893) @@ -1,931 +1,924 @@ -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/kdepim-addons.categories etc/xdg/kdepim-addons.renamecategories etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libcoisceim_widget.so.5 -lib/libcoisceim_widget.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookimportexportlibprivate.so.5 lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% -%%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_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_logactivitiesplugin.so +%%QT_PLUGINDIR%%/kmail/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/kmail_nonbreakingspaceeditorplugin.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_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_grantleeheaderstyleplugin.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/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_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/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_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/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_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/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_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/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_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/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_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/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_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/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_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/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_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/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_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/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_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/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/mailreader.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/mailreader.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_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/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/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/mailreader.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.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_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/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_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/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_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/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_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/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_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_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/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_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/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_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/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_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/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_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/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_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo +share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_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/messageviewer_bodypartformatter_pkpass.mo +share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.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_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.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/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 489892) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225578 -SHA256 (KDE/applications/18.12.0/kdepim-apps-libs-18.12.0.tar.xz) = fd181d64229efc00633ad686616949670ba71555785314a897619b2580b1c3a3 -SIZE (KDE/applications/18.12.0/kdepim-apps-libs-18.12.0.tar.xz) = 84724 +TIMESTAMP = 1546985126 +SHA256 (KDE/applications/18.12.1/kdepim-apps-libs-18.12.1.tar.xz) = 7160d7cf38b77d07250fc3e94d3b2482f4805c5c808fce0894c69804aa01031b +SIZE (KDE/applications/18.12.1/kdepim-apps-libs-18.12.1.tar.xz) = 84832 Index: head/deskutils/kdepim-apps-libs/pkg-plist =================================================================== --- head/deskutils/kdepim-apps-libs/pkg-plist (revision 489892) +++ head/deskutils/kdepim-apps-libs/pkg-plist (revision 489893) @@ -1,184 +1,185 @@ etc/xdg/kdepim-apps-lib.categories etc/xdg/kdepim-apps-lib.renamecategories include/KF5/FollowupReminder/FollowUpReminderInfo include/KF5/FollowupReminder/FollowUpReminderUtil include/KF5/KAddressBookImportExport/KAddressBookContactSelectionDialog include/KF5/KAddressBookImportExport/KAddressBookContactSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookExportSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookImportExportContactList include/KF5/KAddressBookImportExport/KAddressBookImportExportPlugin include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginInterface include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginManager include/KF5/KaddressbookGrantlee/GrantleeContactFormatter include/KF5/KaddressbookGrantlee/GrantleeContactGroupFormatter include/KF5/KaddressbookGrantlee/GrantleeContactViewer include/KF5/KaddressbookGrantlee/GrantleePrint include/KF5/KdepimDBusInterfaces/ReminderClient include/KF5/KdepimDBusInterfaces/UriHandler include/KF5/SendLater/SendLaterDialog include/KF5/SendLater/SendLaterInfo include/KF5/SendLater/SendLaterUtil include/KF5/followupreminder/followupreminder_export.h include/KF5/followupreminder/followupreminderagentsettings.h include/KF5/followupreminder/followupreminderinfo.h include/KF5/followupreminder/followupreminderutil.h include/KF5/followupreminder_version.h include/KF5/kaddressbookgrantlee/grantleecontactformatter.h include/KF5/kaddressbookgrantlee/grantleecontactgroupformatter.h include/KF5/kaddressbookgrantlee/grantleecontactviewer.h include/KF5/kaddressbookgrantlee/grantleeprint.h include/KF5/kaddressbookgrantlee/kaddressbook_grantlee_export.h include/KF5/kaddressbookgrantlee_version.h include/KF5/kaddressbookimportexport/kaddressbook_importexport_export.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectiondialog.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookexportselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactfields.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactlist.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugin.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugininterface.h include/KF5/kaddressbookimportexport/kaddressbookimportexportpluginmanager.h include/KF5/kaddressbookimportexport_version.h include/KF5/kdepimdbusinterfaces/kdepimdbusinterfaces_export.h include/KF5/kdepimdbusinterfaces/reminderclient.h include/KF5/kdepimdbusinterfaces/urihandler.h include/KF5/kdepimdbusinterfaces_version.h include/KF5/sendlater/sendlater_export.h include/KF5/sendlater/sendlateragentsettings.h include/KF5/sendlater/sendlaterdialog.h include/KF5/sendlater/sendlaterinfo.h include/KF5/sendlater/sendlaterutil.h include/KF5/sendlater_version.h lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfig.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfigVersion.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfig.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfigVersion.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfig.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfigVersion.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfig.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfigVersion.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets.cmake lib/cmake/KF5SendLater/KF5SendLaterConfig.cmake lib/cmake/KF5SendLater/KF5SendLaterConfigVersion.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets.cmake lib/libKF5FollowupReminder.so lib/libKF5FollowupReminder.so.5 lib/libKF5FollowupReminder.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookGrantlee.so lib/libKF5KaddressbookGrantlee.so.5 lib/libKF5KaddressbookGrantlee.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookImportExport.so lib/libKF5KaddressbookImportExport.so.5 lib/libKF5KaddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KdepimDBusInterfaces.so lib/libKF5KdepimDBusInterfaces.so.5 lib/libKF5KdepimDBusInterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5SendLater.so lib/libKF5SendLater.so.5 lib/libKF5SendLater.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_FollowupReminder.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookGrantlee.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookImportExport.pri %%QT_MKSPECDIR%%/modules/qt_KdepimDBusInterfaces.pri %%QT_MKSPECDIR%%/modules/qt_SendLater.pri share/locale/ar/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ar/LC_MESSAGES/libsendlater.mo share/locale/bs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/bs/LC_MESSAGES/libsendlater.mo share/locale/ca/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca/LC_MESSAGES/libsendlater.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca@valencia/LC_MESSAGES/libsendlater.mo share/locale/cs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/cs/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/cs/LC_MESSAGES/libsendlater.mo share/locale/da/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/da/LC_MESSAGES/libsendlater.mo share/locale/de/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/de/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/de/LC_MESSAGES/libsendlater.mo share/locale/el/LC_MESSAGES/libsendlater.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/en_GB/LC_MESSAGES/libsendlater.mo share/locale/es/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/es/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/es/LC_MESSAGES/libsendlater.mo share/locale/et/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/et/LC_MESSAGES/libsendlater.mo share/locale/fi/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fi/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fi/LC_MESSAGES/libsendlater.mo share/locale/fr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fr/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fr/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/gl/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/hu/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/hu/LC_MESSAGES/libsendlater.mo share/locale/ia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ia/LC_MESSAGES/libsendlater.mo share/locale/it/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/it/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/it/LC_MESSAGES/libsendlater.mo share/locale/ja/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ja/LC_MESSAGES/libsendlater.mo share/locale/kk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/kk/LC_MESSAGES/libsendlater.mo share/locale/ko/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ko/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/lt/LC_MESSAGES/libsendlater.mo share/locale/nb/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nb/LC_MESSAGES/libsendlater.mo share/locale/nds/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nds/LC_MESSAGES/libsendlater.mo share/locale/nl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nl/LC_MESSAGES/libsendlater.mo share/locale/pl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pl/LC_MESSAGES/libsendlater.mo share/locale/pt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt/LC_MESSAGES/libsendlater.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt_BR/LC_MESSAGES/libsendlater.mo share/locale/ro/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ro/LC_MESSAGES/libsendlater.mo share/locale/ru/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ru/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ru/LC_MESSAGES/libsendlater.mo share/locale/sk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sk/LC_MESSAGES/libsendlater.mo share/locale/sl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sl/LC_MESSAGES/libsendlater.mo share/locale/sr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sr/LC_MESSAGES/libsendlater.mo share/locale/sv/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sv/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sv/LC_MESSAGES/libsendlater.mo share/locale/tr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/tr/LC_MESSAGES/libsendlater.mo share/locale/ug/LC_MESSAGES/libsendlater.mo share/locale/uk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/uk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/uk/LC_MESSAGES/libsendlater.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_CN/LC_MESSAGES/libsendlater.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookgrantlee.mo +share/locale/zh_TW/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_TW/LC_MESSAGES/libsendlater.mo Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 489892) +++ head/deskutils/kdepim-runtime/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544478483 -SHA256 (KDE/applications/18.12.0/kdepim-runtime-18.12.0.tar.xz) = a1505916e503ac79b52dafc483e8e82f3f4f5abba2f8c89430f1466ed77abc6e -SIZE (KDE/applications/18.12.0/kdepim-runtime-18.12.0.tar.xz) = 1772412 +TIMESTAMP = 1546985124 +SHA256 (KDE/applications/18.12.1/kdepim-runtime-18.12.1.tar.xz) = 6c5963d47becb0ba39b2ab8a6ec35b41c7a3e7205c8937d8a48773e93fce69ed +SIZE (KDE/applications/18.12.1/kdepim-runtime-18.12.1.tar.xz) = 1772996 Index: head/deskutils/kdepim-runtime/pkg-plist =================================================================== --- head/deskutils/kdepim-runtime/pkg-plist (revision 489892) +++ head/deskutils/kdepim-runtime/pkg-plist (revision 489893) @@ -1,1782 +1,1785 @@ 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_invitations_agent 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 etc/xdg/kdepim-runtime.categories etc/xdg/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%%/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/invitationsagent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_invitations_agent.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_ews.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_invitations_agent.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_invitations_agent.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_gmail_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_invitations_agent.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_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_gmail_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_invitations_agent.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_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_invitations_agent.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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_invitations_agent.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_invitations_agent.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_gmail_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_invitations_agent.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_gmail_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_invitations_agent.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_facebook_resource.mo +share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_gmail_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_invitations_agent.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 489892) +++ head/deskutils/keditbookmarks/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225577 -SHA256 (KDE/applications/18.12.0/keditbookmarks-18.12.0.tar.xz) = b526e4cdb88cc896b6e600ac15af16010d0782ea2709dc9f6bd13583ab4a46c5 -SIZE (KDE/applications/18.12.0/keditbookmarks-18.12.0.tar.xz) = 184712 +TIMESTAMP = 1546985124 +SHA256 (KDE/applications/18.12.1/keditbookmarks-18.12.1.tar.xz) = 418eaadd5044cb3c4091bd137bc9c64228eefb28519d779e360d41fbdcabdd3a +SIZE (KDE/applications/18.12.1/keditbookmarks-18.12.1.tar.xz) = 184732 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 489892) +++ head/deskutils/kfind/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225578 -SHA256 (KDE/applications/18.12.0/kfind-18.12.0.tar.xz) = f3bfc2fc34420d282e6e54e92cfc02d10211e674fc0eaafbc2d6277e1172a24e -SIZE (KDE/applications/18.12.0/kfind-18.12.0.tar.xz) = 267448 +TIMESTAMP = 1546985125 +SHA256 (KDE/applications/18.12.1/kfind-18.12.1.tar.xz) = ab90ee3694cbea7dfa1b770c731606c127de3d8df739474c2cac42e9b53111ee +SIZE (KDE/applications/18.12.1/kfind-18.12.1.tar.xz) = 267472 Index: head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_boost__optional.h =================================================================== --- head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_boost__optional.h (revision 489892) +++ head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_boost__optional.h (nonexistent) @@ -1,1082 +0,0 @@ -Copyright (C) 2011-2016 Andrzej Krzemienski - -Distributed under the Boost Software License, Version 1.0 -(see accompanying file LICENSE_1_0.txt or a copy at -http://www.boost.org/LICENSE_1_0.txt) - -The idea and interface is based on Boost.Optional library -authored by Fernando Luis Cacciola Carballal - -Home at https://github.com/akrzemi1/Optional - - ---- agents/unifiedmailboxagent/boost_optional.h.orig 2018-12-29 21:08:10 UTC -+++ agents/unifiedmailboxagent/boost_optional.h -@@ -0,0 +1,1067 @@ -+// Copyright (C) 2011 - 2012 Andrzej Krzemienski. -+// -+// Use, modification, and distribution is subject to the Boost Software -+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at -+// http://www.boost.org/LICENSE_1_0.txt) -+// -+// The idea and interface is based on Boost.Optional library -+// authored by Fernando Luis Cacciola Carballal -+ -+# ifndef ___OPTIONAL_HPP___ -+# define ___OPTIONAL_HPP___ -+ -+# include -+# include -+# include -+# include -+# include -+# include -+# include -+ -+# define TR2_OPTIONAL_REQUIRES(...) typename enable_if<__VA_ARGS__::value, bool>::type = false -+ -+# if defined __GNUC__ // NOTE: GNUC is also defined for Clang -+# if (__GNUC__ == 4) && (__GNUC_MINOR__ >= 8) -+# define TR2_OPTIONAL_GCC_4_8_AND_HIGHER___ -+# elif (__GNUC__ > 4) -+# define TR2_OPTIONAL_GCC_4_8_AND_HIGHER___ -+# endif -+# -+# if (__GNUC__ == 4) && (__GNUC_MINOR__ >= 7) -+# define TR2_OPTIONAL_GCC_4_7_AND_HIGHER___ -+# elif (__GNUC__ > 4) -+# define TR2_OPTIONAL_GCC_4_7_AND_HIGHER___ -+# endif -+# -+# if (__GNUC__ == 4) && (__GNUC_MINOR__ == 8) && (__GNUC_PATCHLEVEL__ >= 1) -+# define TR2_OPTIONAL_GCC_4_8_1_AND_HIGHER___ -+# elif (__GNUC__ == 4) && (__GNUC_MINOR__ >= 9) -+# define TR2_OPTIONAL_GCC_4_8_1_AND_HIGHER___ -+# elif (__GNUC__ > 4) -+# define TR2_OPTIONAL_GCC_4_8_1_AND_HIGHER___ -+# endif -+# endif -+# -+# if defined __clang_major__ -+# if (__clang_major__ == 3 && __clang_minor__ >= 5) -+# define TR2_OPTIONAL_CLANG_3_5_AND_HIGHTER_ -+# elif (__clang_major__ > 3) -+# define TR2_OPTIONAL_CLANG_3_5_AND_HIGHTER_ -+# endif -+# if defined TR2_OPTIONAL_CLANG_3_5_AND_HIGHTER_ -+# define TR2_OPTIONAL_CLANG_3_4_2_AND_HIGHER_ -+# elif (__clang_major__ == 3 && __clang_minor__ == 4 && __clang_patchlevel__ >= 2) -+# define TR2_OPTIONAL_CLANG_3_4_2_AND_HIGHER_ -+# endif -+# endif -+# -+# if defined _MSC_VER -+# if (_MSC_VER >= 1900) -+# define TR2_OPTIONAL_MSVC_2015_AND_HIGHER___ -+# endif -+# endif -+ -+# if defined __clang__ -+# if (__clang_major__ > 2) || (__clang_major__ == 2) && (__clang_minor__ >= 9) -+# define OPTIONAL_HAS_THIS_RVALUE_REFS 1 -+# else -+# define OPTIONAL_HAS_THIS_RVALUE_REFS 0 -+# endif -+# elif defined TR2_OPTIONAL_GCC_4_8_1_AND_HIGHER___ -+# define OPTIONAL_HAS_THIS_RVALUE_REFS 1 -+# elif defined TR2_OPTIONAL_MSVC_2015_AND_HIGHER___ -+# define OPTIONAL_HAS_THIS_RVALUE_REFS 1 -+# else -+# define OPTIONAL_HAS_THIS_RVALUE_REFS 0 -+# endif -+ -+ -+# if defined TR2_OPTIONAL_GCC_4_8_1_AND_HIGHER___ -+# define OPTIONAL_HAS_CONSTEXPR_INIT_LIST 1 -+# define OPTIONAL_CONSTEXPR_INIT_LIST constexpr -+# else -+# define OPTIONAL_HAS_CONSTEXPR_INIT_LIST 0 -+# define OPTIONAL_CONSTEXPR_INIT_LIST -+# endif -+ -+# if defined TR2_OPTIONAL_CLANG_3_5_AND_HIGHTER_ && (defined __cplusplus) && (__cplusplus != 201103L) -+# define OPTIONAL_HAS_MOVE_ACCESSORS 1 -+# else -+# define OPTIONAL_HAS_MOVE_ACCESSORS 0 -+# endif -+ -+# // In C++11 constexpr implies const, so we need to make non-const members also non-constexpr -+# if (defined __cplusplus) && (__cplusplus == 201103L) -+# define OPTIONAL_MUTABLE_CONSTEXPR -+# else -+# define OPTIONAL_MUTABLE_CONSTEXPR constexpr -+# endif -+ -+namespace std{ -+ -+namespace experimental{ -+ -+// BEGIN workaround for missing is_trivially_destructible -+# if defined TR2_OPTIONAL_GCC_4_8_AND_HIGHER___ -+ // leave it: it is already there -+# elif defined TR2_OPTIONAL_CLANG_3_4_2_AND_HIGHER_ -+ // leave it: it is already there -+# elif defined TR2_OPTIONAL_MSVC_2015_AND_HIGHER___ -+ // leave it: it is already there -+# elif defined TR2_OPTIONAL_DISABLE_EMULATION_OF_TYPE_TRAITS -+ // leave it: the user doesn't want it -+# else -+ template -+ using is_trivially_destructible = std::has_trivial_destructor; -+# endif -+// END workaround for missing is_trivially_destructible -+ -+# if (defined TR2_OPTIONAL_GCC_4_7_AND_HIGHER___) -+ // leave it; our metafunctions are already defined. -+# elif defined TR2_OPTIONAL_CLANG_3_4_2_AND_HIGHER_ -+ // leave it; our metafunctions are already defined. -+# elif defined TR2_OPTIONAL_MSVC_2015_AND_HIGHER___ -+ // leave it: it is already there -+# elif defined TR2_OPTIONAL_DISABLE_EMULATION_OF_TYPE_TRAITS -+ // leave it: the user doesn't want it -+# else -+ -+ -+// workaround for missing traits in GCC and CLANG -+template -+struct is_nothrow_move_constructible -+{ -+ constexpr static bool value = std::is_nothrow_constructible::value; -+}; -+ -+ -+template -+struct is_assignable -+{ -+ template -+ constexpr static bool has_assign(...) { return false; } -+ -+ template () = std::declval(), true)) > -+ // the comma operator is necessary for the cases where operator= returns void -+ constexpr static bool has_assign(bool) { return true; } -+ -+ constexpr static bool value = has_assign(true); -+}; -+ -+ -+template -+struct is_nothrow_move_assignable -+{ -+ template -+ struct has_nothrow_move_assign { -+ constexpr static bool value = false; -+ }; -+ -+ template -+ struct has_nothrow_move_assign { -+ constexpr static bool value = noexcept( std::declval() = std::declval() ); -+ }; -+ -+ constexpr static bool value = has_nothrow_move_assign::value>::value; -+}; -+// end workaround -+ -+ -+# endif -+ -+ -+ -+// 20.5.4, optional for object types -+template class optional; -+ -+// 20.5.5, optional for lvalue reference types -+template class optional; -+ -+ -+// workaround: std utility functions aren't constexpr yet -+template inline constexpr T&& constexpr_forward(typename std::remove_reference::type& t) noexcept -+{ -+ return static_cast(t); -+} -+ -+template inline constexpr T&& constexpr_forward(typename std::remove_reference::type&& t) noexcept -+{ -+ static_assert(!std::is_lvalue_reference::value, "!!"); -+ return static_cast(t); -+} -+ -+template inline constexpr typename std::remove_reference::type&& constexpr_move(T&& t) noexcept -+{ -+ return static_cast::type&&>(t); -+} -+ -+ -+#if defined NDEBUG -+# define TR2_OPTIONAL_ASSERTED_EXPRESSION(CHECK, EXPR) (EXPR) -+#else -+# define TR2_OPTIONAL_ASSERTED_EXPRESSION(CHECK, EXPR) ((CHECK) ? (EXPR) : ([]{assert(!#CHECK);}(), (EXPR))) -+#endif -+ -+ -+namespace detail_ -+{ -+ -+// static_addressof: a constexpr version of addressof -+template -+struct has_overloaded_addressof -+{ -+ template -+ constexpr static bool has_overload(...) { return false; } -+ -+ template ().operator&()) > -+ constexpr static bool has_overload(bool) { return true; } -+ -+ constexpr static bool value = has_overload(true); -+}; -+ -+template )> -+constexpr T* static_addressof(T& ref) -+{ -+ return &ref; -+} -+ -+template )> -+T* static_addressof(T& ref) -+{ -+ return std::addressof(ref); -+} -+ -+ -+// the call to convert(b) has return type A and converts b to type A iff b decltype(b) is implicitly convertible to A -+template -+constexpr U convert(U v) { return v; } -+ -+ -+namespace swap_ns -+{ -+ using std::swap; -+ -+ template -+ void adl_swap(T& t, T& u) noexcept(noexcept(swap(t, u))) -+ { -+ swap(t, u); -+ } -+ -+} // namespace swap_ns -+ -+} // namespace detail -+ -+ -+constexpr struct trivial_init_t{} trivial_init{}; -+ -+ -+// 20.5.6, In-place construction -+constexpr struct in_place_t{} in_place{}; -+ -+ -+// 20.5.7, Disengaged state indicator -+struct nullopt_t -+{ -+ struct init{}; -+ constexpr explicit nullopt_t(init){} -+}; -+constexpr nullopt_t nullopt{nullopt_t::init()}; -+ -+ -+// 20.5.8, class bad_optional_access -+class bad_optional_access : public logic_error { -+public: -+ explicit bad_optional_access(const string& what_arg) : logic_error{what_arg} {} -+ explicit bad_optional_access(const char* what_arg) : logic_error{what_arg} {} -+}; -+ -+ -+template -+union storage_t -+{ -+ unsigned char dummy_; -+ T value_; -+ -+ constexpr storage_t( trivial_init_t ) noexcept : dummy_() {}; -+ -+ template -+ constexpr storage_t( Args&&... args ) : value_(constexpr_forward(args)...) {} -+ -+ ~storage_t(){} -+}; -+ -+ -+template -+union constexpr_storage_t -+{ -+ unsigned char dummy_; -+ T value_; -+ -+ constexpr constexpr_storage_t( trivial_init_t ) noexcept : dummy_() {}; -+ -+ template -+ constexpr constexpr_storage_t( Args&&... args ) : value_(constexpr_forward(args)...) {} -+ -+ ~constexpr_storage_t() = default; -+}; -+ -+ -+template -+struct optional_base -+{ -+ bool init_; -+ storage_t storage_; -+ -+ constexpr optional_base() noexcept : init_(false), storage_(trivial_init) {}; -+ -+ explicit constexpr optional_base(const T& v) : init_(true), storage_(v) {} -+ -+ explicit constexpr optional_base(T&& v) : init_(true), storage_(constexpr_move(v)) {} -+ -+ template explicit optional_base(in_place_t, Args&&... args) -+ : init_(true), storage_(constexpr_forward(args)...) {} -+ -+ template >)> -+ explicit optional_base(in_place_t, std::initializer_list il, Args&&... args) -+ : init_(true), storage_(il, std::forward(args)...) {} -+ -+ ~optional_base() { if (init_) storage_.value_.T::~T(); } -+}; -+ -+ -+template -+struct constexpr_optional_base -+{ -+ bool init_; -+ constexpr_storage_t storage_; -+ -+ constexpr constexpr_optional_base() noexcept : init_(false), storage_(trivial_init) {}; -+ -+ explicit constexpr constexpr_optional_base(const T& v) : init_(true), storage_(v) {} -+ -+ explicit constexpr constexpr_optional_base(T&& v) : init_(true), storage_(constexpr_move(v)) {} -+ -+ template explicit constexpr constexpr_optional_base(in_place_t, Args&&... args) -+ : init_(true), storage_(constexpr_forward(args)...) {} -+ -+ template >)> -+ OPTIONAL_CONSTEXPR_INIT_LIST explicit constexpr_optional_base(in_place_t, std::initializer_list il, Args&&... args) -+ : init_(true), storage_(il, std::forward(args)...) {} -+ -+ ~constexpr_optional_base() = default; -+}; -+ -+template -+using OptionalBase = typename std::conditional< -+ is_trivially_destructible::value, // if possible -+ constexpr_optional_base::type>, // use base with trivial destructor -+ optional_base::type> -+>::type; -+ -+ -+ -+template -+class optional : private OptionalBase -+{ -+ static_assert( !std::is_same::type, nullopt_t>::value, "bad T" ); -+ static_assert( !std::is_same::type, in_place_t>::value, "bad T" ); -+ -+ -+ constexpr bool initialized() const noexcept { return OptionalBase::init_; } -+ typename std::remove_const::type* dataptr() { return std::addressof(OptionalBase::storage_.value_); } -+ constexpr const T* dataptr() const { return detail_::static_addressof(OptionalBase::storage_.value_); } -+ -+# if OPTIONAL_HAS_THIS_RVALUE_REFS == 1 -+ constexpr const T& contained_val() const& { return OptionalBase::storage_.value_; } -+# if OPTIONAL_HAS_MOVE_ACCESSORS == 1 -+ OPTIONAL_MUTABLE_CONSTEXPR T&& contained_val() && { return std::move(OptionalBase::storage_.value_); } -+ OPTIONAL_MUTABLE_CONSTEXPR T& contained_val() & { return OptionalBase::storage_.value_; } -+# else -+ T& contained_val() & { return OptionalBase::storage_.value_; } -+ T&& contained_val() && { return std::move(OptionalBase::storage_.value_); } -+# endif -+# else -+ constexpr const T& contained_val() const { return OptionalBase::storage_.value_; } -+ T& contained_val() { return OptionalBase::storage_.value_; } -+# endif -+ -+ void clear() noexcept { -+ if (initialized()) dataptr()->T::~T(); -+ OptionalBase::init_ = false; -+ } -+ -+ template -+ void initialize(Args&&... args) noexcept(noexcept(T(std::forward(args)...))) -+ { -+ assert(!OptionalBase::init_); -+ ::new (static_cast(dataptr())) T(std::forward(args)...); -+ OptionalBase::init_ = true; -+ } -+ -+ template -+ void initialize(std::initializer_list il, Args&&... args) noexcept(noexcept(T(il, std::forward(args)...))) -+ { -+ assert(!OptionalBase::init_); -+ ::new (static_cast(dataptr())) T(il, std::forward(args)...); -+ OptionalBase::init_ = true; -+ } -+ -+public: -+ typedef T value_type; -+ -+ // 20.5.5.1, constructors -+ constexpr optional() noexcept : OptionalBase() {}; -+ constexpr optional(nullopt_t) noexcept : OptionalBase() {}; -+ -+ optional(const optional& rhs) -+ : OptionalBase() -+ { -+ if (rhs.initialized()) { -+ ::new (static_cast(dataptr())) T(*rhs); -+ OptionalBase::init_ = true; -+ } -+ } -+ -+ optional(optional&& rhs) noexcept(is_nothrow_move_constructible::value) -+ : OptionalBase() -+ { -+ if (rhs.initialized()) { -+ ::new (static_cast(dataptr())) T(std::move(*rhs)); -+ OptionalBase::init_ = true; -+ } -+ } -+ -+ constexpr optional(const T& v) : OptionalBase(v) {} -+ -+ constexpr optional(T&& v) : OptionalBase(constexpr_move(v)) {} -+ -+ template -+ explicit constexpr optional(in_place_t, Args&&... args) -+ : OptionalBase(in_place_t{}, constexpr_forward(args)...) {} -+ -+ template >)> -+ OPTIONAL_CONSTEXPR_INIT_LIST explicit optional(in_place_t, std::initializer_list il, Args&&... args) -+ : OptionalBase(in_place_t{}, il, constexpr_forward(args)...) {} -+ -+ // 20.5.4.2, Destructor -+ ~optional() = default; -+ -+ // 20.5.4.3, assignment -+ optional& operator=(nullopt_t) noexcept -+ { -+ clear(); -+ return *this; -+ } -+ -+ optional& operator=(const optional& rhs) -+ { -+ if (initialized() == true && rhs.initialized() == false) clear(); -+ else if (initialized() == false && rhs.initialized() == true) initialize(*rhs); -+ else if (initialized() == true && rhs.initialized() == true) contained_val() = *rhs; -+ return *this; -+ } -+ -+ optional& operator=(optional&& rhs) -+ noexcept(is_nothrow_move_assignable::value && is_nothrow_move_constructible::value) -+ { -+ if (initialized() == true && rhs.initialized() == false) clear(); -+ else if (initialized() == false && rhs.initialized() == true) initialize(std::move(*rhs)); -+ else if (initialized() == true && rhs.initialized() == true) contained_val() = std::move(*rhs); -+ return *this; -+ } -+ -+ template -+ auto operator=(U&& v) -+ -> typename enable_if -+ < -+ is_same::type, T>::value, -+ optional& -+ >::type -+ { -+ if (initialized()) { contained_val() = std::forward(v); } -+ else { initialize(std::forward(v)); } -+ return *this; -+ } -+ -+ -+ template -+ void emplace(Args&&... args) -+ { -+ clear(); -+ initialize(std::forward(args)...); -+ } -+ -+ template -+ void emplace(initializer_list il, Args&&... args) -+ { -+ clear(); -+ initialize(il, std::forward(args)...); -+ } -+ -+ // 20.5.4.4, Swap -+ void swap(optional& rhs) noexcept(is_nothrow_move_constructible::value -+ && noexcept(detail_::swap_ns::adl_swap(declval(), declval()))) -+ { -+ if (initialized() == true && rhs.initialized() == false) { rhs.initialize(std::move(**this)); clear(); } -+ else if (initialized() == false && rhs.initialized() == true) { initialize(std::move(*rhs)); rhs.clear(); } -+ else if (initialized() == true && rhs.initialized() == true) { using std::swap; swap(**this, *rhs); } -+ } -+ -+ // 20.5.4.5, Observers -+ -+ explicit constexpr operator bool() const noexcept { return initialized(); } -+ constexpr bool has_value() const noexcept { return initialized(); } -+ -+ constexpr T const* operator ->() const { -+ return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), dataptr()); -+ } -+ -+# if OPTIONAL_HAS_MOVE_ACCESSORS == 1 -+ -+ OPTIONAL_MUTABLE_CONSTEXPR T* operator ->() { -+ assert (initialized()); -+ return dataptr(); -+ } -+ -+ constexpr T const& operator *() const& { -+ return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), contained_val()); -+ } -+ -+ OPTIONAL_MUTABLE_CONSTEXPR T& operator *() & { -+ assert (initialized()); -+ return contained_val(); -+ } -+ -+ OPTIONAL_MUTABLE_CONSTEXPR T&& operator *() && { -+ assert (initialized()); -+ return constexpr_move(contained_val()); -+ } -+ -+ constexpr T const& value() const& { -+ return initialized() ? contained_val() : (throw bad_optional_access("bad optional access"), contained_val()); -+ } -+ -+ OPTIONAL_MUTABLE_CONSTEXPR T& value() & { -+ return initialized() ? contained_val() : (throw bad_optional_access("bad optional access"), contained_val()); -+ } -+ -+ OPTIONAL_MUTABLE_CONSTEXPR T&& value() && { -+ if (!initialized()) throw bad_optional_access("bad optional access"); -+ return std::move(contained_val()); -+ } -+ -+# else -+ -+ T* operator ->() { -+ assert (initialized()); -+ return dataptr(); -+ } -+ -+ constexpr T const& operator *() const { -+ return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), contained_val()); -+ } -+ -+ T& operator *() { -+ assert (initialized()); -+ return contained_val(); -+ } -+ -+ constexpr T const& value() const { -+ return initialized() ? contained_val() : (throw bad_optional_access("bad optional access"), contained_val()); -+ } -+ -+ T& value() { -+ return initialized() ? contained_val() : (throw bad_optional_access("bad optional access"), contained_val()); -+ } -+ -+# endif -+ -+# if OPTIONAL_HAS_THIS_RVALUE_REFS == 1 -+ -+ template -+ constexpr T value_or(V&& v) const& -+ { -+ return *this ? **this : detail_::convert(constexpr_forward(v)); -+ } -+ -+# if OPTIONAL_HAS_MOVE_ACCESSORS == 1 -+ -+ template -+ OPTIONAL_MUTABLE_CONSTEXPR T value_or(V&& v) && -+ { -+ return *this ? constexpr_move(const_cast&>(*this).contained_val()) : detail_::convert(constexpr_forward(v)); -+ } -+ -+# else -+ -+ template -+ T value_or(V&& v) && -+ { -+ return *this ? constexpr_move(const_cast&>(*this).contained_val()) : detail_::convert(constexpr_forward(v)); -+ } -+ -+# endif -+ -+# else -+ -+ template -+ constexpr T value_or(V&& v) const -+ { -+ return *this ? **this : detail_::convert(constexpr_forward(v)); -+ } -+ -+# endif -+ -+ // 20.6.3.6, modifiers -+ void reset() noexcept { clear(); } -+}; -+ -+ -+template -+class optional -+{ -+ static_assert( !std::is_same::value, "bad T" ); -+ static_assert( !std::is_same::value, "bad T" ); -+ T* ref; -+ -+public: -+ -+ // 20.5.5.1, construction/destruction -+ constexpr optional() noexcept : ref(nullptr) {} -+ -+ constexpr optional(nullopt_t) noexcept : ref(nullptr) {} -+ -+ constexpr optional(T& v) noexcept : ref(detail_::static_addressof(v)) {} -+ -+ optional(T&&) = delete; -+ -+ constexpr optional(const optional& rhs) noexcept : ref(rhs.ref) {} -+ -+ explicit constexpr optional(in_place_t, T& v) noexcept : ref(detail_::static_addressof(v)) {} -+ -+ explicit optional(in_place_t, T&&) = delete; -+ -+ ~optional() = default; -+ -+ // 20.5.5.2, mutation -+ optional& operator=(nullopt_t) noexcept { -+ ref = nullptr; -+ return *this; -+ } -+ -+ // optional& operator=(const optional& rhs) noexcept { -+ // ref = rhs.ref; -+ // return *this; -+ // } -+ -+ // optional& operator=(optional&& rhs) noexcept { -+ // ref = rhs.ref; -+ // return *this; -+ // } -+ -+ template -+ auto operator=(U&& rhs) noexcept -+ -> typename enable_if -+ < -+ is_same::type, optional>::value, -+ optional& -+ >::type -+ { -+ ref = rhs.ref; -+ return *this; -+ } -+ -+ template -+ auto operator=(U&& rhs) noexcept -+ -> typename enable_if -+ < -+ !is_same::type, optional>::value, -+ optional& -+ >::type -+ = delete; -+ -+ void emplace(T& v) noexcept { -+ ref = detail_::static_addressof(v); -+ } -+ -+ void emplace(T&&) = delete; -+ -+ -+ void swap(optional& rhs) noexcept -+ { -+ std::swap(ref, rhs.ref); -+ } -+ -+ // 20.5.5.3, observers -+ constexpr T* operator->() const { -+ return TR2_OPTIONAL_ASSERTED_EXPRESSION(ref, ref); -+ } -+ -+ constexpr T& operator*() const { -+ return TR2_OPTIONAL_ASSERTED_EXPRESSION(ref, *ref); -+ } -+ -+ constexpr T& value() const { -+ return ref ? *ref : (throw bad_optional_access("bad optional access"), *ref); -+ } -+ -+ explicit constexpr operator bool() const noexcept { -+ return ref != nullptr; -+ } -+ -+ constexpr bool has_value() const noexcept { -+ return ref != nullptr; -+ } -+ -+ template -+ constexpr typename decay::type value_or(V&& v) const -+ { -+ return *this ? **this : detail_::convert::type>(constexpr_forward(v)); -+ } -+ -+ // x.x.x.x, modifiers -+ void reset() noexcept { ref = nullptr; } -+}; -+ -+ -+template -+class optional -+{ -+ static_assert( sizeof(T) == 0, "optional rvalue references disallowed" ); -+}; -+ -+ -+// 20.5.8, Relational operators -+template constexpr bool operator==(const optional& x, const optional& y) -+{ -+ return bool(x) != bool(y) ? false : bool(x) == false ? true : *x == *y; -+} -+ -+template constexpr bool operator!=(const optional& x, const optional& y) -+{ -+ return !(x == y); -+} -+ -+template constexpr bool operator<(const optional& x, const optional& y) -+{ -+ return (!y) ? false : (!x) ? true : *x < *y; -+} -+ -+template constexpr bool operator>(const optional& x, const optional& y) -+{ -+ return (y < x); -+} -+ -+template constexpr bool operator<=(const optional& x, const optional& y) -+{ -+ return !(y < x); -+} -+ -+template constexpr bool operator>=(const optional& x, const optional& y) -+{ -+ return !(x < y); -+} -+ -+ -+// 20.5.9, Comparison with nullopt -+template constexpr bool operator==(const optional& x, nullopt_t) noexcept -+{ -+ return (!x); -+} -+ -+template constexpr bool operator==(nullopt_t, const optional& x) noexcept -+{ -+ return (!x); -+} -+ -+template constexpr bool operator!=(const optional& x, nullopt_t) noexcept -+{ -+ return bool(x); -+} -+ -+template constexpr bool operator!=(nullopt_t, const optional& x) noexcept -+{ -+ return bool(x); -+} -+ -+template constexpr bool operator<(const optional&, nullopt_t) noexcept -+{ -+ return false; -+} -+ -+template constexpr bool operator<(nullopt_t, const optional& x) noexcept -+{ -+ return bool(x); -+} -+ -+template constexpr bool operator<=(const optional& x, nullopt_t) noexcept -+{ -+ return (!x); -+} -+ -+template constexpr bool operator<=(nullopt_t, const optional&) noexcept -+{ -+ return true; -+} -+ -+template constexpr bool operator>(const optional& x, nullopt_t) noexcept -+{ -+ return bool(x); -+} -+ -+template constexpr bool operator>(nullopt_t, const optional&) noexcept -+{ -+ return false; -+} -+ -+template constexpr bool operator>=(const optional&, nullopt_t) noexcept -+{ -+ return true; -+} -+ -+template constexpr bool operator>=(nullopt_t, const optional& x) noexcept -+{ -+ return (!x); -+} -+ -+ -+ -+// 20.5.10, Comparison with T -+template constexpr bool operator==(const optional& x, const T& v) -+{ -+ return bool(x) ? *x == v : false; -+} -+ -+template constexpr bool operator==(const T& v, const optional& x) -+{ -+ return bool(x) ? v == *x : false; -+} -+ -+template constexpr bool operator!=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x != v : true; -+} -+ -+template constexpr bool operator!=(const T& v, const optional& x) -+{ -+ return bool(x) ? v != *x : true; -+} -+ -+template constexpr bool operator<(const optional& x, const T& v) -+{ -+ return bool(x) ? *x < v : true; -+} -+ -+template constexpr bool operator>(const T& v, const optional& x) -+{ -+ return bool(x) ? v > *x : true; -+} -+ -+template constexpr bool operator>(const optional& x, const T& v) -+{ -+ return bool(x) ? *x > v : false; -+} -+ -+template constexpr bool operator<(const T& v, const optional& x) -+{ -+ return bool(x) ? v < *x : false; -+} -+ -+template constexpr bool operator>=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x >= v : false; -+} -+ -+template constexpr bool operator<=(const T& v, const optional& x) -+{ -+ return bool(x) ? v <= *x : false; -+} -+ -+template constexpr bool operator<=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x <= v : true; -+} -+ -+template constexpr bool operator>=(const T& v, const optional& x) -+{ -+ return bool(x) ? v >= *x : true; -+} -+ -+ -+// Comparison of optional with T -+template constexpr bool operator==(const optional& x, const T& v) -+{ -+ return bool(x) ? *x == v : false; -+} -+ -+template constexpr bool operator==(const T& v, const optional& x) -+{ -+ return bool(x) ? v == *x : false; -+} -+ -+template constexpr bool operator!=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x != v : true; -+} -+ -+template constexpr bool operator!=(const T& v, const optional& x) -+{ -+ return bool(x) ? v != *x : true; -+} -+ -+template constexpr bool operator<(const optional& x, const T& v) -+{ -+ return bool(x) ? *x < v : true; -+} -+ -+template constexpr bool operator>(const T& v, const optional& x) -+{ -+ return bool(x) ? v > *x : true; -+} -+ -+template constexpr bool operator>(const optional& x, const T& v) -+{ -+ return bool(x) ? *x > v : false; -+} -+ -+template constexpr bool operator<(const T& v, const optional& x) -+{ -+ return bool(x) ? v < *x : false; -+} -+ -+template constexpr bool operator>=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x >= v : false; -+} -+ -+template constexpr bool operator<=(const T& v, const optional& x) -+{ -+ return bool(x) ? v <= *x : false; -+} -+ -+template constexpr bool operator<=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x <= v : true; -+} -+ -+template constexpr bool operator>=(const T& v, const optional& x) -+{ -+ return bool(x) ? v >= *x : true; -+} -+ -+// Comparison of optional with T -+template constexpr bool operator==(const optional& x, const T& v) -+{ -+ return bool(x) ? *x == v : false; -+} -+ -+template constexpr bool operator==(const T& v, const optional& x) -+{ -+ return bool(x) ? v == *x : false; -+} -+ -+template constexpr bool operator!=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x != v : true; -+} -+ -+template constexpr bool operator!=(const T& v, const optional& x) -+{ -+ return bool(x) ? v != *x : true; -+} -+ -+template constexpr bool operator<(const optional& x, const T& v) -+{ -+ return bool(x) ? *x < v : true; -+} -+ -+template constexpr bool operator>(const T& v, const optional& x) -+{ -+ return bool(x) ? v > *x : true; -+} -+ -+template constexpr bool operator>(const optional& x, const T& v) -+{ -+ return bool(x) ? *x > v : false; -+} -+ -+template constexpr bool operator<(const T& v, const optional& x) -+{ -+ return bool(x) ? v < *x : false; -+} -+ -+template constexpr bool operator>=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x >= v : false; -+} -+ -+template constexpr bool operator<=(const T& v, const optional& x) -+{ -+ return bool(x) ? v <= *x : false; -+} -+ -+template constexpr bool operator<=(const optional& x, const T& v) -+{ -+ return bool(x) ? *x <= v : true; -+} -+ -+template constexpr bool operator>=(const T& v, const optional& x) -+{ -+ return bool(x) ? v >= *x : true; -+} -+ -+ -+// 20.5.12, Specialized algorithms -+template -+void swap(optional& x, optional& y) noexcept(noexcept(x.swap(y))) -+{ -+ x.swap(y); -+} -+ -+ -+template -+constexpr optional::type> make_optional(T&& v) -+{ -+ return optional::type>(constexpr_forward(v)); -+} -+ -+template -+constexpr optional make_optional(reference_wrapper v) -+{ -+ return optional(v.get()); -+} -+ -+ -+} // namespace experimental -+} // namespace std -+ -+namespace std -+{ -+ template -+ struct hash> -+ { -+ typedef typename hash::result_type result_type; -+ typedef std::experimental::optional argument_type; -+ -+ constexpr result_type operator()(argument_type const& arg) const { -+ return arg ? std::hash{}(*arg) : result_type{}; -+ } -+ }; -+ -+ template -+ struct hash> -+ { -+ typedef typename hash::result_type result_type; -+ typedef std::experimental::optional argument_type; -+ -+ constexpr result_type operator()(argument_type const& arg) const { -+ return arg ? std::hash{}(*arg) : result_type{}; -+ } -+ }; -+} -+ -+# undef TR2_OPTIONAL_REQUIRES -+# undef TR2_OPTIONAL_ASSERTED_EXPRESSION -+ -+# endif //___OPTIONAL_HPP___ -+ Property changes on: head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_boost__optional.h ___________________________________________________________________ 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/deskutils/kmail/files/patch-agents_unifiedmailboxagent_utils.h =================================================================== --- head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_utils.h (revision 489892) +++ head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_utils.h (nonexistent) @@ -1,11 +0,0 @@ ---- agents/unifiedmailboxagent/utils.h.orig 2018-12-29 21:15:58 UTC -+++ agents/unifiedmailboxagent/utils.h -@@ -24,7 +24,7 @@ - #include - #include - --#include -+#include "boost_optional.h" - namespace stdx { - // Injects content of std::experimental namespace into "exp" namespace. - // C++ is magical. Property changes on: head/deskutils/kmail/files/patch-agents_unifiedmailboxagent_utils.h ___________________________________________________________________ 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/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 489892) +++ head/deskutils/kmail/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225577 -SHA256 (KDE/applications/18.12.0/kmail-18.12.0.tar.xz) = 5d1018d901faa4c72910f1214fb3b3dbe1335f6a4e96b696c75b3179d9a17f47 -SIZE (KDE/applications/18.12.0/kmail-18.12.0.tar.xz) = 4723296 +TIMESTAMP = 1546985124 +SHA256 (KDE/applications/18.12.1/kmail-18.12.1.tar.xz) = 87f75a63a07073361ed0b33b440d390d0e6546b888890e479a608fdb69ce53f1 +SIZE (KDE/applications/18.12.1/kmail-18.12.1.tar.xz) = 4723532 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 489892) +++ head/deskutils/kmail/pkg-plist (revision 489893) @@ -1,360 +1,361 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/ktnef etc/xdg/kmail.categories etc/xdg/kmail.renamecategories etc/xdg/ktnefapps.categories etc/xdg/ktnefapps.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%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/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/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/kservicetypes5/dbusmail.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.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.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.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.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.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.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.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.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.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/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/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/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.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.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.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.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/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail.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.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.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.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.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 489892) +++ head/deskutils/kmail-account-wizard/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225577 -SHA256 (KDE/applications/18.12.0/kmail-account-wizard-18.12.0.tar.xz) = 4f1258d6d1fb919c350593af6c26f209903549634a298e1a2f1ce3ac56f60313 -SIZE (KDE/applications/18.12.0/kmail-account-wizard-18.12.0.tar.xz) = 155964 +TIMESTAMP = 1546985124 +SHA256 (KDE/applications/18.12.1/kmail-account-wizard-18.12.1.tar.xz) = 438af7737e0e1443acb6f6977bf57797d1047e99268f53cc7e0f8c35e6e3746c +SIZE (KDE/applications/18.12.1/kmail-account-wizard-18.12.1.tar.xz) = 155856 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 489892) +++ head/deskutils/knotes/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225579 -SHA256 (KDE/applications/18.12.0/knotes-18.12.0.tar.xz) = 196f28ee5ece912cda477b802cc63725f391bac995b52446a5afa967cc2c17e4 -SIZE (KDE/applications/18.12.0/knotes-18.12.0.tar.xz) = 319620 +TIMESTAMP = 1546985126 +SHA256 (KDE/applications/18.12.1/knotes-18.12.1.tar.xz) = bf192d7d44ad0a1a63ac5ac5408f6c59c8c5bbfe44ba5edcda9fede4ec07c48a +SIZE (KDE/applications/18.12.1/knotes-18.12.1.tar.xz) = 319668 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 489892) +++ head/deskutils/kontact/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225576 -SHA256 (KDE/applications/18.12.0/kontact-18.12.0.tar.xz) = 8b25cf72071e5293e5deebb0816d4c66be3ff76906957be0ffbb289eb3903045 -SIZE (KDE/applications/18.12.0/kontact-18.12.0.tar.xz) = 792068 +TIMESTAMP = 1546985123 +SHA256 (KDE/applications/18.12.1/kontact-18.12.1.tar.xz) = 4fc12e1fa9e0e86f2ded2101d14d19358639465da2c144839ef3f272e04e162f +SIZE (KDE/applications/18.12.1/kontact-18.12.1.tar.xz) = 792032 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 489892) +++ head/deskutils/korganizer/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225579 -SHA256 (KDE/applications/18.12.0/korganizer-18.12.0.tar.xz) = 0cf10cf20e5c8c17038005d030a8bc29e335cbc8ea2008bc01ab7690a8be685e -SIZE (KDE/applications/18.12.0/korganizer-18.12.0.tar.xz) = 2232952 +TIMESTAMP = 1546985126 +SHA256 (KDE/applications/18.12.1/korganizer-18.12.1.tar.xz) = 4f7fd1ab1e2de93d9dfeccc530d21674eb82694f1f2587614ffdf50f5f961cbd +SIZE (KDE/applications/18.12.1/korganizer-18.12.1.tar.xz) = 2232976 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 489892) +++ head/deskutils/kruler/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225581 -SHA256 (KDE/applications/18.12.0/kruler-18.12.0.tar.xz) = 0781366f7b55d0c88f57b0638726b98492f6d692f2e0baf6a629e48c6c394857 -SIZE (KDE/applications/18.12.0/kruler-18.12.0.tar.xz) = 295872 +TIMESTAMP = 1546985127 +SHA256 (KDE/applications/18.12.1/kruler-18.12.1.tar.xz) = 26072113f0b302484cb78e98af7fab37d36d1d52de3ba33830a8e767f855ddf1 +SIZE (KDE/applications/18.12.1/kruler-18.12.1.tar.xz) = 254564 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 489892) +++ head/deskutils/libkdepim/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225576 -SHA256 (KDE/applications/18.12.0/libkdepim-18.12.0.tar.xz) = 0d969f1c0e2c3fac5d277905f9caa56232d2b579adb5fa3fc039c3d8c67012a1 -SIZE (KDE/applications/18.12.0/libkdepim-18.12.0.tar.xz) = 336228 +TIMESTAMP = 1546985123 +SHA256 (KDE/applications/18.12.1/libkdepim-18.12.1.tar.xz) = d71db3ad43403371e7c180557514f32598e6021eee6ccf9dfa150c7391917fe3 +SIZE (KDE/applications/18.12.1/libkdepim-18.12.1.tar.xz) = 336208 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 489892) +++ head/deskutils/mbox-importer/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225578 -SHA256 (KDE/applications/18.12.0/mbox-importer-18.12.0.tar.xz) = 55931099051ed6e7f04d7c7a766c83adbdfceb8c5ec88c4e83db5cf68b7b2e23 -SIZE (KDE/applications/18.12.0/mbox-importer-18.12.0.tar.xz) = 33364 +TIMESTAMP = 1546985125 +SHA256 (KDE/applications/18.12.1/mbox-importer-18.12.1.tar.xz) = 56b8920935ee3b08c5743ef455864b102ea58fe461adb4f5ae796cb38f5c4ac0 +SIZE (KDE/applications/18.12.1/mbox-importer-18.12.1.tar.xz) = 33380 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 489892) +++ head/deskutils/pim-data-exporter/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225580 -SHA256 (KDE/applications/18.12.0/pim-data-exporter-18.12.0.tar.xz) = 4c96bd35fad10c03a51e0f3785fffe23fdd05f266cce883ace92672640639d7b -SIZE (KDE/applications/18.12.0/pim-data-exporter-18.12.0.tar.xz) = 270888 +TIMESTAMP = 1546985127 +SHA256 (KDE/applications/18.12.1/pim-data-exporter-18.12.1.tar.xz) = abfedbb9b1cdf9755320558ba8502ea15c843400f3980df1f95fb5f113253684 +SIZE (KDE/applications/18.12.1/pim-data-exporter-18.12.1.tar.xz) = 270928 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 489892) +++ head/deskutils/pim-sieve-editor/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225577 -SHA256 (KDE/applications/18.12.0/pim-sieve-editor-18.12.0.tar.xz) = 85509a35cd726bdcecdd39e37bcb8e8951d59d49eb885255dc01dfe0edca8e90 -SIZE (KDE/applications/18.12.0/pim-sieve-editor-18.12.0.tar.xz) = 450536 +TIMESTAMP = 1546985125 +SHA256 (KDE/applications/18.12.1/pim-sieve-editor-18.12.1.tar.xz) = c7687b2af42e24c4bfabbe9c3ca6b7e0f5d3b1eb3121f5aeba4c7a467ecd1244 +SIZE (KDE/applications/18.12.1/pim-sieve-editor-18.12.1.tar.xz) = 450572 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 489892) +++ head/devel/cervisia/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225564 -SHA256 (KDE/applications/18.12.0/cervisia-18.12.0.tar.xz) = 7d64b0a35ada0c06db943efa7d4396ebc570fed2ec5fb359f2ab40ba9dfca5e4 -SIZE (KDE/applications/18.12.0/cervisia-18.12.0.tar.xz) = 1905940 +TIMESTAMP = 1546985113 +SHA256 (KDE/applications/18.12.1/cervisia-18.12.1.tar.xz) = a76358db8aab31805be9a994da3c67707c4784d15ba08b879a6dac09330b6a0a +SIZE (KDE/applications/18.12.1/cervisia-18.12.1.tar.xz) = 1905856 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 489892) +++ head/devel/dolphin-plugins/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225564 -SHA256 (KDE/applications/18.12.0/dolphin-plugins-18.12.0.tar.xz) = 3cca26bc0064b4babb4b8f524b521ba1fa257f42c8cb0f06188072053bd5f31e -SIZE (KDE/applications/18.12.0/dolphin-plugins-18.12.0.tar.xz) = 191844 +TIMESTAMP = 1546985113 +SHA256 (KDE/applications/18.12.1/dolphin-plugins-18.12.1.tar.xz) = 0876b9c5226c3673b36c3ba45c89da74c7b5e093bd8ff300e4e28a7142924c48 +SIZE (KDE/applications/18.12.1/dolphin-plugins-18.12.1.tar.xz) = 191968 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 489892) +++ head/devel/kapptemplate/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225563 -SHA256 (KDE/applications/18.12.0/kapptemplate-18.12.0.tar.xz) = 8acc2ec31286a8f456e44eaade6f72d015c2448e646f8e3fa481d4e866a707a3 -SIZE (KDE/applications/18.12.0/kapptemplate-18.12.0.tar.xz) = 317244 +TIMESTAMP = 1546985112 +SHA256 (KDE/applications/18.12.1/kapptemplate-18.12.1.tar.xz) = aa4f3459f50241bf4c7e6eb24bae33ed3f88282d229af251373786ffc168a2e0 +SIZE (KDE/applications/18.12.1/kapptemplate-18.12.1.tar.xz) = 317108 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 489892) +++ head/devel/kcachegrind/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225563 -SHA256 (KDE/applications/18.12.0/kcachegrind-18.12.0.tar.xz) = fe5cf0163ee4a95bb18d3461e3a6583424fbc147f1f46fb6bdc95ee1a9b077cb -SIZE (KDE/applications/18.12.0/kcachegrind-18.12.0.tar.xz) = 807824 +TIMESTAMP = 1546985112 +SHA256 (KDE/applications/18.12.1/kcachegrind-18.12.1.tar.xz) = 49685afc8d83d06c75887d999c65b603393bcd2a00e56aaed271564c9d6eee70 +SIZE (KDE/applications/18.12.1/kcachegrind-18.12.1.tar.xz) = 807868 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 489892) +++ head/devel/kde-dev-scripts/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225564 -SHA256 (KDE/applications/18.12.0/kde-dev-scripts-18.12.0.tar.xz) = b1d31d630903f3a964b3ebf448b66cf7093e143c01be5062c9815321489c950f -SIZE (KDE/applications/18.12.0/kde-dev-scripts-18.12.0.tar.xz) = 378220 +TIMESTAMP = 1546985113 +SHA256 (KDE/applications/18.12.1/kde-dev-scripts-18.12.1.tar.xz) = 4386d4b79dc520a8bcba5c78a29b50bbf294444f98804ee4c582b67a39951dcc +SIZE (KDE/applications/18.12.1/kde-dev-scripts-18.12.1.tar.xz) = 378108 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 489892) +++ head/devel/kde-dev-utils/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225564 -SHA256 (KDE/applications/18.12.0/kde-dev-utils-18.12.0.tar.xz) = 38d0670b33263aefc9ada7d347f558371dea1338e04bc1395d6189d0e4895274 -SIZE (KDE/applications/18.12.0/kde-dev-utils-18.12.0.tar.xz) = 61100 +TIMESTAMP = 1546985112 +SHA256 (KDE/applications/18.12.1/kde-dev-utils-18.12.1.tar.xz) = b21530dffb31f8b37111fe490045295a53373244b7e94ffe6f9a4d49c50f601a +SIZE (KDE/applications/18.12.1/kde-dev-utils-18.12.1.tar.xz) = 61132 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 489892) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225563 -SHA256 (KDE/applications/18.12.0/kdesdk-thumbnailers-18.12.0.tar.xz) = eeec10b275638f8e939c1898e5b1a4294a9a98822af316de6937db7b6261a7e0 -SIZE (KDE/applications/18.12.0/kdesdk-thumbnailers-18.12.0.tar.xz) = 17268 +TIMESTAMP = 1546985112 +SHA256 (KDE/applications/18.12.1/kdesdk-thumbnailers-18.12.1.tar.xz) = 6b6e46dfeaaa9ba154afb90aa59feb820a28eee1b87fe1deff0723a584c70495 +SIZE (KDE/applications/18.12.1/kdesdk-thumbnailers-18.12.1.tar.xz) = 17248 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 489892) +++ head/devel/kio-extras/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225562 -SHA256 (KDE/applications/18.12.0/kio-extras-18.12.0.tar.xz) = c5ac845efcc37f1710d3a5204181bbb27f9bd06429ec95d018c63bc2503d74e9 -SIZE (KDE/applications/18.12.0/kio-extras-18.12.0.tar.xz) = 561848 +TIMESTAMP = 1546985111 +SHA256 (KDE/applications/18.12.1/kio-extras-18.12.1.tar.xz) = 83ef90969b4d420677d9d2b72c0dc337dced5b265ad0b45e965f4ce61b57c59f +SIZE (KDE/applications/18.12.1/kio-extras-18.12.1.tar.xz) = 561768 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 489892) +++ head/devel/lokalize/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225565 -SHA256 (KDE/applications/18.12.0/lokalize-18.12.0.tar.xz) = d8541a738737b2628c09d4cdf579e55ed9b7598e77b3859b65b69b8100e9361f -SIZE (KDE/applications/18.12.0/lokalize-18.12.0.tar.xz) = 2714584 +TIMESTAMP = 1546985113 +SHA256 (KDE/applications/18.12.1/lokalize-18.12.1.tar.xz) = 2ff1a7594b0593886b8b40f1fc4f7e9b385ca9b612b3fae3f07d4fb6fe89ffea +SIZE (KDE/applications/18.12.1/lokalize-18.12.1.tar.xz) = 2309852 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 489892) +++ head/devel/poxml/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225564 -SHA256 (KDE/applications/18.12.0/poxml-18.12.0.tar.xz) = 86fe648d26faa338855228cf3bb12488ebc750ff912bd893732f1b757f4ed3be -SIZE (KDE/applications/18.12.0/poxml-18.12.0.tar.xz) = 43180 +TIMESTAMP = 1546985113 +SHA256 (KDE/applications/18.12.1/poxml-18.12.1.tar.xz) = 0bdf05e488b26c0df3c3ed32f8ede0c2849a9c1299222367cc7ed5e1f5dd3743 +SIZE (KDE/applications/18.12.1/poxml-18.12.1.tar.xz) = 43136 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 489892) +++ head/devel/umbrello/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225563 -SHA256 (KDE/applications/18.12.0/umbrello-18.12.0.tar.xz) = 6ed4c5021fe96d89000dfe56a1401a939da00d42845541c9ed8eb730c1e62597 -SIZE (KDE/applications/18.12.0/umbrello-18.12.0.tar.xz) = 3049092 +TIMESTAMP = 1547149696 +SHA256 (KDE/applications/18.12.1/umbrello-18.12.1.tar.xz) = b9981e82513757fa2b564cc7cb8fa35cf1624e60655b216064dda19e1d01738a +SIZE (KDE/applications/18.12.1/umbrello-18.12.1.tar.xz) = 3049400 Index: head/devel/umbrello/pkg-plist =================================================================== --- head/devel/umbrello/pkg-plist (revision 489892) +++ head/devel/umbrello/pkg-plist (revision 489893) @@ -1,156 +1,157 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo +share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 489892) +++ head/editors/kate/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225596 -SHA256 (KDE/applications/18.12.0/kate-18.12.0.tar.xz) = 14991164207cededb14c778837969a391d117eb484a871666598867ae3366696 -SIZE (KDE/applications/18.12.0/kate-18.12.0.tar.xz) = 5770752 +TIMESTAMP = 1546985141 +SHA256 (KDE/applications/18.12.1/kate-18.12.1.tar.xz) = 67c21c729cfbf26f99250fc0a0a56ed7873a51bc61c2de6eb90662e7444e325d +SIZE (KDE/applications/18.12.1/kate-18.12.1.tar.xz) = 5763596 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 489892) +++ head/games/blinken/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225591 -SHA256 (KDE/applications/18.12.0/blinken-18.12.0.tar.xz) = 1d9e2be0939f1ad96eb7a4f9fb60c71f0d99fb3d4a7bf687c7ef28201e09d7b6 -SIZE (KDE/applications/18.12.0/blinken-18.12.0.tar.xz) = 2507576 +TIMESTAMP = 1546985136 +SHA256 (KDE/applications/18.12.1/blinken-18.12.1.tar.xz) = 422e67d8c30725e80f785f88497f0b25542e5fdf41611c2a72bc0789ad3e444d +SIZE (KDE/applications/18.12.1/blinken-18.12.1.tar.xz) = 2802732 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 489892) +++ head/games/bomber/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225592 -SHA256 (KDE/applications/18.12.0/bomber-18.12.0.tar.xz) = 92ce7c76a563412dd558e4a06230da1e1ad38bec36581997fca4069597545bee -SIZE (KDE/applications/18.12.0/bomber-18.12.0.tar.xz) = 819496 +TIMESTAMP = 1546985137 +SHA256 (KDE/applications/18.12.1/bomber-18.12.1.tar.xz) = 2d308fdce127d99461be81e399521ed2ede7e8a84f84bcfcf6140135c5dabb28 +SIZE (KDE/applications/18.12.1/bomber-18.12.1.tar.xz) = 819236 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 489892) +++ head/games/bovo/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225592 -SHA256 (KDE/applications/18.12.0/bovo-18.12.0.tar.xz) = 3ca6818cef966ebe2e05699a96b1a50eb6b7905bf9f053c33221f6f5c7e454bb -SIZE (KDE/applications/18.12.0/bovo-18.12.0.tar.xz) = 199560 +TIMESTAMP = 1546985137 +SHA256 (KDE/applications/18.12.1/bovo-18.12.1.tar.xz) = 5777d2e7c71e07f41c20a22be970936115bae229aace8db243ba2fd3b1eb84a7 +SIZE (KDE/applications/18.12.1/bovo-18.12.1.tar.xz) = 199420 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 489892) +++ head/games/granatier/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225594 -SHA256 (KDE/applications/18.12.0/granatier-18.12.0.tar.xz) = bfd2c091dece26d3bef8b45208c4072d5403aa8cad5c6637fde255be0f24bf90 -SIZE (KDE/applications/18.12.0/granatier-18.12.0.tar.xz) = 1942924 +TIMESTAMP = 1546985139 +SHA256 (KDE/applications/18.12.1/granatier-18.12.1.tar.xz) = 368bfadf8cd2111efade7a8fa35ee956e2150d3cbd4237473325ceaec455950a +SIZE (KDE/applications/18.12.1/granatier-18.12.1.tar.xz) = 1942824 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 489892) +++ head/games/kanagram/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225593 -SHA256 (KDE/applications/18.12.0/kanagram-18.12.0.tar.xz) = 691c612848fb559fe1b4c9297f5346c00688ac9e05cc7ecd722e630322016bf5 -SIZE (KDE/applications/18.12.0/kanagram-18.12.0.tar.xz) = 7432488 +TIMESTAMP = 1546985138 +SHA256 (KDE/applications/18.12.1/kanagram-18.12.1.tar.xz) = 7d05ce1577ff1ecc18ec3323fa76346014546fe554a986c44be28642951a7679 +SIZE (KDE/applications/18.12.1/kanagram-18.12.1.tar.xz) = 8027864 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 489892) +++ head/games/kapman/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225592 -SHA256 (KDE/applications/18.12.0/kapman-18.12.0.tar.xz) = 9177ccb87e2ad7cfe8cefa2553d7e35681be7c7cec8816f14b5df6e8e442186a -SIZE (KDE/applications/18.12.0/kapman-18.12.0.tar.xz) = 2525540 +TIMESTAMP = 1546985137 +SHA256 (KDE/applications/18.12.1/kapman-18.12.1.tar.xz) = f2e93d34ea80afcd62dff3b8ac6476946523feac9b18aa49f8e35560219eee84 +SIZE (KDE/applications/18.12.1/kapman-18.12.1.tar.xz) = 2525504 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 489892) +++ head/games/katomic/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225589 -SHA256 (KDE/applications/18.12.0/katomic-18.12.0.tar.xz) = 1f3376ce8c63edfd790fd49926a8d139b99f59a994a8ffe888f5c37bcf7a77a0 -SIZE (KDE/applications/18.12.0/katomic-18.12.0.tar.xz) = 1422636 +TIMESTAMP = 1546985134 +SHA256 (KDE/applications/18.12.1/katomic-18.12.1.tar.xz) = 06ce5d53d71ba4b04e4202d72b1856102fceb4d870bf62edf75bc6d1df46b25f +SIZE (KDE/applications/18.12.1/katomic-18.12.1.tar.xz) = 1422536 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 489892) +++ head/games/kblackbox/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225587 -SHA256 (KDE/applications/18.12.0/kblackbox-18.12.0.tar.xz) = b8096c1ffcb7051b2d767da77380d3e0cc1efcc9e719aa7c83648679525ba543 -SIZE (KDE/applications/18.12.0/kblackbox-18.12.0.tar.xz) = 444276 +TIMESTAMP = 1546985133 +SHA256 (KDE/applications/18.12.1/kblackbox-18.12.1.tar.xz) = 3768c160d3bad32ff243b715cdc6df49375f87c9d555eaf42b27c021a06b9cf2 +SIZE (KDE/applications/18.12.1/kblackbox-18.12.1.tar.xz) = 444216 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 489892) +++ head/games/kblocks/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225587 -SHA256 (KDE/applications/18.12.0/kblocks-18.12.0.tar.xz) = ca9d8d21747d694d786c9f0be3390c223b9dd88318989974f1b1bf63fa551538 -SIZE (KDE/applications/18.12.0/kblocks-18.12.0.tar.xz) = 1921632 +TIMESTAMP = 1546985133 +SHA256 (KDE/applications/18.12.1/kblocks-18.12.1.tar.xz) = ea0ec36cd50605f127742a845fd0ae8d55169428193f3a2429d38cf250f6fabb +SIZE (KDE/applications/18.12.1/kblocks-18.12.1.tar.xz) = 1921052 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 489892) +++ head/games/kbounce/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225586 -SHA256 (KDE/applications/18.12.0/kbounce-18.12.0.tar.xz) = 88ac2c263e0f3604be06197ed74799e8c047cf0ec8ca5a89e509dda43285b9e4 -SIZE (KDE/applications/18.12.0/kbounce-18.12.0.tar.xz) = 3467460 +TIMESTAMP = 1546985132 +SHA256 (KDE/applications/18.12.1/kbounce-18.12.1.tar.xz) = a50c6f976258a0f432ba797dc34c980415f2ed2c716d1a87b127dc2805e80988 +SIZE (KDE/applications/18.12.1/kbounce-18.12.1.tar.xz) = 3468716 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 489892) +++ head/games/kbreakout/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225594 -SHA256 (KDE/applications/18.12.0/kbreakout-18.12.0.tar.xz) = ae280f38879ef2fff1074f72cbbffbea4bc631cc6146b07f3255a52ce822882f -SIZE (KDE/applications/18.12.0/kbreakout-18.12.0.tar.xz) = 2275564 +TIMESTAMP = 1546985139 +SHA256 (KDE/applications/18.12.1/kbreakout-18.12.1.tar.xz) = 98b7c6112af853a4b68afa27fa99317b337480d8876efe449ba2eecc2c26d057 +SIZE (KDE/applications/18.12.1/kbreakout-18.12.1.tar.xz) = 2276084 Index: head/games/kdegames/Makefile.common =================================================================== --- head/games/kdegames/Makefile.common (revision 489892) +++ head/games/kdegames/Makefile.common (revision 489893) @@ -1,72 +1,74 @@ # KDE_GAMES_ALL entry must be a portname, port directory can be overridden # if needed. Option description is also used as port's COMMENT # (use COMMENT= ${${PORTNAME}_DESC} for new ports) KDE_GAMES_ALL= bomber \ bovo \ granatier \ kapman \ katomic \ kblackbox \ kblocks \ kbounce \ kbreakout \ kdiamond \ kfourinline \ killbots \ kiriki \ kjumpingcube \ klines \ klickety \ kmahjongg \ kmines \ knavalbattle \ knetwalk \ + knights \ kolf \ kollision \ kpat \ kshisen \ ksirk \ ksquares \ ktuberling \ picmi bomber_DESC= Arcade Bombing game bovo_DESC= Five-in-a-row Board game granatier_DESC= Bomberman clone kajongg_DESC= Ancient Chinese board game for 4 players kapman_DESC= Pac-Man Clone katomic_DESC= Sokoban-like Logic game kblackbox_DESC= Blackbox Logic game kblocks_DESC= Falling Blocks game kbounce_DESC= Ball Bouncing game kbreakout_DESC= Breakout-like game kdiamond_DESC= Three-in-a-row game kfourinline_DESC= Four-in-a-row Board game kgoldrunner_DESC= Hunt Gold, Dodge Enemies and Solve Puzzles kigo_DESC= Go Board game killbots_DESC= Evade killer robots kiriki_DESC= Yahtzee-like Dice game kjumpingcube_DESC= Territory Capture game klines_DESC= Tactical game klickety_DESC= Tetris themed solitaire kmahjongg_DESC= Mahjongg Solitaire kmines_DESC= Minesweeper-like game knavalbattle_DESC= Ship Sinking game knetwalk_DESC= Network Construction game +knights_DESC= Chess game kolf_DESC= Miniature Golf kollision_DESC= Simple ball dodging game konquest_DESC= Galactic Strategy game kpat_DESC= Patience Card game kreversi_DESC= Reversi Board game kshisen_DESC= Shisen-Sho Mahjongg-like Tile game ksirk_DESC= World Domination Strategy game ksnakeduel_DESC= Snake-like game kspaceduel_DESC= Space Arcade game ksquares_DESC= Connect the dots to create squares ksudoku_DESC= Sudoku game ktuberling_DESC= Picture game for Children kubrick_DESC= 3-D game based on Rubik's Cube lskat_DESC= Card game palapeli_DESC= Jigsaw puzzle game picmi_DESC= Single player logic-based puzzle game Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 489892) +++ head/games/kdiamond/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225586 -SHA256 (KDE/applications/18.12.0/kdiamond-18.12.0.tar.xz) = 5a4ef12361e87ffe9e9499806f2fe7f9625aa8440157044b78947678d8d82130 -SIZE (KDE/applications/18.12.0/kdiamond-18.12.0.tar.xz) = 4719436 +TIMESTAMP = 1546985132 +SHA256 (KDE/applications/18.12.1/kdiamond-18.12.1.tar.xz) = a46a4f2e46af73905caee76208920908bf6d11cbeb90042612051f23e00baf48 +SIZE (KDE/applications/18.12.1/kdiamond-18.12.1.tar.xz) = 4719636 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 489892) +++ head/games/kfourinline/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225589 -SHA256 (KDE/applications/18.12.0/kfourinline-18.12.0.tar.xz) = 7fac56faba62c1a9a25cf15bc570c8b090b2ec1f31e39ced895c70759ec79207 -SIZE (KDE/applications/18.12.0/kfourinline-18.12.0.tar.xz) = 636108 +TIMESTAMP = 1546985134 +SHA256 (KDE/applications/18.12.1/kfourinline-18.12.1.tar.xz) = 0fc05b95f517ec5eb47bf26799cb942d00f1dae570917cef9214a564b8258ab7 +SIZE (KDE/applications/18.12.1/kfourinline-18.12.1.tar.xz) = 636488 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 489892) +++ head/games/kgoldrunner/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225589 -SHA256 (KDE/applications/18.12.0/kgoldrunner-18.12.0.tar.xz) = 79917845d932ae93750772e25124e9f418a76bc3e474b76c222647055d95ac32 -SIZE (KDE/applications/18.12.0/kgoldrunner-18.12.0.tar.xz) = 4409436 +TIMESTAMP = 1546985135 +SHA256 (KDE/applications/18.12.1/kgoldrunner-18.12.1.tar.xz) = 6ad1c9cd4a68bb6671707cd6687e0c33fd491b58b771556badd07d9ac2e00da7 +SIZE (KDE/applications/18.12.1/kgoldrunner-18.12.1.tar.xz) = 4415076 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 489892) +++ head/games/khangman/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225595 -SHA256 (KDE/applications/18.12.0/khangman-18.12.0.tar.xz) = 18eb2d93cf817da4541a9a80813a7b7d14c9aabd4b162b21385070cb94940578 -SIZE (KDE/applications/18.12.0/khangman-18.12.0.tar.xz) = 7267432 +TIMESTAMP = 1546985140 +SHA256 (KDE/applications/18.12.1/khangman-18.12.1.tar.xz) = 581880634e44ca4dfa4bf5857555ee3a96817a5bdaae22d16bf41a9d5b079383 +SIZE (KDE/applications/18.12.1/khangman-18.12.1.tar.xz) = 7115664 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 489892) +++ head/games/kigo/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225592 -SHA256 (KDE/applications/18.12.0/kigo-18.12.0.tar.xz) = 5868ba55bf4b56967eaa7b9fcfc9008497cc31d5a86533c85e0b8b852c2c740e -SIZE (KDE/applications/18.12.0/kigo-18.12.0.tar.xz) = 5223956 +TIMESTAMP = 1546985137 +SHA256 (KDE/applications/18.12.1/kigo-18.12.1.tar.xz) = c2a5c4b05efba05e1faad7df16a3539ac4fe2b1160ddf82e7798b05472baa31e +SIZE (KDE/applications/18.12.1/kigo-18.12.1.tar.xz) = 5224212 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 489892) +++ head/games/killbots/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225593 -SHA256 (KDE/applications/18.12.0/killbots-18.12.0.tar.xz) = 0e06fb83398fe7787525730137b49dba1e48db3b020ca977ff43a51cc7a11d71 -SIZE (KDE/applications/18.12.0/killbots-18.12.0.tar.xz) = 1165020 +TIMESTAMP = 1546985138 +SHA256 (KDE/applications/18.12.1/killbots-18.12.1.tar.xz) = 836cd4317894cb5337cb72c39d8c78111f5aabc2c744458faaa533102bde4b8a +SIZE (KDE/applications/18.12.1/killbots-18.12.1.tar.xz) = 1165004 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 489892) +++ head/games/kiriki/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225593 -SHA256 (KDE/applications/18.12.0/kiriki-18.12.0.tar.xz) = 08a6efb5223044fc383bee24272aa845d4f3bcbd86078593a86d21790dd50f25 -SIZE (KDE/applications/18.12.0/kiriki-18.12.0.tar.xz) = 371732 +TIMESTAMP = 1546985138 +SHA256 (KDE/applications/18.12.1/kiriki-18.12.1.tar.xz) = ff9e9ec362c9e8bb5353196063313116ba5ac57e30741890214e290f373eb6eb +SIZE (KDE/applications/18.12.1/kiriki-18.12.1.tar.xz) = 371664 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 489892) +++ head/games/kjumpingcube/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225590 -SHA256 (KDE/applications/18.12.0/kjumpingcube-18.12.0.tar.xz) = 39ab86d630f94e9b91085f8aef05050084d5d18e1a76ce82d006c816f2160248 -SIZE (KDE/applications/18.12.0/kjumpingcube-18.12.0.tar.xz) = 286412 +TIMESTAMP = 1546985135 +SHA256 (KDE/applications/18.12.1/kjumpingcube-18.12.1.tar.xz) = 30265b5d3b70faa65120ed08e2a12aa8e9bee3549143df2f7cbbd511b190f444 +SIZE (KDE/applications/18.12.1/kjumpingcube-18.12.1.tar.xz) = 286408 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 489892) +++ head/games/klickety/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225592 -SHA256 (KDE/applications/18.12.0/klickety-18.12.0.tar.xz) = d6d318ab21259618cf3f71dd3bd51b82ac1d8a11c7d5b7cdecdd1b68244d7c20 -SIZE (KDE/applications/18.12.0/klickety-18.12.0.tar.xz) = 1388768 +TIMESTAMP = 1546985137 +SHA256 (KDE/applications/18.12.1/klickety-18.12.1.tar.xz) = fe47f10e7015b2618f0118e8f7f8825cdb51a828a11d2c8f62001f52b78b5b92 +SIZE (KDE/applications/18.12.1/klickety-18.12.1.tar.xz) = 1388564 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 489892) +++ head/games/klines/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225589 -SHA256 (KDE/applications/18.12.0/klines-18.12.0.tar.xz) = 1d4037065bf21666ef4088a55f4915992789dd6d8825690b0ba89b95a5d605ec -SIZE (KDE/applications/18.12.0/klines-18.12.0.tar.xz) = 1781452 +TIMESTAMP = 1546985134 +SHA256 (KDE/applications/18.12.1/klines-18.12.1.tar.xz) = aeff4131efe6243b6fff536918a5df3fe3b5558a4e675d7515431ca3b1da47af +SIZE (KDE/applications/18.12.1/klines-18.12.1.tar.xz) = 1781624 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 489892) +++ head/games/kmahjongg/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225587 -SHA256 (KDE/applications/18.12.0/kmahjongg-18.12.0.tar.xz) = 9de21f54f6e72bbdde8e5557736b33b0ed1bedfddeb2e06b87240639256d64ff -SIZE (KDE/applications/18.12.0/kmahjongg-18.12.0.tar.xz) = 4063912 +TIMESTAMP = 1546985133 +SHA256 (KDE/applications/18.12.1/kmahjongg-18.12.1.tar.xz) = 0d2feccaeab8e71c02327969caeac7b2ece25845c0ef858bcd5552e2bba1552a +SIZE (KDE/applications/18.12.1/kmahjongg-18.12.1.tar.xz) = 4064060 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 489892) +++ head/games/kmines/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225586 -SHA256 (KDE/applications/18.12.0/kmines-18.12.0.tar.xz) = dcd47af2c6ca366a74fda1dfb741530f4f256c52609a809b3c00bda46e80ff51 -SIZE (KDE/applications/18.12.0/kmines-18.12.0.tar.xz) = 901096 +TIMESTAMP = 1546985132 +SHA256 (KDE/applications/18.12.1/kmines-18.12.1.tar.xz) = 9147baee70e9576b76b26c46077f27e8715a77f733e7c6cf82929af573940137 +SIZE (KDE/applications/18.12.1/kmines-18.12.1.tar.xz) = 901240 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 489892) +++ head/games/knavalbattle/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225591 -SHA256 (KDE/applications/18.12.0/knavalbattle-18.12.0.tar.xz) = f38d22bec6df1628aa87cea8a4a4ca96f4af900735d62471444d3462a1c0649b -SIZE (KDE/applications/18.12.0/knavalbattle-18.12.0.tar.xz) = 1280492 +TIMESTAMP = 1546985137 +SHA256 (KDE/applications/18.12.1/knavalbattle-18.12.1.tar.xz) = 888b0a258887fc5d9ae09b838ff9b8ccbc7d628d01d45d6705a1110e506203dc +SIZE (KDE/applications/18.12.1/knavalbattle-18.12.1.tar.xz) = 1280452 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 489892) +++ head/games/knetwalk/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225595 -SHA256 (KDE/applications/18.12.0/knetwalk-18.12.0.tar.xz) = 11f7122112b22e5f542ae421e4bc67f1bebcb7092403566585231d4a2d3ff3dd -SIZE (KDE/applications/18.12.0/knetwalk-18.12.0.tar.xz) = 1036600 +TIMESTAMP = 1546985140 +SHA256 (KDE/applications/18.12.1/knetwalk-18.12.1.tar.xz) = 0c30a3ebcd8f44bdddaa305f486fd047e196c788783e881aa104ad901c49a774 +SIZE (KDE/applications/18.12.1/knetwalk-18.12.1.tar.xz) = 1036456 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 489892) +++ head/games/knights/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545506086 -SHA256 (KDE/applications/18.12.0/knights-18.12.0.tar.xz) = 0b83ddcbd5ebc7addadfed899ef5437548e9907d201bebcb1d9af95c3049e982 -SIZE (KDE/applications/18.12.0/knights-18.12.0.tar.xz) = 3507724 +TIMESTAMP = 1546985225 +SHA256 (KDE/applications/18.12.1/knights-18.12.1.tar.xz) = 82a2f0016a455cf91455d853f07197555cec93190765b795e4c2600042fcc79e +SIZE (KDE/applications/18.12.1/knights-18.12.1.tar.xz) = 3507844 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 489892) +++ head/games/kolf/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225590 -SHA256 (KDE/applications/18.12.0/kolf-18.12.0.tar.xz) = d3e5f8c3aa443297729739da625515e66b35d40815c7c56ef9e160eb9363ba48 -SIZE (KDE/applications/18.12.0/kolf-18.12.0.tar.xz) = 924652 +TIMESTAMP = 1546985136 +SHA256 (KDE/applications/18.12.1/kolf-18.12.1.tar.xz) = 719849686cc100bcd6af04808731a0380f5dc989d9dc2bbe0d7ea2daf5ae561c +SIZE (KDE/applications/18.12.1/kolf-18.12.1.tar.xz) = 924628 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 489892) +++ head/games/kollision/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225594 -SHA256 (KDE/applications/18.12.0/kollision-18.12.0.tar.xz) = b7802fd16c9609d9122b68da46be0f19a8f45bb3fcb08c6ba182798445a92efe -SIZE (KDE/applications/18.12.0/kollision-18.12.0.tar.xz) = 280768 +TIMESTAMP = 1546985139 +SHA256 (KDE/applications/18.12.1/kollision-18.12.1.tar.xz) = 74e303cd0e6fff28604e1f2d350dbe395c201e03a89b582860603a249f93b245 +SIZE (KDE/applications/18.12.1/kollision-18.12.1.tar.xz) = 280764 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 489892) +++ head/games/konquest/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225591 -SHA256 (KDE/applications/18.12.0/konquest-18.12.0.tar.xz) = 1fc822c1f91fc1b08acfae651428fac9312db5cb92fce0c04c7f2a1a8f0af9f0 -SIZE (KDE/applications/18.12.0/konquest-18.12.0.tar.xz) = 658540 +TIMESTAMP = 1546985136 +SHA256 (KDE/applications/18.12.1/konquest-18.12.1.tar.xz) = 0391184ad63efc8bccae4fc44b44ab24699c3c1d5025c50e6b89d951ea169356 +SIZE (KDE/applications/18.12.1/konquest-18.12.1.tar.xz) = 658432 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 489892) +++ head/games/kpat/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225590 -SHA256 (KDE/applications/18.12.0/kpat-18.12.0.tar.xz) = fc8d329a8c3d4b72b6384613f834deca6f2bae3a3becf1987c53caa888ba00a3 -SIZE (KDE/applications/18.12.0/kpat-18.12.0.tar.xz) = 3571108 +TIMESTAMP = 1546985135 +SHA256 (KDE/applications/18.12.1/kpat-18.12.1.tar.xz) = 4a28f2d05fe2edff51134cc17292e1932ef57564182f13c70ca04aabf512b1aa +SIZE (KDE/applications/18.12.1/kpat-18.12.1.tar.xz) = 3572112 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 489892) +++ head/games/kreversi/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225593 -SHA256 (KDE/applications/18.12.0/kreversi-18.12.0.tar.xz) = eb4a3bd0653bdd0707b4f1f58e4bc80be0df8b4d7fbe4c17a2272b8ad49db712 -SIZE (KDE/applications/18.12.0/kreversi-18.12.0.tar.xz) = 943036 +TIMESTAMP = 1546985138 +SHA256 (KDE/applications/18.12.1/kreversi-18.12.1.tar.xz) = a4579c4000b0956aa4e204bf66cb9493673bfbc15c27ddeff170b5b4bb393c9c +SIZE (KDE/applications/18.12.1/kreversi-18.12.1.tar.xz) = 942948 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 489892) +++ head/games/kshisen/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225588 -SHA256 (KDE/applications/18.12.0/kshisen-18.12.0.tar.xz) = 9c2335b3ba612dc2aaa65adac73d0d86cf8c61c3d85b6c9c7ef40d32ece2a92d -SIZE (KDE/applications/18.12.0/kshisen-18.12.0.tar.xz) = 820884 +TIMESTAMP = 1546985133 +SHA256 (KDE/applications/18.12.1/kshisen-18.12.1.tar.xz) = 7d34dc1c2d544a9a2594a78a5aff8256cb78f3919e43e3ca15ff6f8cb393e473 +SIZE (KDE/applications/18.12.1/kshisen-18.12.1.tar.xz) = 820908 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 489892) +++ head/games/ksirk/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225594 -SHA256 (KDE/applications/18.12.0/ksirk-18.12.0.tar.xz) = 91d304b76e85fd5c158f51567caca2aa211359107051dc66db06821a0bf0a8da -SIZE (KDE/applications/18.12.0/ksirk-18.12.0.tar.xz) = 6988160 +TIMESTAMP = 1546985138 +SHA256 (KDE/applications/18.12.1/ksirk-18.12.1.tar.xz) = 0eaf439604800f20e39333af3a9de488365347d27fa3f41e1ece694990e00b81 +SIZE (KDE/applications/18.12.1/ksirk-18.12.1.tar.xz) = 6987060 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 489892) +++ head/games/ksnakeduel/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225594 -SHA256 (KDE/applications/18.12.0/ksnakeduel-18.12.0.tar.xz) = 4479608cd78cfd918f1e17c18995a5c000a519b1841e23678fcc1dc416a04c19 -SIZE (KDE/applications/18.12.0/ksnakeduel-18.12.0.tar.xz) = 604952 +TIMESTAMP = 1546985139 +SHA256 (KDE/applications/18.12.1/ksnakeduel-18.12.1.tar.xz) = 1487335827b559b29972cfdeec926bbab22dd8c29a23daf498d631b70b740fd0 +SIZE (KDE/applications/18.12.1/ksnakeduel-18.12.1.tar.xz) = 604912 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 489892) +++ head/games/kspaceduel/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225590 -SHA256 (KDE/applications/18.12.0/kspaceduel-18.12.0.tar.xz) = 544892cbcf57d788a6d4b33700850db553109b6deac6de62070d792c17afab21 -SIZE (KDE/applications/18.12.0/kspaceduel-18.12.0.tar.xz) = 610444 +TIMESTAMP = 1546985135 +SHA256 (KDE/applications/18.12.1/kspaceduel-18.12.1.tar.xz) = 9ca52c3a632c0823a40820846363aa8a1036d159b15d57b7eadce6f52fb6ec06 +SIZE (KDE/applications/18.12.1/kspaceduel-18.12.1.tar.xz) = 610400 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 489892) +++ head/games/ksquares/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225587 -SHA256 (KDE/applications/18.12.0/ksquares-18.12.0.tar.xz) = 1d753e5c62aeabb8b75ca05afd4c60af3ea4a956bd9bccea6953ed9ed570d328 -SIZE (KDE/applications/18.12.0/ksquares-18.12.0.tar.xz) = 259220 +TIMESTAMP = 1546985132 +SHA256 (KDE/applications/18.12.1/ksquares-18.12.1.tar.xz) = 8bcd219d8707f4653b3c011ba121d05e19d2c0223c7b92ec9741a07b233ecdbf +SIZE (KDE/applications/18.12.1/ksquares-18.12.1.tar.xz) = 259272 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 489892) +++ head/games/ksudoku/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225590 -SHA256 (KDE/applications/18.12.0/ksudoku-18.12.0.tar.xz) = 26befaaa4238927a0953660e6a1146e708f846ec5c7cdcfccb6d34c24ba7a4ae -SIZE (KDE/applications/18.12.0/ksudoku-18.12.0.tar.xz) = 1645928 +TIMESTAMP = 1546985135 +SHA256 (KDE/applications/18.12.1/ksudoku-18.12.1.tar.xz) = 3abf29384c75e55f2f4d068789183ed54327609a56b15507030a1e361dc9a5b2 +SIZE (KDE/applications/18.12.1/ksudoku-18.12.1.tar.xz) = 1645704 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 489892) +++ head/games/ktuberling/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225588 -SHA256 (KDE/applications/18.12.0/ktuberling-18.12.0.tar.xz) = d3698647185d6075054fc516d129acc7dbd1295852a1b67aa6bc96e61c064257 -SIZE (KDE/applications/18.12.0/ktuberling-18.12.0.tar.xz) = 32799512 +TIMESTAMP = 1546985134 +SHA256 (KDE/applications/18.12.1/ktuberling-18.12.1.tar.xz) = 733e4b038995b43e0369f19b95008bd53be9d061b30d2555ffeb24edec141c40 +SIZE (KDE/applications/18.12.1/ktuberling-18.12.1.tar.xz) = 32799780 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 489892) +++ head/games/kubrick/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225591 -SHA256 (KDE/applications/18.12.0/kubrick-18.12.0.tar.xz) = cc0b0dcb404217374c033e803573cac2666753d70bff7a7a737171c503e99240 -SIZE (KDE/applications/18.12.0/kubrick-18.12.0.tar.xz) = 311300 +TIMESTAMP = 1546985136 +SHA256 (KDE/applications/18.12.1/kubrick-18.12.1.tar.xz) = 94e69e1c3bf145af308222c5ce64ef2fded485e1cb46a1c86700b05ea66c086f +SIZE (KDE/applications/18.12.1/kubrick-18.12.1.tar.xz) = 311100 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 489892) +++ head/games/libkdegames/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225589 -SHA256 (KDE/applications/18.12.0/libkdegames-18.12.0.tar.xz) = 7b414075f135b93e1e332bbadf207f81c96c78d448b1f254d6015fc988052006 -SIZE (KDE/applications/18.12.0/libkdegames-18.12.0.tar.xz) = 6382788 +TIMESTAMP = 1546985135 +SHA256 (KDE/applications/18.12.1/libkdegames-18.12.1.tar.xz) = c5e49027b25adfabb525f26b6f25fca9c2aa54e7a648752bebc0206a5f997a46 +SIZE (KDE/applications/18.12.1/libkdegames-18.12.1.tar.xz) = 6381940 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 489892) +++ head/games/libkmahjongg/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225595 -SHA256 (KDE/applications/18.12.0/libkmahjongg-18.12.0.tar.xz) = fd11f7dac545b2a294298ee3a2f237c71018c46717dac63983116d36218af38a -SIZE (KDE/applications/18.12.0/libkmahjongg-18.12.0.tar.xz) = 1683336 +TIMESTAMP = 1546985140 +SHA256 (KDE/applications/18.12.1/libkmahjongg-18.12.1.tar.xz) = 9bcf1024663fa9f1fe00ce55fa4fb6b90f0082b663b7f198fc4181408f03a9e0 +SIZE (KDE/applications/18.12.1/libkmahjongg-18.12.1.tar.xz) = 1684212 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 489892) +++ head/games/lskat/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225594 -SHA256 (KDE/applications/18.12.0/lskat-18.12.0.tar.xz) = df025b411db7accc11ccffbf866ba531e021528e1d87a70969a9f9fd84f889b3 -SIZE (KDE/applications/18.12.0/lskat-18.12.0.tar.xz) = 1217688 +TIMESTAMP = 1546985139 +SHA256 (KDE/applications/18.12.1/lskat-18.12.1.tar.xz) = b53f5c1c2cb73a13561213fbb4dfde2b38a01e1e3f15cfd5dde9771778a70318 +SIZE (KDE/applications/18.12.1/lskat-18.12.1.tar.xz) = 1217448 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 489892) +++ head/games/palapeli/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225588 -SHA256 (KDE/applications/18.12.0/palapeli-18.12.0.tar.xz) = 9c47814cc4d939bdb804a4ed36cdf87fd480baacd1cdd3f60fe8861601d7cb25 -SIZE (KDE/applications/18.12.0/palapeli-18.12.0.tar.xz) = 2063840 +TIMESTAMP = 1546985134 +SHA256 (KDE/applications/18.12.1/palapeli-18.12.1.tar.xz) = 0ddfb2a0123b10fac4e41683ca41a3b2b42b0b6f9be4510b0aaebb65ada58e5f +SIZE (KDE/applications/18.12.1/palapeli-18.12.1.tar.xz) = 2064784 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 489892) +++ head/games/picmi/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225591 -SHA256 (KDE/applications/18.12.0/picmi-18.12.0.tar.xz) = d7df6bbb442c3a889e641d2b626f34ecdaf9c2f08f3302234af2276110b4ce78 -SIZE (KDE/applications/18.12.0/picmi-18.12.0.tar.xz) = 1355948 +TIMESTAMP = 1546985136 +SHA256 (KDE/applications/18.12.1/picmi-18.12.1.tar.xz) = fbac635e71e7bf82260b0e3cced687bfe18d7278e1af51665f5292077cdfb036 +SIZE (KDE/applications/18.12.1/picmi-18.12.1.tar.xz) = 1355900 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 489892) +++ head/graphics/gwenview/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225586 -SHA256 (KDE/applications/18.12.0/gwenview-18.12.0.tar.xz) = 2e8bab23346cbc7ca8561e8ea88a8d9f73b017948b87348199ab2bb70a362fdd -SIZE (KDE/applications/18.12.0/gwenview-18.12.0.tar.xz) = 6178072 +TIMESTAMP = 1546985132 +SHA256 (KDE/applications/18.12.1/gwenview-18.12.1.tar.xz) = d5095aea3bd2c8c8661a69b276fd5a536133696789b56a21ba4ce96b7d543906 +SIZE (KDE/applications/18.12.1/gwenview-18.12.1.tar.xz) = 5714244 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 489892) +++ head/graphics/kamera/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225585 -SHA256 (KDE/applications/18.12.0/kamera-18.12.0.tar.xz) = ed43c3d4dfcccbcfe446b037d0be31ff4fd5500773895b952bcac685b6780f25 -SIZE (KDE/applications/18.12.0/kamera-18.12.0.tar.xz) = 98468 +TIMESTAMP = 1546985131 +SHA256 (KDE/applications/18.12.1/kamera-18.12.1.tar.xz) = f25709f81c05263ad3d06771b9aa48d3c2f22a6f7a89b9b4be99cec2a07ff49c +SIZE (KDE/applications/18.12.1/kamera-18.12.1.tar.xz) = 98744 Index: head/graphics/kamera/pkg-plist =================================================================== --- head/graphics/kamera/pkg-plist (revision 489892) +++ head/graphics/kamera/pkg-plist (revision 489893) @@ -1,72 +1,76 @@ %%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/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/eu/LC_MESSAGES/kcmkamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.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/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.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/solid/actions/solid_camera.desktop Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 489892) +++ head/graphics/kcolorchooser/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225584 -SHA256 (KDE/applications/18.12.0/kcolorchooser-18.12.0.tar.xz) = 0bbaa954d2eba84766aa3106152dffda29b5036fdc995d6c756ad577958e497d -SIZE (KDE/applications/18.12.0/kcolorchooser-18.12.0.tar.xz) = 16944 +TIMESTAMP = 1546985130 +SHA256 (KDE/applications/18.12.1/kcolorchooser-18.12.1.tar.xz) = f62f37e52dd04fe1f871e72bc60fbb8584b5330d072246390c9b2c77b9b716d2 +SIZE (KDE/applications/18.12.1/kcolorchooser-18.12.1.tar.xz) = 16912 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 489892) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225584 -SHA256 (KDE/applications/18.12.0/kdegraphics-mobipocket-18.12.0.tar.xz) = 51eaffea48cd637dca26a8b9ac31cc8164a2954004dccd58353a5c42f3b2fd15 -SIZE (KDE/applications/18.12.0/kdegraphics-mobipocket-18.12.0.tar.xz) = 13452 +TIMESTAMP = 1546985130 +SHA256 (KDE/applications/18.12.1/kdegraphics-mobipocket-18.12.1.tar.xz) = d8d52a333022ecd787562ecd808546419cb17cf279710a35aac1786d034a63af +SIZE (KDE/applications/18.12.1/kdegraphics-mobipocket-18.12.1.tar.xz) = 13448 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 489892) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225585 -SHA256 (KDE/applications/18.12.0/svgpart-18.12.0.tar.xz) = 2708224ad4d5271793c5a531ffe92a8beb208c281ebac3df8c49fad5ec5f0bdb -SIZE (KDE/applications/18.12.0/svgpart-18.12.0.tar.xz) = 20848 +TIMESTAMP = 1546985131 +SHA256 (KDE/applications/18.12.1/svgpart-18.12.1.tar.xz) = 5aac56789cf806e8eb729ee04fee18fe1c76f715e5d2431474517b92b65a3b1b +SIZE (KDE/applications/18.12.1/svgpart-18.12.1.tar.xz) = 20856 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 489892) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225582 -SHA256 (KDE/applications/18.12.0/kdegraphics-thumbnailers-18.12.0.tar.xz) = e426263fa515ab5da122114e9116609497debcf49614e5341a620253be66ca24 -SIZE (KDE/applications/18.12.0/kdegraphics-thumbnailers-18.12.0.tar.xz) = 41288 +TIMESTAMP = 1546985129 +SHA256 (KDE/applications/18.12.1/kdegraphics-thumbnailers-18.12.1.tar.xz) = 72d77b2702ef8dd11efe4451daa77eb2da003a6bd2923687a8235bf31b3ae5e7 +SIZE (KDE/applications/18.12.1/kdegraphics-thumbnailers-18.12.1.tar.xz) = 41288 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 489892) +++ head/graphics/kimagemapeditor/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225585 -SHA256 (KDE/applications/18.12.0/kimagemapeditor-18.12.0.tar.xz) = 35745194706d21b49d1abd25ebb4cd49f8119e51a1706bb76053223c715c2750 -SIZE (KDE/applications/18.12.0/kimagemapeditor-18.12.0.tar.xz) = 1070712 +TIMESTAMP = 1546985131 +SHA256 (KDE/applications/18.12.1/kimagemapeditor-18.12.1.tar.xz) = c4138d67263ccb5d1b81e9a829b5a29c71f48c53aeb3f4a756841da1e4681fd7 +SIZE (KDE/applications/18.12.1/kimagemapeditor-18.12.1.tar.xz) = 1070696 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 489892) +++ head/graphics/kolourpaint/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225583 -SHA256 (KDE/applications/18.12.0/kolourpaint-18.12.0.tar.xz) = ec71422232340c38a331480cd2f5620d453f46ede7db1ac34413c2ccda0212d4 -SIZE (KDE/applications/18.12.0/kolourpaint-18.12.0.tar.xz) = 5547648 +TIMESTAMP = 1546985129 +SHA256 (KDE/applications/18.12.1/kolourpaint-18.12.1.tar.xz) = cd0a57d0192649c715af61eee4f5112c15347a3fe5d745519c1ccc9f0b248540 +SIZE (KDE/applications/18.12.1/kolourpaint-18.12.1.tar.xz) = 5218268 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 489892) +++ head/graphics/libkdcraw/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225585 -SHA256 (KDE/applications/18.12.0/libkdcraw-18.12.0.tar.xz) = bf28ee6aa87b5bf865f418bfa60e0a4a995b9358975e0fd1702f0cd5e82a6b58 -SIZE (KDE/applications/18.12.0/libkdcraw-18.12.0.tar.xz) = 42096 +TIMESTAMP = 1546985131 +SHA256 (KDE/applications/18.12.1/libkdcraw-18.12.1.tar.xz) = cc30098d5960a529da909e12dcafc75777a6bd430de74585a1dbd08fff65a8bc +SIZE (KDE/applications/18.12.1/libkdcraw-18.12.1.tar.xz) = 42104 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 489892) +++ head/graphics/libkexiv2/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225584 -SHA256 (KDE/applications/18.12.0/libkexiv2-18.12.0.tar.xz) = 0a862feb9d9238f1b8b8a6c95d2ee7744145605239bfba024376021323eb77f4 -SIZE (KDE/applications/18.12.0/libkexiv2-18.12.0.tar.xz) = 64528 +TIMESTAMP = 1546985130 +SHA256 (KDE/applications/18.12.1/libkexiv2-18.12.1.tar.xz) = 43eae5763854dbbcabbbe500a1a7221a50aae9d159560095fe0c0cf71a09f3c9 +SIZE (KDE/applications/18.12.1/libkexiv2-18.12.1.tar.xz) = 64508 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 489892) +++ head/graphics/libkipi/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225585 -SHA256 (KDE/applications/18.12.0/libkipi-18.12.0.tar.xz) = d0a09a245df74947f2c0428a68b06e89dd69a928de81cff1659e5e7d7a02d631 -SIZE (KDE/applications/18.12.0/libkipi-18.12.0.tar.xz) = 103444 +TIMESTAMP = 1546985131 +SHA256 (KDE/applications/18.12.1/libkipi-18.12.1.tar.xz) = bbbb4b6cd8c405f4de952e6c4270934bcd28e9050382edf3426b8368719de28c +SIZE (KDE/applications/18.12.1/libkipi-18.12.1.tar.xz) = 103464 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 489892) +++ head/graphics/libksane/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225583 -SHA256 (KDE/applications/18.12.0/libksane-18.12.0.tar.xz) = b217a1b6557cf26c07a8aa34fca5d2dc140bec4ad768176a4d32ba4366f4bded -SIZE (KDE/applications/18.12.0/libksane-18.12.0.tar.xz) = 137768 +TIMESTAMP = 1546985129 +SHA256 (KDE/applications/18.12.1/libksane-18.12.1.tar.xz) = 28737f8d4ecc95bc3e262503158ac70f9ceff0ee856d3ec0fede68a85b61af95 +SIZE (KDE/applications/18.12.1/libksane-18.12.1.tar.xz) = 137700 Index: head/graphics/okular/Makefile =================================================================== --- head/graphics/okular/Makefile (revision 489892) +++ head/graphics/okular/Makefile (revision 489893) @@ -1,40 +1,41 @@ # $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@qt5 \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons dbusaddons ecm emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ - kdelibs4support khtml kio libkexiv2 parts pty \ + kdelibs4support khtml kio libkexiv2 parts pty purpose \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 489892) +++ head/graphics/okular/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225583 -SHA256 (KDE/applications/18.12.0/okular-18.12.0.tar.xz) = 915643d16b26c352cfa8461647a08701b50b7802c7e628ff303d74af313599a0 -SIZE (KDE/applications/18.12.0/okular-18.12.0.tar.xz) = 6120152 +TIMESTAMP = 1546985129 +SHA256 (KDE/applications/18.12.1/okular-18.12.1.tar.xz) = d4dfe8bac088c3455661ad10ae3abec10c41faa13ba16a763146924144ce3acc +SIZE (KDE/applications/18.12.1/okular-18.12.1.tar.xz) = 6094616 Index: head/graphics/okular/pkg-plist =================================================================== --- head/graphics/okular/pkg-plist (revision 489892) +++ head/graphics/okular/pkg-plist (revision 489893) @@ -1,1074 +1,1080 @@ bin/okular bin/okularkirigami etc/xdg/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/settings_core.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/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_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_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/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 489892) +++ head/graphics/spectacle/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225584 -SHA256 (KDE/applications/18.12.0/spectacle-18.12.0.tar.xz) = ac10857ef87ea81147ad039d8632ec915960ebc3d69c3cdc86bd5f243cd8da5a -SIZE (KDE/applications/18.12.0/spectacle-18.12.0.tar.xz) = 1050696 +TIMESTAMP = 1546985130 +SHA256 (KDE/applications/18.12.1/spectacle-18.12.1.tar.xz) = a9d1637946956034f3a76d237092f661ffa8eba5abc606fab9e1d210f95531e5 +SIZE (KDE/applications/18.12.1/spectacle-18.12.1.tar.xz) = 828060 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 489892) +++ head/japanese/kiten/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225599 -SHA256 (KDE/applications/18.12.0/kiten-18.12.0.tar.xz) = 8caeab2d0c9c56067870777023b410260aea2e6fb33eb69f79a9fcc21c8b6ad2 -SIZE (KDE/applications/18.12.0/kiten-18.12.0.tar.xz) = 11554352 +TIMESTAMP = 1546985145 +SHA256 (KDE/applications/18.12.1/kiten-18.12.1.tar.xz) = 8724da063142dad77e9e8ea7e9ea1c9a5aa12c62a9dab5f4db21cf75182326b5 +SIZE (KDE/applications/18.12.1/kiten-18.12.1.tar.xz) = 11281444 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 489892) +++ head/lang/kross-interpreters/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225600 -SHA256 (KDE/applications/18.12.0/kross-interpreters-18.12.0.tar.xz) = 6e09e20bf200444f1e716a85969f15e591b107ef1f6e7420179502b2c76227f7 -SIZE (KDE/applications/18.12.0/kross-interpreters-18.12.0.tar.xz) = 144800 +TIMESTAMP = 1546985145 +SHA256 (KDE/applications/18.12.1/kross-interpreters-18.12.1.tar.xz) = 2c6ba13a31ec47ccf506861e6c1aaf53fb0779804484b5d14af7ea5bf3c5a74c +SIZE (KDE/applications/18.12.1/kross-interpreters-18.12.1.tar.xz) = 144816 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 489892) +++ head/lang/kturtle/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225600 -SHA256 (KDE/applications/18.12.0/kturtle-18.12.0.tar.xz) = bb548003e3d944fe3ad5559efd8827ebfbd0ef766477f3f4afd9b02790206446 -SIZE (KDE/applications/18.12.0/kturtle-18.12.0.tar.xz) = 1608508 +TIMESTAMP = 1546985145 +SHA256 (KDE/applications/18.12.1/kturtle-18.12.1.tar.xz) = a1ea256ecd757a08cd9eb0c56ec26d1ec0f781c9781de9730857685f5f01452c +SIZE (KDE/applications/18.12.1/kturtle-18.12.1.tar.xz) = 1560532 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 489892) +++ head/math/analitza/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225573 -SHA256 (KDE/applications/18.12.0/analitza-18.12.0.tar.xz) = 2e3c78589e7d6054c2e98445b502c68c877f208a122b953506ec09cc92f9113d -SIZE (KDE/applications/18.12.0/analitza-18.12.0.tar.xz) = 331900 +TIMESTAMP = 1546985121 +SHA256 (KDE/applications/18.12.1/analitza-18.12.1.tar.xz) = 7b060607324c873f2096038a126a1535c23dab2f62a8db6811541889599f9447 +SIZE (KDE/applications/18.12.1/analitza-18.12.1.tar.xz) = 331988 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 489892) +++ head/math/cantor/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225574 -SHA256 (KDE/applications/18.12.0/cantor-18.12.0.tar.xz) = 7e6543e956a359452957025d1c1962984d76a8977648ffa2566a3fd4da6e4d47 -SIZE (KDE/applications/18.12.0/cantor-18.12.0.tar.xz) = 2240772 +TIMESTAMP = 1546985122 +SHA256 (KDE/applications/18.12.1/cantor-18.12.1.tar.xz) = 2cb761f83ee9e031627b0bb8fb57c4b4576c9cb5d1789677584dae89d9a55f8c +SIZE (KDE/applications/18.12.1/cantor-18.12.1.tar.xz) = 2447272 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 489892) +++ head/math/kalgebra/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225575 -SHA256 (KDE/applications/18.12.0/kalgebra-18.12.0.tar.xz) = d162c7b624edafe910c1c1d829b933e5ff7d5232713ac3b74dc382523f998341 -SIZE (KDE/applications/18.12.0/kalgebra-18.12.0.tar.xz) = 716044 +TIMESTAMP = 1546985123 +SHA256 (KDE/applications/18.12.1/kalgebra-18.12.1.tar.xz) = 443fdb6d7b88047b7d5e7c4e0a61b3d95a2cd73f5f63255cc634d22e1cd9e425 +SIZE (KDE/applications/18.12.1/kalgebra-18.12.1.tar.xz) = 716356 Index: head/math/kalgebra/pkg-plist =================================================================== --- head/math/kalgebra/pkg-plist (revision 489892) +++ head/math/kalgebra/pkg-plist (revision 489893) @@ -1,148 +1,149 @@ bin/calgebra %%WEBENGINE%%bin/kalgebra bin/kalgebramobile %%WEBENGINE%%share/applications/org.kde.kalgebra.desktop share/applications/org.kde.kalgebramobile.desktop share/icons/hicolor/64x64/apps/kalgebra.png share/icons/hicolor/scalable/apps/kalgebra.svgz share/kalgebramobile/plugins/About.qml share/kalgebramobile/plugins/Console.qml share/kalgebramobile/plugins/Dictionary.qml share/kalgebramobile/plugins/Plot2D.qml share/kalgebramobile/plugins/Plot3D.qml share/kalgebramobile/plugins/Tables.qml share/kalgebramobile/plugins/VariablesView.qml share/kalgebramobile/plugins/kalgebraabout.json share/kalgebramobile/plugins/kalgebraconsole.json share/kalgebramobile/plugins/kalgebradictionary.json share/kalgebramobile/plugins/kalgebraplot2d.json share/kalgebramobile/plugins/kalgebraplot3d.json share/kalgebramobile/plugins/kalgebratables.json share/kalgebramobile/plugins/kalgebravariables.json share/kalgebramobile/plugins/widgets/Action.qml share/kalgebramobile/plugins/widgets/AddButton.qml share/kalgebramobile/plugins/widgets/Button.qml share/kalgebramobile/plugins/widgets/CalcButton.qml share/kalgebramobile/plugins/widgets/ComboBox.qml share/kalgebramobile/plugins/widgets/Dialog.qml share/kalgebramobile/plugins/widgets/ExpressionInput.qml share/kalgebramobile/plugins/widgets/KAlgebraMobile.qml share/kalgebramobile/plugins/widgets/KAlgebraPage.qml share/kalgebramobile/plugins/widgets/Label.qml share/kalgebramobile/plugins/widgets/RealInput.qml share/kalgebramobile/plugins/widgets/SimpleListView.qml share/kalgebramobile/plugins/widgets/qmldir %%WEBENGINE%%share/katepart5/syntax/kalgebra.xml %%WEBENGINE%%share/kservices5/graphsplasmoid.desktop share/locale/ar/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/bs/LC_MESSAGES/kalgebra.mo share/locale/bs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca/LC_MESSAGES/kalgebra.mo share/locale/ca/LC_MESSAGES/kalgebramobile.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kalgebra.mo share/locale/ca@valencia/LC_MESSAGES/kalgebramobile.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/cs/LC_MESSAGES/kalgebra.mo share/locale/cs/LC_MESSAGES/kalgebramobile.mo share/locale/cs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/da/LC_MESSAGES/kalgebra.mo share/locale/da/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/de/LC_MESSAGES/kalgebra.mo share/locale/de/LC_MESSAGES/kalgebramobile.mo share/locale/de/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/el/LC_MESSAGES/kalgebra.mo share/locale/el/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/en_GB/LC_MESSAGES/kalgebra.mo share/locale/en_GB/LC_MESSAGES/kalgebramobile.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eo/LC_MESSAGES/kalgebra.mo share/locale/eo/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/es/LC_MESSAGES/kalgebra.mo share/locale/es/LC_MESSAGES/kalgebramobile.mo share/locale/es/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/et/LC_MESSAGES/kalgebra.mo share/locale/et/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eu/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebramobile.mo share/locale/fi/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/fr/LC_MESSAGES/kalgebra.mo share/locale/fr/LC_MESSAGES/kalgebramobile.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ga/LC_MESSAGES/kalgebra.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/gl/LC_MESSAGES/kalgebra.mo share/locale/gl/LC_MESSAGES/kalgebramobile.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/hi/LC_MESSAGES/kalgebra.mo share/locale/hr/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/it/LC_MESSAGES/kalgebra.mo share/locale/it/LC_MESSAGES/kalgebramobile.mo share/locale/it/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ja/LC_MESSAGES/kalgebra.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/kk/LC_MESSAGES/kalgebra.mo share/locale/kk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/km/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lt/LC_MESSAGES/kalgebra.mo share/locale/lt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lv/LC_MESSAGES/kalgebra.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/mr/LC_MESSAGES/kalgebra.mo share/locale/mr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nb/LC_MESSAGES/kalgebra.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nds/LC_MESSAGES/kalgebra.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nl/LC_MESSAGES/kalgebra.mo share/locale/nl/LC_MESSAGES/kalgebramobile.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nn/LC_MESSAGES/kalgebra.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pa/LC_MESSAGES/kalgebra.mo share/locale/pa/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pl/LC_MESSAGES/kalgebra.mo share/locale/pl/LC_MESSAGES/kalgebramobile.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt/LC_MESSAGES/kalgebra.mo share/locale/pt/LC_MESSAGES/kalgebramobile.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kalgebra.mo share/locale/pt_BR/LC_MESSAGES/kalgebramobile.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ro/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebramobile.mo share/locale/ru/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sk/LC_MESSAGES/kalgebra.mo share/locale/sk/LC_MESSAGES/kalgebramobile.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sl/LC_MESSAGES/kalgebra.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sv/LC_MESSAGES/kalgebra.mo share/locale/sv/LC_MESSAGES/kalgebramobile.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/tr/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ug/LC_MESSAGES/kalgebra.mo share/locale/ug/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/uk/LC_MESSAGES/kalgebra.mo share/locale/uk/LC_MESSAGES/kalgebramobile.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kalgebra.mo share/locale/zh_CN/LC_MESSAGES/kalgebramobile.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kalgebra.mo +share/locale/zh_TW/LC_MESSAGES/kalgebramobile.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo %%WEBENGINE%%share/metainfo/org.kde.kalgebra.appdata.xml share/metainfo/org.kde.kalgebramobile.appdata.xml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/config.ui %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/main.qml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/metadata.desktop Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 489892) +++ head/math/kbruch/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225575 -SHA256 (KDE/applications/18.12.0/kbruch-18.12.0.tar.xz) = 167163a921bef1c45263e5c319f29ac842400513332530b91e0a89176b56db94 -SIZE (KDE/applications/18.12.0/kbruch-18.12.0.tar.xz) = 5603332 +TIMESTAMP = 1546985123 +SHA256 (KDE/applications/18.12.1/kbruch-18.12.1.tar.xz) = 50b630197646032824c89b1f2b45a0c548f870f14ec0b72055adca6f1802984a +SIZE (KDE/applications/18.12.1/kbruch-18.12.1.tar.xz) = 5603416 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 489892) +++ head/math/kcalc/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225574 -SHA256 (KDE/applications/18.12.0/kcalc-18.12.0.tar.xz) = e078a0eb4becd00fef3b7c02b55468e4a2ef5f256106925555a9d9a7cbf68d97 -SIZE (KDE/applications/18.12.0/kcalc-18.12.0.tar.xz) = 362668 +TIMESTAMP = 1546985121 +SHA256 (KDE/applications/18.12.1/kcalc-18.12.1.tar.xz) = 237595641224c28a4d91bb132fc0a66807e03b26b9fba874e6ce8f026774ca39 +SIZE (KDE/applications/18.12.1/kcalc-18.12.1.tar.xz) = 362756 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 489892) +++ head/math/kig/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225574 -SHA256 (KDE/applications/18.12.0/kig-18.12.0.tar.xz) = f1cf5346a1b965cd30e671dfa4af62c66772b6f4eb40f99e84552f2425f9077f -SIZE (KDE/applications/18.12.0/kig-18.12.0.tar.xz) = 3498592 +TIMESTAMP = 1546985122 +SHA256 (KDE/applications/18.12.1/kig-18.12.1.tar.xz) = ecc9bc6cc5f76ca857cf1b1e4b786b724b2d6584d3b53c72249909ccdf488031 +SIZE (KDE/applications/18.12.1/kig-18.12.1.tar.xz) = 3498588 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 489892) +++ head/math/kmplot/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225574 -SHA256 (KDE/applications/18.12.0/kmplot-18.12.0.tar.xz) = 20fe92249d338487a266a99a3ee563f48800c57266c17ced4fca72c871c6c7d6 -SIZE (KDE/applications/18.12.0/kmplot-18.12.0.tar.xz) = 3060852 +TIMESTAMP = 1546985122 +SHA256 (KDE/applications/18.12.1/kmplot-18.12.1.tar.xz) = ee612202aa4e6ade830fdd61601447a5701115f04946d16853307ba9ee088976 +SIZE (KDE/applications/18.12.1/kmplot-18.12.1.tar.xz) = 3060904 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 489892) +++ head/math/rocs/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225575 -SHA256 (KDE/applications/18.12.0/rocs-18.12.0.tar.xz) = 20e1b061006219bcdf986be725f6f3dd2b88312b391916dcdf697131ceebe0bd -SIZE (KDE/applications/18.12.0/rocs-18.12.0.tar.xz) = 1515700 +TIMESTAMP = 1546985122 +SHA256 (KDE/applications/18.12.1/rocs-18.12.1.tar.xz) = 89d39704475cedc048afab0b8cb2e7d23546fa1189518c576e9916e5d15e6434 +SIZE (KDE/applications/18.12.1/rocs-18.12.1.tar.xz) = 1515576 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 489892) +++ head/misc/artikulate/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225571 -SHA256 (KDE/applications/18.12.0/artikulate-18.12.0.tar.xz) = f6ad7785620d848eebf6ab732d2e93abf75eeb1581fb66dc5cefe5a612e5f8a0 -SIZE (KDE/applications/18.12.0/artikulate-18.12.0.tar.xz) = 3748728 +TIMESTAMP = 1546985119 +SHA256 (KDE/applications/18.12.1/artikulate-18.12.1.tar.xz) = 017b2e8879d43af1235fc70170cf5c4f28959023b24e5ca86bc5c781f073ba9e +SIZE (KDE/applications/18.12.1/artikulate-18.12.1.tar.xz) = 3985720 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 489892) +++ head/misc/kdeedu-data/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225570 -SHA256 (KDE/applications/18.12.0/kdeedu-data-18.12.0.tar.xz) = bdc476ab9e03c48df398dd997f9fd0c9c809e39abb84820c491e12079b9679dc -SIZE (KDE/applications/18.12.0/kdeedu-data-18.12.0.tar.xz) = 327856 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/kdeedu-data-18.12.1.tar.xz) = 585570291a43674d780b6d8fcc744e6f354877dfdc2dde7ff9c89c3764f3d2de +SIZE (KDE/applications/18.12.1/kdeedu-data-18.12.1.tar.xz) = 327800 Index: head/misc/kdeutils/Makefile =================================================================== --- head/misc/kdeutils/Makefile (revision 489892) +++ head/misc/kdeutils/Makefile (revision 489893) @@ -1,55 +1,54 @@ # $FreeBSD$ PORTNAME= kdeutils DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org COMMENT= Collection of utilities for KDE USES= kde:5 metaport OPTIONS_DEFINE= ARK FILELIGHT KCALC KCHARSELECT KDEBUGSETTINGS \ KDF KFLOPPY KGPG KTEATIME KTIMER KWALLETMANAGER \ PRINTMANAGER OPTIONS_DEFAULT=${OPTIONS_DEFINE} ARK_DESC= Archiving tool ARK_RUN_DEPENDS= ark>=${KDE_APPLICATIONS_VERSION}:archivers/ark FILELIGHT_DESC= Map of concentric segmented-rings representing file system FILELIGHT_RUN_DEPENDS= filelight>=${KDE_APPLICATIONS_VERSION}:sysutils/filelight KCALC_DESC= Scientific calculator KCALC_RUN_DEPENDS= kcalc>=${KDE_APPLICATIONS_VERSION}:math/kcalc KCHARSELECT_DESC= Character selector KCHARSELECT_RUN_DEPENDS= kcharselect>=${KDE_APPLICATIONS_VERSION}:deskutils/kcharselect KDEBUGSETTINGS_DESC= KDE application to enable/disable qCDebug KDEBUGSETTINGS_RUN_DEPENDS= kdebugsettings>=${KDE_APPLICATIONS_VERSION}:sysutils/kdebugsettings KDF_DESC= Shows free space of devices KDF_RUN_DEPENDS= kdf>=${KDE_APPLICATIONS_VERSION}:sysutils/kdf KFLOPPY_DESC= Floppy disk formatter KFLOPPY_RUN_DEPENDS= kfloppy>=${KDE_APPLICATIONS_VERSION}:sysutils/kfloppy KGPG_DESC= Encryption tool for KDE KGPG_RUN_DEPENDS= kgpg>=${KDE_APPLICATIONS_VERSION}:security/kgpg KTEATIME_DESC= Handy timer for steeping tea KTEATIME_RUN_DEPENDS= kteatime>=${KDE_APPLICATIONS_VERSION}:x11-clocks/kteatime KTIMER_DESC= Countdown launcher KTIMER_RUN_DEPENDS= ktimer>=${KDE_APPLICATIONS_VERSION}:x11-clocks/ktimer KWALLETMANAGER_DESC= Password manager for KDE KWALLETMANAGER_RUN_DEPENDS= kwalletmanager>=${KDE_APPLICATIONS_VERSION}:security/kwalletmanager PRINTMANAGER_DESC= Printer manager for KDE PRINTMANAGER_RUN_DEPENDS= print-manager>=${KDE_APPLICATIONS_VERSION}:print/print-manager .include Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 489892) +++ head/misc/kgeography/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225572 -SHA256 (KDE/applications/18.12.0/kgeography-18.12.0.tar.xz) = 7bb25101ee98a6d552f46d760cbfe60f0a7da8d6a31dfaa5a35cf7dac71842b9 -SIZE (KDE/applications/18.12.0/kgeography-18.12.0.tar.xz) = 11078980 +TIMESTAMP = 1546985119 +SHA256 (KDE/applications/18.12.1/kgeography-18.12.1.tar.xz) = 8ee5fcd263b80d7c051f54b203d02c4209a4be4d2a37cd46dfc7647047c8b10b +SIZE (KDE/applications/18.12.1/kgeography-18.12.1.tar.xz) = 10828588 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 489892) +++ head/misc/klettres/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225571 -SHA256 (KDE/applications/18.12.0/klettres-18.12.0.tar.xz) = 98fb9d89dc4fcdac215cadea39c936ec8660bccd36419486e7075753ed3ecd3f -SIZE (KDE/applications/18.12.0/klettres-18.12.0.tar.xz) = 21713292 +TIMESTAMP = 1546985119 +SHA256 (KDE/applications/18.12.1/klettres-18.12.1.tar.xz) = 13ff266e7b5789e98208d8026cf032bef68e8889e7b4b1de70a27364489fb977 +SIZE (KDE/applications/18.12.1/klettres-18.12.1.tar.xz) = 21486452 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 489892) +++ head/misc/ktouch/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225570 -SHA256 (KDE/applications/18.12.0/ktouch-18.12.0.tar.xz) = 43f785e2ee9f8b91b91c1975a2850b80039e7921883cd1a92932d4eb9fea4188 -SIZE (KDE/applications/18.12.0/ktouch-18.12.0.tar.xz) = 5121672 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/ktouch-18.12.1.tar.xz) = 4529efa94dc0574790f492e9cc54ed898596c424f6444e025f81d0427a87746c +SIZE (KDE/applications/18.12.1/ktouch-18.12.1.tar.xz) = 5122924 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 489892) +++ head/misc/kwordquiz/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225571 -SHA256 (KDE/applications/18.12.0/kwordquiz-18.12.0.tar.xz) = 9cdb36800676c84cce1f78303d6a5b431a573d81058fca79cfc8d8ade13c1128 -SIZE (KDE/applications/18.12.0/kwordquiz-18.12.0.tar.xz) = 4168980 +TIMESTAMP = 1546985119 +SHA256 (KDE/applications/18.12.1/kwordquiz-18.12.1.tar.xz) = aed9a2501792c6734ed3b671a7cea095eb322180c368136aab6d2b319b9449b5 +SIZE (KDE/applications/18.12.1/kwordquiz-18.12.1.tar.xz) = 4168948 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 489892) +++ head/misc/libkeduvocdocument/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225570 -SHA256 (KDE/applications/18.12.0/libkeduvocdocument-18.12.0.tar.xz) = 53f8edc5db71be5a1ccd3a66155470ea86ae65a404de85025b0a67c5eebb46b9 -SIZE (KDE/applications/18.12.0/libkeduvocdocument-18.12.0.tar.xz) = 207028 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/libkeduvocdocument-18.12.1.tar.xz) = fc345f1616e1cd7220cc3c9982540dc3824800c516a0b2bf73b42c8d7803f47d +SIZE (KDE/applications/18.12.1/libkeduvocdocument-18.12.1.tar.xz) = 207024 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 489892) +++ head/misc/parley/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225570 -SHA256 (KDE/applications/18.12.0/parley-18.12.0.tar.xz) = f3a50456c972b6cc3d79ade947f40d5c03a44747877efbcae7fbacf0ca40d7d6 -SIZE (KDE/applications/18.12.0/parley-18.12.0.tar.xz) = 8823468 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/parley-18.12.1.tar.xz) = df58cd46f847c93f672d03190d8709329f100acea6f56c9d338341495caa64fb +SIZE (KDE/applications/18.12.1/parley-18.12.1.tar.xz) = 8823468 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 489892) +++ head/multimedia/dragon/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225570 -SHA256 (KDE/applications/18.12.0/dragon-18.12.0.tar.xz) = 44fcaed4c46d9d377f1d3121e32c1fdc51d5971a7b03aa4ca509567f92426d48 -SIZE (KDE/applications/18.12.0/dragon-18.12.0.tar.xz) = 1729000 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/dragon-18.12.1.tar.xz) = 75be05cb713467f701fec45763a7e2725cf79f986119e6f2dba5b60e06bddd39 +SIZE (KDE/applications/18.12.1/dragon-18.12.1.tar.xz) = 1664108 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 489892) +++ head/multimedia/kamoso/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225569 -SHA256 (KDE/applications/18.12.0/kamoso-18.12.0.tar.xz) = 23832bc3e43accc637be60afb4c3f60c5fcde86d7e4ff5b6f2b59b20f8da9038 -SIZE (KDE/applications/18.12.0/kamoso-18.12.0.tar.xz) = 166324 +TIMESTAMP = 1546985117 +SHA256 (KDE/applications/18.12.1/kamoso-18.12.1.tar.xz) = d700df2b93f4193fd9445f990b032e773a3dfb26ae8dce57dc500bf52e3b86c8 +SIZE (KDE/applications/18.12.1/kamoso-18.12.1.tar.xz) = 166312 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 489892) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225569 -SHA256 (KDE/applications/18.12.0/ffmpegthumbs-18.12.0.tar.xz) = bdf02bd50c08f75433a49cf6c011b0e96ea54125bae19bc333e9d3d58d849973 -SIZE (KDE/applications/18.12.0/ffmpegthumbs-18.12.0.tar.xz) = 21880 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/ffmpegthumbs-18.12.1.tar.xz) = 7176fe834bc1f5266cc0ef64278439b808adfb25b56aa62e44ffa6a51fe63b49 +SIZE (KDE/applications/18.12.1/ffmpegthumbs-18.12.1.tar.xz) = 23972 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 489892) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 489893) @@ -1,3 +1,16 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg +share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo +share/locale/ca@valencia/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/nl/LC_MESSAGES/ffmpegthumbs.mo +share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo +share/locale/pt/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/zh_CN/LC_MESSAGES/ffmpegthumbs.mo +share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo share/kservices5/ffmpegthumbs.desktop Index: head/multimedia/kdenlive/Makefile =================================================================== --- head/multimedia/kdenlive/Makefile (revision 489892) +++ head/multimedia/kdenlive/Makefile (revision 489893) @@ -1,65 +1,64 @@ # $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 BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 USES= cmake desktop-file-utils gettext-tools pkgconfig \ qt:5 shared-mime-info kde:5 tar:xz 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 newstuff \ notifications notifyconfig service solid sonnet textwidgets \ widgetsaddons xmlgui \ init_run USE_QT= concurrent core dbus declarative gui 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 FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FREI0R LADSPA SCREENCAST V4L XINE OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools 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 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 489892) +++ head/multimedia/kdenlive/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225570 -SHA256 (KDE/applications/18.12.0/kdenlive-18.12.0.tar.xz) = 978327f841b352d8b879a44b6f1f98eb76b8fb0acb02b9ee1185e277b4bb764a -SIZE (KDE/applications/18.12.0/kdenlive-18.12.0.tar.xz) = 10196100 +TIMESTAMP = 1546985118 +SHA256 (KDE/applications/18.12.1/kdenlive-18.12.1.tar.xz) = 4e2e513a6a71597e784add11133f51d0f0a96b05b0061f9bee6aba4ab10637a1 +SIZE (KDE/applications/18.12.1/kdenlive-18.12.1.tar.xz) = 10195996 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 489892) +++ head/net/akonadi-calendar/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225560 -SHA256 (KDE/applications/18.12.0/akonadi-calendar-18.12.0.tar.xz) = da07592929809def7302b31c722f74b08695af495b4fa4803b2b72397a3ab72a -SIZE (KDE/applications/18.12.0/akonadi-calendar-18.12.0.tar.xz) = 333476 +TIMESTAMP = 1546985110 +SHA256 (KDE/applications/18.12.1/akonadi-calendar-18.12.1.tar.xz) = 3187abded64391b61d9baca3363ad85a266a12e8c20dbbd8b8b83c7b57ea0a81 +SIZE (KDE/applications/18.12.1/akonadi-calendar-18.12.1.tar.xz) = 333400 Index: head/net/akonadi-contacts/Makefile =================================================================== --- head/net/akonadi-contacts/Makefile (revision 489892) +++ head/net/akonadi-contacts/Makefile (revision 489893) @@ -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= dbus core 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 489892) +++ head/net/akonadi-contacts/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225559 -SHA256 (KDE/applications/18.12.0/akonadi-contacts-18.12.0.tar.xz) = 36a72f9f4aefc5d6559ddd247932783c3ead2360b78c06f5bf664195bd05c532 -SIZE (KDE/applications/18.12.0/akonadi-contacts-18.12.0.tar.xz) = 390460 +TIMESTAMP = 1546985109 +SHA256 (KDE/applications/18.12.1/akonadi-contacts-18.12.1.tar.xz) = 78cff1dc5ec449b332f54847621ea1f6f2f4f37ed43adec833f86faab0c0d8d2 +SIZE (KDE/applications/18.12.1/akonadi-contacts-18.12.1.tar.xz) = 390432 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 489892) +++ head/net/akonadi-mime/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225559 -SHA256 (KDE/applications/18.12.0/akonadi-mime-18.12.0.tar.xz) = 9616a3870d4c1dea302f00d85a6105c1e0dc4f97888a5ceab8d9bf80ec2327f1 -SIZE (KDE/applications/18.12.0/akonadi-mime-18.12.0.tar.xz) = 136556 +TIMESTAMP = 1546985109 +SHA256 (KDE/applications/18.12.1/akonadi-mime-18.12.1.tar.xz) = b399b55e01c0a5300b717721964c139a24482aca709fc02f5c0c6f8881a6dd3b +SIZE (KDE/applications/18.12.1/akonadi-mime-18.12.1.tar.xz) = 136520 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 489892) +++ head/net/akonadi-notes/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225562 -SHA256 (KDE/applications/18.12.0/akonadi-notes-18.12.0.tar.xz) = 7cd3db1affb46671354e77b5da2a5187f89a6ae6d55beba86d243379b81d432c -SIZE (KDE/applications/18.12.0/akonadi-notes-18.12.0.tar.xz) = 24472 +TIMESTAMP = 1546985111 +SHA256 (KDE/applications/18.12.1/akonadi-notes-18.12.1.tar.xz) = 843adf8f6440524e6b1667637379d60b7683c308672cd6996d775d03241e5bd4 +SIZE (KDE/applications/18.12.1/akonadi-notes-18.12.1.tar.xz) = 24512 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 489892) +++ head/net/akonadi-search/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225557 -SHA256 (KDE/applications/18.12.0/akonadi-search-18.12.0.tar.xz) = 96d25962fd2ef2af2fe2f20250ca16bc4d39373c5850c49add84b13f65c1e8cd -SIZE (KDE/applications/18.12.0/akonadi-search-18.12.0.tar.xz) = 82816 +TIMESTAMP = 1546985107 +SHA256 (KDE/applications/18.12.1/akonadi-search-18.12.1.tar.xz) = a63d818e9ae30f3ac977962e693904489f31c4b264f8231bca7c9259a7489bf3 +SIZE (KDE/applications/18.12.1/akonadi-search-18.12.1.tar.xz) = 82788 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 489892) +++ head/net/calendarsupport/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225562 -SHA256 (KDE/applications/18.12.0/calendarsupport-18.12.0.tar.xz) = 8038cf672dc53bf9fda5b8aecc43f56bb226115406b85cb5728c78d0a9fc18a0 -SIZE (KDE/applications/18.12.0/calendarsupport-18.12.0.tar.xz) = 646352 +TIMESTAMP = 1546985111 +SHA256 (KDE/applications/18.12.1/calendarsupport-18.12.1.tar.xz) = 97f42712ad02871381f0ce4ac6dc56b827d6ba3933c0a55caeb491047941f842 +SIZE (KDE/applications/18.12.1/calendarsupport-18.12.1.tar.xz) = 646704 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 489892) +++ head/net/eventviews/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225561 -SHA256 (KDE/applications/18.12.0/eventviews-18.12.0.tar.xz) = fb2ccb86e094b27ea139ca5acd34bc32ca7d169f2644cc490941ffffd11f7e64 -SIZE (KDE/applications/18.12.0/eventviews-18.12.0.tar.xz) = 443136 +TIMESTAMP = 1546985110 +SHA256 (KDE/applications/18.12.1/eventviews-18.12.1.tar.xz) = c13a1005b59949c5a4f322bd39ff4f1f9e460a1d9734f2c24d364389246e7663 +SIZE (KDE/applications/18.12.1/eventviews-18.12.1.tar.xz) = 443328 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 489892) +++ head/net/incidenceeditor/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225556 -SHA256 (KDE/applications/18.12.0/incidenceeditor-18.12.0.tar.xz) = 70363d404b1b628ac0524044fa23204de1555a69d5f66a5554af111bf81f6138 -SIZE (KDE/applications/18.12.0/incidenceeditor-18.12.0.tar.xz) = 542004 +TIMESTAMP = 1546985106 +SHA256 (KDE/applications/18.12.1/incidenceeditor-18.12.1.tar.xz) = 7fbf79258c7fc139a0e2591eda706ba5256b74cd66a4972a0485f4f436522dc0 +SIZE (KDE/applications/18.12.1/incidenceeditor-18.12.1.tar.xz) = 541932 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 489892) +++ head/net/kalarmcal/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225558 -SHA256 (KDE/applications/18.12.0/kalarmcal-18.12.0.tar.xz) = 716c07861870e6b795298f29d02dfafdf0a5497ff09f0f9073cb73395df72051 -SIZE (KDE/applications/18.12.0/kalarmcal-18.12.0.tar.xz) = 572904 +TIMESTAMP = 1546985108 +SHA256 (KDE/applications/18.12.1/kalarmcal-18.12.1.tar.xz) = c73abb362a98c07c22bddf5a9bca88f49a1d99226eae544fbfd5534ac45bd373 +SIZE (KDE/applications/18.12.1/kalarmcal-18.12.1.tar.xz) = 572840 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 489892) +++ head/net/kblog/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225556 -SHA256 (KDE/applications/18.12.0/kblog-18.12.0.tar.xz) = 6623a9089b3eb0edcf043183969adda9dc7ceacf241cb907fd52c34e97e299ea -SIZE (KDE/applications/18.12.0/kblog-18.12.0.tar.xz) = 72768 +TIMESTAMP = 1546985106 +SHA256 (KDE/applications/18.12.1/kblog-18.12.1.tar.xz) = 1d6c57576a33241fff1a9b9f5eeb6f98bb7704237420025a4d041460d593b87d +SIZE (KDE/applications/18.12.1/kblog-18.12.1.tar.xz) = 72744 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 489892) +++ head/net/kcalcore/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225554 -SHA256 (KDE/applications/18.12.0/kcalcore-18.12.0.tar.xz) = 90c00b359154f8296ed5edff0b14f2bfd522382c39c5e61547e92fd6725bc713 -SIZE (KDE/applications/18.12.0/kcalcore-18.12.0.tar.xz) = 252592 +TIMESTAMP = 1546985104 +SHA256 (KDE/applications/18.12.1/kcalcore-18.12.1.tar.xz) = 714e395881affaea8c9ad907a1f3616dd93f1c1ab39436b40bfd5bc46ffd038d +SIZE (KDE/applications/18.12.1/kcalcore-18.12.1.tar.xz) = 253004 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 489892) +++ head/net/kcalutils/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225555 -SHA256 (KDE/applications/18.12.0/kcalutils-18.12.0.tar.xz) = 004230a7ca06780bc5a4e4f1a280ffb99631e4d2f30fbb0684c309f0ccb520f0 -SIZE (KDE/applications/18.12.0/kcalutils-18.12.0.tar.xz) = 328988 +TIMESTAMP = 1546985106 +SHA256 (KDE/applications/18.12.1/kcalutils-18.12.1.tar.xz) = f7ae6abc9268ef949a11b11492f94ef46b5039819ce043345aadd421d360d370 +SIZE (KDE/applications/18.12.1/kcalutils-18.12.1.tar.xz) = 329028 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 489892) +++ head/net/kcontacts/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225558 -SHA256 (KDE/applications/18.12.0/kcontacts-18.12.0.tar.xz) = 45f7a215461429ca19b0350bc295ddafa189fde595252a31b6692d097f0637b7 -SIZE (KDE/applications/18.12.0/kcontacts-18.12.0.tar.xz) = 603652 +TIMESTAMP = 1546985108 +SHA256 (KDE/applications/18.12.1/kcontacts-18.12.1.tar.xz) = 6aa124dcf9a022595789d61bd579ee565f30c9a9b1e8eb7d339ebd0721a26234 +SIZE (KDE/applications/18.12.1/kcontacts-18.12.1.tar.xz) = 603300 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 489892) +++ head/net/kdav/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225554 -SHA256 (KDE/applications/18.12.0/kdav-18.12.0.tar.xz) = ae6ec35d294b09c77f356b84e642498fea06b34784e9a7205ccf4f1d7d317c39 -SIZE (KDE/applications/18.12.0/kdav-18.12.0.tar.xz) = 49564 +TIMESTAMP = 1546985104 +SHA256 (KDE/applications/18.12.1/kdav-18.12.1.tar.xz) = e7bc0ba5b918e5969517d100a6d1de96e3ca4782731fb9eccbdf77fbc83d204f +SIZE (KDE/applications/18.12.1/kdav-18.12.1.tar.xz) = 49720 Index: head/net/kdav/pkg-plist =================================================================== --- head/net/kdav/pkg-plist (revision 489892) +++ head/net/kdav/pkg-plist (revision 489893) @@ -1,80 +1,81 @@ etc/xdg/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/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/libkdav_debug.h include/KPim/kdav/utils.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/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 489892) +++ head/net/kdenetwork-filesharing/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225562 -SHA256 (KDE/applications/18.12.0/kdenetwork-filesharing-18.12.0.tar.xz) = 9150bc557947ceb7c285078ba6e50b458b82263940fa574696a76794a3436ea0 -SIZE (KDE/applications/18.12.0/kdenetwork-filesharing-18.12.0.tar.xz) = 312764 +TIMESTAMP = 1546985111 +SHA256 (KDE/applications/18.12.1/kdenetwork-filesharing-18.12.1.tar.xz) = 042aab2232897b2ff0a3477ed4038d309cd52f383cc6cb9fd723af661b5bb3ff +SIZE (KDE/applications/18.12.1/kdenetwork-filesharing-18.12.1.tar.xz) = 312752 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 489892) +++ head/net/kget/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225556 -SHA256 (KDE/applications/18.12.0/kget-18.12.0.tar.xz) = 17229e6f2df08029b6e0ee546f2d87816ada7cf23bb7db1e9c8f4586a9866ab8 -SIZE (KDE/applications/18.12.0/kget-18.12.0.tar.xz) = 5208624 +TIMESTAMP = 1546985106 +SHA256 (KDE/applications/18.12.1/kget-18.12.1.tar.xz) = cb9e8b29322760336bdebe2a76cd16c49f0dc79e84c9f7fbc7d7c59c088c974a +SIZE (KDE/applications/18.12.1/kget-18.12.1.tar.xz) = 5076944 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 489892) +++ head/net/kidentitymanagement/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225555 -SHA256 (KDE/applications/18.12.0/kidentitymanagement-18.12.0.tar.xz) = d3cb3d2bcb96346569057f2fc21d459fff77b86f5c6caed407806d51d3aa0ac4 -SIZE (KDE/applications/18.12.0/kidentitymanagement-18.12.0.tar.xz) = 148540 +TIMESTAMP = 1546985105 +SHA256 (KDE/applications/18.12.1/kidentitymanagement-18.12.1.tar.xz) = b817da7dbfd09b5b0b1b410b632ce4e710d12fa4f373af55677d6e07f3f788de +SIZE (KDE/applications/18.12.1/kidentitymanagement-18.12.1.tar.xz) = 148688 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 489892) +++ head/net/kimap/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225558 -SHA256 (KDE/applications/18.12.0/kimap-18.12.0.tar.xz) = a59a5496d6d9f99bd27ca388c57ab9215465c04ec477ab708c849b6946d3a612 -SIZE (KDE/applications/18.12.0/kimap-18.12.0.tar.xz) = 119616 +TIMESTAMP = 1546985108 +SHA256 (KDE/applications/18.12.1/kimap-18.12.1.tar.xz) = d53ee58a575b7cb4d1bf204e90d8b120faa5d9458fe2bd3507bd937c436a38ec +SIZE (KDE/applications/18.12.1/kimap-18.12.1.tar.xz) = 119560 Index: head/net/kitinerary/Makefile =================================================================== --- head/net/kitinerary/Makefile (revision 489892) +++ head/net/kitinerary/Makefile (revision 489893) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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 kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative \ 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 489892) +++ head/net/kitinerary/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225553 -SHA256 (KDE/applications/18.12.0/kitinerary-18.12.0.tar.xz) = ed2a09491a64edf8083155203a89746db863ddf3ad3d918ffa8cfe3d99838e60 -SIZE (KDE/applications/18.12.0/kitinerary-18.12.0.tar.xz) = 651688 +TIMESTAMP = 1546985104 +SHA256 (KDE/applications/18.12.1/kitinerary-18.12.1.tar.xz) = 9a6bf468bd0568f06dc81cd9c0408fd4fb788c47e61b2cff421100d949f47391 +SIZE (KDE/applications/18.12.1/kitinerary-18.12.1.tar.xz) = 653812 Index: head/net/kitinerary/pkg-plist =================================================================== --- head/net/kitinerary/pkg-plist (revision 489892) +++ head/net/kitinerary/pkg-plist (revision 489893) @@ -1,94 +1,95 @@ etc/xdg/org_kde_kitinerary.categories include/KPim/KItinerary/Action include/KPim/KItinerary/AirportDb include/KPim/KItinerary/BarcodeDecoder include/KPim/KItinerary/Brand include/KPim/KItinerary/BusTrip include/KPim/KItinerary/CalendarHandler include/KPim/KItinerary/CountryDb include/KPim/KItinerary/Datatypes include/KPim/KItinerary/Event include/KPim/KItinerary/Extractor include/KPim/KItinerary/ExtractorEngine include/KPim/KItinerary/ExtractorPostprocessor 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/Person include/KPim/KItinerary/Place include/KPim/KItinerary/RentalCar include/KPim/KItinerary/Reservation include/KPim/KItinerary/SortUtil include/KPim/KItinerary/Taxi include/KPim/KItinerary/Ticket include/KPim/KItinerary/TrainStationDb include/KPim/KItinerary/TrainTrip include/KPim/KItinerary/Uic9%%KDE_APPLICATIONS_VERSION_SHORT%%3Parser include/KPim/KItinerary/Visit include/KPim/kitinerary/action.h include/KPim/kitinerary/airportdb.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/datatypes.h include/KPim/kitinerary/event.h include/KPim/kitinerary/extractor.h include/KPim/kitinerary/extractorengine.h include/KPim/kitinerary/extractorpostprocessor.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/person.h include/KPim/kitinerary/place.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/trainstationdb.h include/KPim/kitinerary/traintrip.h include/KPim/kitinerary/uic9%%KDE_APPLICATIONS_VERSION_SHORT%%3parser.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/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/ko/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 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 489892) +++ head/net/kldap/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225559 -SHA256 (KDE/applications/18.12.0/kldap-18.12.0.tar.xz) = bde8fab14c16d6ccf305497096231129e213d5c5cf2bbf858214330ddddfa90c -SIZE (KDE/applications/18.12.0/kldap-18.12.0.tar.xz) = 155596 +TIMESTAMP = 1546985109 +SHA256 (KDE/applications/18.12.1/kldap-18.12.1.tar.xz) = 7641f44ff67da2419f40821fea619deb418afb9b03c8dd8e42f79c48a61cfc84 +SIZE (KDE/applications/18.12.1/kldap-18.12.1.tar.xz) = 155456 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 489892) +++ head/net/kmailtransport/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225561 -SHA256 (KDE/applications/18.12.0/kmailtransport-18.12.0.tar.xz) = e6e480de2e209e317760131726dc83559fe791244837dba795830477097f7944 -SIZE (KDE/applications/18.12.0/kmailtransport-18.12.0.tar.xz) = 165880 +TIMESTAMP = 1546985110 +SHA256 (KDE/applications/18.12.1/kmailtransport-18.12.1.tar.xz) = 758bf8b05a37ca7caafec57b488fa1820e77bae17318ef2caa82c58288be6af9 +SIZE (KDE/applications/18.12.1/kmailtransport-18.12.1.tar.xz) = 165820 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 489892) +++ head/net/kmbox/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225560 -SHA256 (KDE/applications/18.12.0/kmbox-18.12.0.tar.xz) = f5197ffabf850bf4ea81dd42fc8cc8fd1e3226e4a4c355590716eebdfecb790e -SIZE (KDE/applications/18.12.0/kmbox-18.12.0.tar.xz) = 24660 +TIMESTAMP = 1546985109 +SHA256 (KDE/applications/18.12.1/kmbox-18.12.1.tar.xz) = ee136426536b76d4f4dbcef95f516a9aab5c85b78cd644ad3f66bd456711d02a +SIZE (KDE/applications/18.12.1/kmbox-18.12.1.tar.xz) = 24656 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 489892) +++ head/net/kmime/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225557 -SHA256 (KDE/applications/18.12.0/kmime-18.12.0.tar.xz) = 223bf626e00664bc3ca8688cbd18e68e13ee7ac6f677449e8946b1de85d9014e -SIZE (KDE/applications/18.12.0/kmime-18.12.0.tar.xz) = 146912 +TIMESTAMP = 1546985107 +SHA256 (KDE/applications/18.12.1/kmime-18.12.1.tar.xz) = c20219f978f328dd5246775a5135386ce43d465fef2fb503f4d4cda614767216 +SIZE (KDE/applications/18.12.1/kmime-18.12.1.tar.xz) = 146852 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 489892) +++ head/net/kontactinterface/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225554 -SHA256 (KDE/applications/18.12.0/kontactinterface-18.12.0.tar.xz) = 9f59ad01a633346780ba295aacad1a5462cf4192335df395206e04d8b3047d16 -SIZE (KDE/applications/18.12.0/kontactinterface-18.12.0.tar.xz) = 32860 +TIMESTAMP = 1546985104 +SHA256 (KDE/applications/18.12.1/kontactinterface-18.12.1.tar.xz) = c12c8fa79ab821f429a427871514e16987e69c65cb145b6a2551f26bf9500b4e +SIZE (KDE/applications/18.12.1/kontactinterface-18.12.1.tar.xz) = 32816 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 489892) +++ head/net/kpimtextedit/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225558 -SHA256 (KDE/applications/18.12.0/kpimtextedit-18.12.0.tar.xz) = 220848ef982323d499897e762e1449eee09cd866532c9f1483138a6da063e339 -SIZE (KDE/applications/18.12.0/kpimtextedit-18.12.0.tar.xz) = 142472 +TIMESTAMP = 1546985108 +SHA256 (KDE/applications/18.12.1/kpimtextedit-18.12.1.tar.xz) = 0b9a93339fd8291d3656deb6923ee83803fe30bd406f487a67d84ff5e44b718e +SIZE (KDE/applications/18.12.1/kpimtextedit-18.12.1.tar.xz) = 142852 Index: head/net/krdc/Makefile =================================================================== --- head/net/krdc/Makefile (revision 489892) +++ head/net/krdc/Makefile (revision 489893) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= krdc DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= RDP and VNC client for KDE LIB_DEPENDS= libvncserver.so:net/libvncserver USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dnssd doctools ecm i18n iconthemes kcmutils \ notifications notifyconfig service wallet widgetsaddons \ xmlgui USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= FREERDP DOCS OPTIONS_DEFAULT= FREERDP OPTIONS_SUB= yes FREERDP_CMAKE_BOOL= WITH_FREERDP FREERDP_DESC= Remote Desktop support via FreeRDP FREERDP_BUILD_DEPENDS= xfreerdp:net/freerdp FREERDP_RUN_DEPENDS= xfreerdp:net/freerdp .include Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 489892) +++ head/net/krdc/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225556 -SHA256 (KDE/applications/18.12.0/krdc-18.12.0.tar.xz) = a4c7b8756a3055f1acc4ed41c9364f9ed50cdd73fa277d1c7502cd965f09737b -SIZE (KDE/applications/18.12.0/krdc-18.12.0.tar.xz) = 1558304 +TIMESTAMP = 1546985107 +SHA256 (KDE/applications/18.12.1/krdc-18.12.1.tar.xz) = 3d73fe980fa6e0af3d3483fb2eec36e4b8bc6b65fc60347b1529bb2cd256adea +SIZE (KDE/applications/18.12.1/krdc-18.12.1.tar.xz) = 1419652 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 489892) +++ head/net/krfb/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225557 -SHA256 (KDE/applications/18.12.0/krfb-18.12.0.tar.xz) = f5c2aef8e4d76e20c45d23b4e1e06a6f7db9e24ffb62842ea162f582f91aff80 -SIZE (KDE/applications/18.12.0/krfb-18.12.0.tar.xz) = 992260 +TIMESTAMP = 1546985107 +SHA256 (KDE/applications/18.12.1/krfb-18.12.1.tar.xz) = e41a82bb36a3bb9038cb984baa688c603d90fb5480bf98f0c75d4cadc8a5102e +SIZE (KDE/applications/18.12.1/krfb-18.12.1.tar.xz) = 931608 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 489892) +++ head/net/ksmtp/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225560 -SHA256 (KDE/applications/18.12.0/ksmtp-18.12.0.tar.xz) = c40702cc9df0e210765cba6f7904b2f4209806911ce05e139939107c68c558b1 -SIZE (KDE/applications/18.12.0/ksmtp-18.12.0.tar.xz) = 40112 +TIMESTAMP = 1546985109 +SHA256 (KDE/applications/18.12.1/ksmtp-18.12.1.tar.xz) = 5a298a4bbdbfc924dfd7f365f56bc5874610594ffa78b99c6d595af1dd7d447e +SIZE (KDE/applications/18.12.1/ksmtp-18.12.1.tar.xz) = 40176 Index: head/net/ksmtp/pkg-plist =================================================================== --- head/net/ksmtp/pkg-plist (revision 489892) +++ head/net/ksmtp/pkg-plist (revision 489893) @@ -1,56 +1,57 @@ etc/xdg/ksmtp.categories include/KPim/KSMTP/KSMTP/Job include/KPim/KSMTP/KSMTP/LoginJob include/KPim/KSMTP/KSMTP/SendJob include/KPim/KSMTP/KSMTP/Session include/KPim/KSMTP/KSMTP/SessionUiProxy include/KPim/KSMTP/ksmtp/job.h include/KPim/KSMTP/ksmtp/ksmtp_export.h include/KPim/KSMTP/ksmtp/loginjob.h include/KPim/KSMTP/ksmtp/sendjob.h include/KPim/KSMTP/ksmtp/session.h include/KPim/KSMTP/ksmtp/sessionuiproxy.h include/KPim/ksmtp_version.h lib/cmake/KPimSMTP/KPimSMTPConfig.cmake lib/cmake/KPimSMTP/KPimSMTPConfigVersion.cmake lib/cmake/KPimSMTP/KPimSMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimSMTP/KPimSMTPTargets.cmake lib/libKPimSMTP.so lib/libKPimSMTP.so.5 lib/libKPimSMTP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KSMTP.pri share/locale/ar/LC_MESSAGES/libksmtp5.mo share/locale/bs/LC_MESSAGES/libksmtp5.mo share/locale/ca/LC_MESSAGES/libksmtp5.mo share/locale/ca@valencia/LC_MESSAGES/libksmtp5.mo share/locale/cs/LC_MESSAGES/libksmtp5.mo share/locale/de/LC_MESSAGES/libksmtp5.mo share/locale/en_GB/LC_MESSAGES/libksmtp5.mo share/locale/es/LC_MESSAGES/libksmtp5.mo share/locale/et/LC_MESSAGES/libksmtp5.mo share/locale/fi/LC_MESSAGES/libksmtp5.mo share/locale/fr/LC_MESSAGES/libksmtp5.mo share/locale/ga/LC_MESSAGES/libksmtp5.mo share/locale/gl/LC_MESSAGES/libksmtp5.mo share/locale/hu/LC_MESSAGES/libksmtp5.mo share/locale/it/LC_MESSAGES/libksmtp5.mo share/locale/ja/LC_MESSAGES/libksmtp5.mo share/locale/km/LC_MESSAGES/libksmtp5.mo share/locale/ko/LC_MESSAGES/libksmtp5.mo share/locale/lt/LC_MESSAGES/libksmtp5.mo share/locale/mr/LC_MESSAGES/libksmtp5.mo share/locale/nds/LC_MESSAGES/libksmtp5.mo share/locale/nl/LC_MESSAGES/libksmtp5.mo share/locale/nn/LC_MESSAGES/libksmtp5.mo share/locale/pl/LC_MESSAGES/libksmtp5.mo share/locale/pt/LC_MESSAGES/libksmtp5.mo share/locale/pt_BR/LC_MESSAGES/libksmtp5.mo share/locale/ru/LC_MESSAGES/libksmtp5.mo share/locale/sk/LC_MESSAGES/libksmtp5.mo share/locale/sl/LC_MESSAGES/libksmtp5.mo share/locale/sr/LC_MESSAGES/libksmtp5.mo share/locale/sv/LC_MESSAGES/libksmtp5.mo share/locale/tr/LC_MESSAGES/libksmtp5.mo share/locale/ug/LC_MESSAGES/libksmtp5.mo share/locale/uk/LC_MESSAGES/libksmtp5.mo share/locale/zh_CN/LC_MESSAGES/libksmtp5.mo +share/locale/zh_TW/LC_MESSAGES/libksmtp5.mo Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 489892) +++ head/net/ktnef/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225554 -SHA256 (KDE/applications/18.12.0/ktnef-18.12.0.tar.xz) = 8b658a74ed994740ce358356a60f2a0333068adf3e64cddcf333c162d47b49b1 -SIZE (KDE/applications/18.12.0/ktnef-18.12.0.tar.xz) = 299572 +TIMESTAMP = 1546985105 +SHA256 (KDE/applications/18.12.1/ktnef-18.12.1.tar.xz) = c92cec08082d1e1103185cb77023e934b7077d6fbec8ecbe08ec97fcea84a745 +SIZE (KDE/applications/18.12.1/ktnef-18.12.1.tar.xz) = 299540 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 489892) +++ head/net/libgravatar/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225560 -SHA256 (KDE/applications/18.12.0/libgravatar-18.12.0.tar.xz) = 2411685662143f7c8be9c9a1944a3f406b6db23b5c162cdeafe76cf1f49df81c -SIZE (KDE/applications/18.12.0/libgravatar-18.12.0.tar.xz) = 30180 +TIMESTAMP = 1546985110 +SHA256 (KDE/applications/18.12.1/libgravatar-18.12.1.tar.xz) = 46227a8e38cafd00d0eecffb3cfe8b94cd6c59869d55975562a7968dbf21eba8 +SIZE (KDE/applications/18.12.1/libgravatar-18.12.1.tar.xz) = 30128 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 489892) +++ head/net/libkgapi/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225555 -SHA256 (KDE/applications/18.12.0/libkgapi-18.12.0.tar.xz) = 7712137b6792bdcf89c34b9a742d0272a99c7e2eac5a7197dc68d567dcb9e934 -SIZE (KDE/applications/18.12.0/libkgapi-18.12.0.tar.xz) = 215000 +TIMESTAMP = 1546985106 +SHA256 (KDE/applications/18.12.1/libkgapi-18.12.1.tar.xz) = c36ad01be4c7c9799050b2ead366952fe0f974a8a1f8f5538498e64a78fbb5bc +SIZE (KDE/applications/18.12.1/libkgapi-18.12.1.tar.xz) = 214984 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 489892) +++ head/net/libksieve/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225561 -SHA256 (KDE/applications/18.12.0/libksieve-18.12.0.tar.xz) = 776aaff9189c87ad3d239bb26622c302800e65c87102e8bac75f5a5799d78ac3 -SIZE (KDE/applications/18.12.0/libksieve-18.12.0.tar.xz) = 550536 +TIMESTAMP = 1546985111 +SHA256 (KDE/applications/18.12.1/libksieve-18.12.1.tar.xz) = a1ed86467ffc7bef393c9ec5aaa65ba0ab4818107cf9bb07a37b70ae17498f4d +SIZE (KDE/applications/18.12.1/libksieve-18.12.1.tar.xz) = 550424 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 489892) +++ head/net/mailcommon/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225561 -SHA256 (KDE/applications/18.12.0/mailcommon-18.12.0.tar.xz) = 04f15b559473bb042b36786ab4f9cf92ee132edea9cf8091e73df1794deb2f2a -SIZE (KDE/applications/18.12.0/mailcommon-18.12.0.tar.xz) = 693348 +TIMESTAMP = 1546985110 +SHA256 (KDE/applications/18.12.1/mailcommon-18.12.1.tar.xz) = 221f9fe2d575da2fa43431d2eff62acad17df68c0948cba717d475bb4b082b50 +SIZE (KDE/applications/18.12.1/mailcommon-18.12.1.tar.xz) = 692244 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 489892) +++ head/net/mailimporter/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225555 -SHA256 (KDE/applications/18.12.0/mailimporter-18.12.0.tar.xz) = 716354ba0eed9e334e731992d877910b29827310de63d26b7e6ee7e7f6b1da1a -SIZE (KDE/applications/18.12.0/mailimporter-18.12.0.tar.xz) = 540688 +TIMESTAMP = 1546985105 +SHA256 (KDE/applications/18.12.1/mailimporter-18.12.1.tar.xz) = 282904963ac283cbf8b2d67251fe5d61969051f99b328ef5664e6db694c40fcd +SIZE (KDE/applications/18.12.1/mailimporter-18.12.1.tar.xz) = 540456 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 489892) +++ head/net/messagelib/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225559 -SHA256 (KDE/applications/18.12.0/messagelib-18.12.0.tar.xz) = dbce3465e52030d632142fb7de112eb00f3fe44d695ea142de0463baa8b12ba1 -SIZE (KDE/applications/18.12.0/messagelib-18.12.0.tar.xz) = 10428548 +TIMESTAMP = 1546985108 +SHA256 (KDE/applications/18.12.1/messagelib-18.12.1.tar.xz) = a8e1484119b2e14cf923579d8a5ce1565e2204692960a2ba13e8c2063829d3c1 +SIZE (KDE/applications/18.12.1/messagelib-18.12.1.tar.xz) = 10431240 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 489892) +++ head/net/pimcommon/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225557 -SHA256 (KDE/applications/18.12.0/pimcommon-18.12.0.tar.xz) = ec0b173bc54ede813588958a5ba5b3e11fbb44e1337166ea46201b4e19c190e5 -SIZE (KDE/applications/18.12.0/pimcommon-18.12.0.tar.xz) = 294900 +TIMESTAMP = 1546985107 +SHA256 (KDE/applications/18.12.1/pimcommon-18.12.1.tar.xz) = ff7053cbaababa2a15e949f728e4c5c47982fe2eeac67310936f1892db1f5b25 +SIZE (KDE/applications/18.12.1/pimcommon-18.12.1.tar.xz) = 295008 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 489892) +++ head/net/zeroconf-ioslave/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225555 -SHA256 (KDE/applications/18.12.0/zeroconf-ioslave-18.12.0.tar.xz) = 07b40cf645adc35584458c14dfe05a97083589e3e4159bf9c02fd08950d675e3 -SIZE (KDE/applications/18.12.0/zeroconf-ioslave-18.12.0.tar.xz) = 38744 +TIMESTAMP = 1546985105 +SHA256 (KDE/applications/18.12.1/zeroconf-ioslave-18.12.1.tar.xz) = 77b3938fc7fab72b835990bec340b84f70b0c5f7660ae60f69a2718a2728f9bf +SIZE (KDE/applications/18.12.1/zeroconf-ioslave-18.12.1.tar.xz) = 38732 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 489892) +++ head/net-im/kaccounts-integration/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/kaccounts-integration-18.12.0.tar.xz) = 7924bf7a0805481445b914fcf9f8f819e64f7ee57bdab79a4a187db0e369d2f3 -SIZE (KDE/applications/18.12.0/kaccounts-integration-18.12.0.tar.xz) = 71064 +TIMESTAMP = 1546985143 +SHA256 (KDE/applications/18.12.1/kaccounts-integration-18.12.1.tar.xz) = 3f3ed161655a8b838a06799a1868e6f68f9a9a5705f2459b9d2bf17daecb69d5 +SIZE (KDE/applications/18.12.1/kaccounts-integration-18.12.1.tar.xz) = 71052 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 489892) +++ head/net-im/kaccounts-providers/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/kaccounts-providers-18.12.0.tar.xz) = 39f0738421af2fcfd7d2afe299fa1baecd61b55e1998bd91ac41bebea096720e -SIZE (KDE/applications/18.12.0/kaccounts-providers-18.12.0.tar.xz) = 31624 +TIMESTAMP = 1546985143 +SHA256 (KDE/applications/18.12.1/kaccounts-providers-18.12.1.tar.xz) = 71876d338df0686d4bad01dd651f8e448638f68c9834a632ea2bbe85353f535e +SIZE (KDE/applications/18.12.1/kaccounts-providers-18.12.1.tar.xz) = 31612 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 489892) +++ head/net-im/kopete/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/kopete-18.12.0.tar.xz) = 4a0ce84954a9dd7bca612410a429330b74aad3b0f84ce1eddfc75dfcc58ef9f7 -SIZE (KDE/applications/18.12.0/kopete-18.12.0.tar.xz) = 9346732 +TIMESTAMP = 1546985142 +SHA256 (KDE/applications/18.12.1/kopete-18.12.1.tar.xz) = 1a7f5fe53aa0e91105cc5d717827cfd377d0c2bcda188cfe230c1f24a415068b +SIZE (KDE/applications/18.12.1/kopete-18.12.1.tar.xz) = 9346024 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 489892) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-accounts-kcm-18.12.0.tar.xz) = 1768d0a86e014833c85b009b471d52b52957563e083e3a0119e84c4ed53fa92f -SIZE (KDE/applications/18.12.0/ktp-accounts-kcm-18.12.0.tar.xz) = 261664 +TIMESTAMP = 1546985144 +SHA256 (KDE/applications/18.12.1/ktp-accounts-kcm-18.12.1.tar.xz) = 56f7afd4eb7ea743684f92435aa029a2304542e97de73316e5771250cead5cab +SIZE (KDE/applications/18.12.1/ktp-accounts-kcm-18.12.1.tar.xz) = 261516 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 489892) +++ head/net-im/ktp-approver/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-approver-18.12.0.tar.xz) = 38013aba16c01e27530c81b4470d586e5c74b8d9ed144af9e94604cd59eb71b3 -SIZE (KDE/applications/18.12.0/ktp-approver-18.12.0.tar.xz) = 36900 +TIMESTAMP = 1546985144 +SHA256 (KDE/applications/18.12.1/ktp-approver-18.12.1.tar.xz) = 50093b086ad3242694228c9e2e8b0536f527dbd3b244d8edcc490821699f25cb +SIZE (KDE/applications/18.12.1/ktp-approver-18.12.1.tar.xz) = 36864 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 489892) +++ head/net-im/ktp-auth-handler/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/ktp-auth-handler-18.12.0.tar.xz) = fa892d25cd6a2979da1c8f7af9ecf9b00340a8c9e5ab4ca4621b911df0c1cd7d -SIZE (KDE/applications/18.12.0/ktp-auth-handler-18.12.0.tar.xz) = 46012 +TIMESTAMP = 1546985142 +SHA256 (KDE/applications/18.12.1/ktp-auth-handler-18.12.1.tar.xz) = 486c849d491de2ee19eafaa7aeb369de05481bb0cbfb9bafea24c186fe8a8cbb +SIZE (KDE/applications/18.12.1/ktp-auth-handler-18.12.1.tar.xz) = 45968 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 489892) +++ head/net-im/ktp-call-ui/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225599 -SHA256 (KDE/applications/18.12.0/ktp-call-ui-18.12.0.tar.xz) = b3c2a4af559b06ae431a0875f3d8ec2528b92be1992f44fcd7f54cd9c0333fe1 -SIZE (KDE/applications/18.12.0/ktp-call-ui-18.12.0.tar.xz) = 96284 +TIMESTAMP = 1546985144 +SHA256 (KDE/applications/18.12.1/ktp-call-ui-18.12.1.tar.xz) = 03223d029c89d03fc0a276530a058578c6edf04f5dd143c2f955a746cee0c3b8 +SIZE (KDE/applications/18.12.1/ktp-call-ui-18.12.1.tar.xz) = 96272 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 489892) +++ head/net-im/ktp-common-internals/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/ktp-common-internals-18.12.0.tar.xz) = a6004bcaed7d334de05cdfe808342e81b6f17bf7312df095db1ba24a30c15503 -SIZE (KDE/applications/18.12.0/ktp-common-internals-18.12.0.tar.xz) = 441212 +TIMESTAMP = 1546985142 +SHA256 (KDE/applications/18.12.1/ktp-common-internals-18.12.1.tar.xz) = 77b67d23f6eacf5944c056870a970f7d5ae474e5770ae6e44267d644b1fe36bb +SIZE (KDE/applications/18.12.1/ktp-common-internals-18.12.1.tar.xz) = 441176 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 489892) +++ head/net-im/ktp-contact-list/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-contact-list-18.12.0.tar.xz) = 7ed825575c0b71e9cadb921c8dbeed11e3e67485534c2801e0414ee0d2a3d44f -SIZE (KDE/applications/18.12.0/ktp-contact-list-18.12.0.tar.xz) = 146452 +TIMESTAMP = 1546985143 +SHA256 (KDE/applications/18.12.1/ktp-contact-list-18.12.1.tar.xz) = 7c8e0a8ed7485d3e55296de7025292eb4f199c1d51e4d6f855589c614af0518d +SIZE (KDE/applications/18.12.1/ktp-contact-list-18.12.1.tar.xz) = 146360 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 489892) +++ head/net-im/ktp-contact-runner/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/ktp-contact-runner-18.12.0.tar.xz) = 521a2a5e28a140e32afbecc1fb1d461786e30a5c332d79a27a9a57ebc6bbeac2 -SIZE (KDE/applications/18.12.0/ktp-contact-runner-18.12.0.tar.xz) = 42180 +TIMESTAMP = 1546985142 +SHA256 (KDE/applications/18.12.1/ktp-contact-runner-18.12.1.tar.xz) = 64e8ec6663a1c1439572ded05cb92229941ff793b74a60ec49eefbe7c67b37bf +SIZE (KDE/applications/18.12.1/ktp-contact-runner-18.12.1.tar.xz) = 42144 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 489892) +++ head/net-im/ktp-desktop-applets/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-desktop-applets-18.12.0.tar.xz) = bf1778c839a7485507f69519ff29930ab03d11a673275cc83afdd1bbaa94ccb5 -SIZE (KDE/applications/18.12.0/ktp-desktop-applets-18.12.0.tar.xz) = 42672 +TIMESTAMP = 1546985144 +SHA256 (KDE/applications/18.12.1/ktp-desktop-applets-18.12.1.tar.xz) = 767a3326ee3809ff12a910e5ff0c806fc28f490cf2b799503836ef9dcf653346 +SIZE (KDE/applications/18.12.1/ktp-desktop-applets-18.12.1.tar.xz) = 42592 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 489892) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-filetransfer-handler-18.12.0.tar.xz) = 49c05489d138779fbdd60d8f57235e0d5bad324b11228c237cd1ec6acdfef9b7 -SIZE (KDE/applications/18.12.0/ktp-filetransfer-handler-18.12.0.tar.xz) = 45756 +TIMESTAMP = 1546985144 +SHA256 (KDE/applications/18.12.1/ktp-filetransfer-handler-18.12.1.tar.xz) = 9dfaddbc473f92142e0dd3d2c31add745a445ac29e07d8d3d15249b0fc81b611 +SIZE (KDE/applications/18.12.1/ktp-filetransfer-handler-18.12.1.tar.xz) = 45772 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 489892) +++ head/net-im/ktp-kded-module/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/ktp-kded-module-18.12.0.tar.xz) = a36b2cb8b1e7b924b12f6216d62b94601ab4dc32f84a4e6fcd3c93ffbdf2401c -SIZE (KDE/applications/18.12.0/ktp-kded-module-18.12.0.tar.xz) = 94680 +TIMESTAMP = 1546985142 +SHA256 (KDE/applications/18.12.1/ktp-kded-module-18.12.1.tar.xz) = faf35ef3093483a07f2f1798fe919a2afe34600ec7e08bfff0b993e5e245bc4e +SIZE (KDE/applications/18.12.1/ktp-kded-module-18.12.1.tar.xz) = 94624 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 489892) +++ head/net-im/ktp-send-file/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-send-file-18.12.0.tar.xz) = 7ca655fa6e70e25881ebe4bdf7c2c1bdafc86aed7b5d22b4a8b758533146de49 -SIZE (KDE/applications/18.12.0/ktp-send-file-18.12.0.tar.xz) = 28556 +TIMESTAMP = 1546985143 +SHA256 (KDE/applications/18.12.1/ktp-send-file-18.12.1.tar.xz) = c384de0b7ffc7447a8b20c8fca93159ef5a73dffbb84ad4120bc79a5772a2006 +SIZE (KDE/applications/18.12.1/ktp-send-file-18.12.1.tar.xz) = 28548 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 489892) +++ head/net-im/ktp-text-ui/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225598 -SHA256 (KDE/applications/18.12.0/ktp-text-ui-18.12.0.tar.xz) = cb08613650f18652c30e922448fa10fca9d731ddfca4709f03733a9c75489692 -SIZE (KDE/applications/18.12.0/ktp-text-ui-18.12.0.tar.xz) = 465828 +TIMESTAMP = 1546985143 +SHA256 (KDE/applications/18.12.1/ktp-text-ui-18.12.1.tar.xz) = 5e2ef010827f3dbf184f0a5d896df0a6baefa57941ebb972d06103bf59835593 +SIZE (KDE/applications/18.12.1/ktp-text-ui-18.12.1.tar.xz) = 465884 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 489892) +++ head/print/print-manager/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225568 -SHA256 (KDE/applications/18.12.0/print-manager-18.12.0.tar.xz) = 254ffc367efeb232130849470c19e51edf7acd4074743bb05ea730d78f944f0e -SIZE (KDE/applications/18.12.0/print-manager-18.12.0.tar.xz) = 238876 +TIMESTAMP = 1546985117 +SHA256 (KDE/applications/18.12.1/print-manager-18.12.1.tar.xz) = b9c39b1ea916e83c66a666f7ee94dc19286f9977a1b9da15c7398bf8442a7306 +SIZE (KDE/applications/18.12.1/print-manager-18.12.1.tar.xz) = 238868 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 489892) +++ head/science/kalzium/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225596 -SHA256 (KDE/applications/18.12.0/kalzium-18.12.0.tar.xz) = 910dd1a323da6759727f6daa7ec0ff02c0cadb7c9b02c39bd6806d22431e6a48 -SIZE (KDE/applications/18.12.0/kalzium-18.12.0.tar.xz) = 24375924 +TIMESTAMP = 1546985141 +SHA256 (KDE/applications/18.12.1/kalzium-18.12.1.tar.xz) = 072a26ad4c307c4b34607b2cacb216025fc1845f6e9a2def3c3cba0cdb88b4b0 +SIZE (KDE/applications/18.12.1/kalzium-18.12.1.tar.xz) = 26573788 Index: head/science/step/Makefile =================================================================== --- head/science/step/Makefile (revision 489892) +++ head/science/step/Makefile (revision 489893) @@ -1,39 +1,38 @@ # $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 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= 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 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 489892) +++ head/science/step/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225596 -SHA256 (KDE/applications/18.12.0/step-18.12.0.tar.xz) = f9833e6534d2e2d2c937b6b393112cff5fac20126f117ffa0f62ac2ef6e60c3f -SIZE (KDE/applications/18.12.0/step-18.12.0.tar.xz) = 859340 +TIMESTAMP = 1546985141 +SHA256 (KDE/applications/18.12.1/step-18.12.1.tar.xz) = e49aeeb3d1d5c6168eb85753121788c0cb08a5e382ebeb6bf894e69213a0c8be +SIZE (KDE/applications/18.12.1/step-18.12.1.tar.xz) = 859320 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 489892) +++ head/security/kgpg/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225573 -SHA256 (KDE/applications/18.12.0/kgpg-18.12.0.tar.xz) = 6f34c53489ed37beb72dd1dec76ad0dc326074cc5518ef7a703e5ecedcbb8cc2 -SIZE (KDE/applications/18.12.0/kgpg-18.12.0.tar.xz) = 2855872 +TIMESTAMP = 1546985121 +SHA256 (KDE/applications/18.12.1/kgpg-18.12.1.tar.xz) = 5e248416962161016c9aa8c8137a63a91e146bf014c08058bf3b313e241c59e5 +SIZE (KDE/applications/18.12.1/kgpg-18.12.1.tar.xz) = 2880716 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 489892) +++ head/security/kleopatra/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225573 -SHA256 (KDE/applications/18.12.0/kleopatra-18.12.0.tar.xz) = 739cd374de6ffc265165132aeb9bd420c6dc02a2259af351734df1f26a3b3ac8 -SIZE (KDE/applications/18.12.0/kleopatra-18.12.0.tar.xz) = 1928836 +TIMESTAMP = 1546985121 +SHA256 (KDE/applications/18.12.1/kleopatra-18.12.1.tar.xz) = b2961ace06eb9b93902f2b160520f533f7ad5108374ee67bcae49c465f744fda +SIZE (KDE/applications/18.12.1/kleopatra-18.12.1.tar.xz) = 1929036 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 489892) +++ head/security/kpkpass/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225553 -SHA256 (KDE/applications/18.12.0/kpkpass-18.12.0.tar.xz) = 86c9555b83d4c04903a3f225ba7a19e3f359da73839be0802b80703edf97351f -SIZE (KDE/applications/18.12.0/kpkpass-18.12.0.tar.xz) = 23220 +TIMESTAMP = 1546985104 +SHA256 (KDE/applications/18.12.1/kpkpass-18.12.1.tar.xz) = bd93f66d28e9c16a05edb4c6d977a050a6f861ee56074f70a4349ca8f67d83eb +SIZE (KDE/applications/18.12.1/kpkpass-18.12.1.tar.xz) = 23216 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 489892) +++ head/security/kwalletmanager/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225573 -SHA256 (KDE/applications/18.12.0/kwalletmanager-18.12.0.tar.xz) = 093ca5902064a7a745e113c9d24969b8228bf5216ca53b7cf2539e09c3cdcb7e -SIZE (KDE/applications/18.12.0/kwalletmanager-18.12.0.tar.xz) = 785372 +TIMESTAMP = 1546985121 +SHA256 (KDE/applications/18.12.1/kwalletmanager-18.12.1.tar.xz) = 566f006b3a55692830e4882f96e99b1bfec44bcea6d194c7d15ad851586f73b4 +SIZE (KDE/applications/18.12.1/kwalletmanager-18.12.1.tar.xz) = 785304 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 489892) +++ head/security/libkleo/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544478499 -SHA256 (KDE/applications/18.12.0/libkleo-18.12.0.tar.xz) = 367e0b1083d49d9348cf654014f5514a544f52df7e49654fcc2ea7a3231f3e92 -SIZE (KDE/applications/18.12.0/libkleo-18.12.0.tar.xz) = 332952 +TIMESTAMP = 1546985120 +SHA256 (KDE/applications/18.12.1/libkleo-18.12.1.tar.xz) = 3de4f42b32e5f95cadfa05c926af66fbce9f4592a0683c1f635f3cfe39e02bdc +SIZE (KDE/applications/18.12.1/libkleo-18.12.1.tar.xz) = 332956 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 489892) +++ head/sysutils/baloo-widgets/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225565 -SHA256 (KDE/applications/18.12.0/baloo-widgets-18.12.0.tar.xz) = 8fb291d02eb13315f1544d2523d50a9107f8ea5a564f7611e7e2b5240a0507eb -SIZE (KDE/applications/18.12.0/baloo-widgets-18.12.0.tar.xz) = 245492 +TIMESTAMP = 1546985114 +SHA256 (KDE/applications/18.12.1/baloo-widgets-18.12.1.tar.xz) = 83d716d774a77fba1fad1aa9cf88e6c06e3c20682bc904371071aa957fe8af2b +SIZE (KDE/applications/18.12.1/baloo-widgets-18.12.1.tar.xz) = 245576 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 489892) +++ head/sysutils/filelight/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225566 -SHA256 (KDE/applications/18.12.0/filelight-18.12.0.tar.xz) = 5da7a635a5fcd70e790fc420c3d121a72c94427448953ec9f033e0a29fce5eed -SIZE (KDE/applications/18.12.0/filelight-18.12.0.tar.xz) = 660372 +TIMESTAMP = 1546985115 +SHA256 (KDE/applications/18.12.1/filelight-18.12.1.tar.xz) = ce4414cf879a3d7b5b0fe20cc274489f200547a41271f46b006051e9a50a33dd +SIZE (KDE/applications/18.12.1/filelight-18.12.1.tar.xz) = 660432 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 489892) +++ head/sysutils/k3b/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225567 -SHA256 (KDE/applications/18.12.0/k3b-18.12.0.tar.xz) = a18f731342b8ec2be8a1c6fdd56c7e16b1d4afb76b70f2cac6da06d51849beba -SIZE (KDE/applications/18.12.0/k3b-18.12.0.tar.xz) = 10596680 +TIMESTAMP = 1546985115 +SHA256 (KDE/applications/18.12.1/k3b-18.12.1.tar.xz) = 9a2880aa7ba637057fce6d7dfc444eb3717a2a541adc6e8b10158311bd44b4b8 +SIZE (KDE/applications/18.12.1/k3b-18.12.1.tar.xz) = 10592960 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 489892) +++ head/sysutils/kbackup/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225567 -SHA256 (KDE/applications/18.12.0/kbackup-18.12.0.tar.xz) = dd04cbad5827f89587a66b4f25c6bac7b2c8b8c35241876f3c1e01d2727e99e3 -SIZE (KDE/applications/18.12.0/kbackup-18.12.0.tar.xz) = 350944 +TIMESTAMP = 1546985116 +SHA256 (KDE/applications/18.12.1/kbackup-18.12.1.tar.xz) = 5cef9e3a7c7058317103e4bb4be9bec930300c99fbeed375ebb035adff698274 +SIZE (KDE/applications/18.12.1/kbackup-18.12.1.tar.xz) = 351476 Index: head/sysutils/kbackup/pkg-plist =================================================================== --- head/sysutils/kbackup/pkg-plist (revision 489892) +++ head/sysutils/kbackup/pkg-plist (revision 489893) @@ -1,36 +1,37 @@ bin/kbackup share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ca/LC_MESSAGES/kbackup.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo +share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 489892) +++ head/sysutils/kcron/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225567 -SHA256 (KDE/applications/18.12.0/kcron-18.12.0.tar.xz) = 67e609fa1afd83ac39aef07c40fb39a6c9dbe77e59db94a42964b4a1a6d5dd09 -SIZE (KDE/applications/18.12.0/kcron-18.12.0.tar.xz) = 1055804 +TIMESTAMP = 1546985116 +SHA256 (KDE/applications/18.12.1/kcron-18.12.1.tar.xz) = f64f00356309aa2958db34110d0544c7abf9c2b53a1f8146522546fe8fee2108 +SIZE (KDE/applications/18.12.1/kcron-18.12.1.tar.xz) = 1055764 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 489892) +++ head/sysutils/kdebugsettings/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225565 -SHA256 (KDE/applications/18.12.0/kdebugsettings-18.12.0.tar.xz) = 47b479b2cf5246ef5a29257600b6c841fbcd6180bc6c2ca9896dab557a60b9bd -SIZE (KDE/applications/18.12.0/kdebugsettings-18.12.0.tar.xz) = 55024 +TIMESTAMP = 1546985113 +SHA256 (KDE/applications/18.12.1/kdebugsettings-18.12.1.tar.xz) = 232f7ca5f7f331253be29217959eb531aa5c05f3e07d6d3452a7f126900371f1 +SIZE (KDE/applications/18.12.1/kdebugsettings-18.12.1.tar.xz) = 55116 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 489892) +++ head/sysutils/kdf/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225566 -SHA256 (KDE/applications/18.12.0/kdf-18.12.0.tar.xz) = 777b1d5903bc24981987e225350e454a008c83194ee0e517ac5f29df14f944b7 -SIZE (KDE/applications/18.12.0/kdf-18.12.0.tar.xz) = 556404 +TIMESTAMP = 1546985114 +SHA256 (KDE/applications/18.12.1/kdf-18.12.1.tar.xz) = 2170f559e2a0c55713a3add9eccb9bd7faf6038a126902f7ab7fbb141b9a267f +SIZE (KDE/applications/18.12.1/kdf-18.12.1.tar.xz) = 556340 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 489892) +++ head/sysutils/kdialog/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225566 -SHA256 (KDE/applications/18.12.0/kdialog-18.12.0.tar.xz) = 0ffc8e74d01340c42fa16d8316e1333cdaa47bedec4f6218a90c4645f9d06213 -SIZE (KDE/applications/18.12.0/kdialog-18.12.0.tar.xz) = 97388 +TIMESTAMP = 1546985114 +SHA256 (KDE/applications/18.12.1/kdialog-18.12.1.tar.xz) = 4271e633e5a37fadf8872074fc3a66d4af7d203a40c2be45e8b181ebe5148c44 +SIZE (KDE/applications/18.12.1/kdialog-18.12.1.tar.xz) = 97408 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 489892) +++ head/sysutils/kfloppy/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225567 -SHA256 (KDE/applications/18.12.0/kfloppy-18.12.0.tar.xz) = c1c0a71410f42992ed45be3ea8a7d8805088ac048d2ac67aba2d5bdb5068e059 -SIZE (KDE/applications/18.12.0/kfloppy-18.12.0.tar.xz) = 199260 +TIMESTAMP = 1546985115 +SHA256 (KDE/applications/18.12.1/kfloppy-18.12.1.tar.xz) = d8c3a03fd3224a24ad6b2bd7fe33eb372a76a42cc3d816b118e80378d603a4bb +SIZE (KDE/applications/18.12.1/kfloppy-18.12.1.tar.xz) = 199252 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 489892) +++ head/sysutils/khelpcenter/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225565 -SHA256 (KDE/applications/18.12.0/khelpcenter-18.12.0.tar.xz) = 956f1c2878e98ae409809d6aa7ff97e9a69b10ec4cdf1f8a27ad1a37aa719d33 -SIZE (KDE/applications/18.12.0/khelpcenter-18.12.0.tar.xz) = 3843276 +TIMESTAMP = 1546985114 +SHA256 (KDE/applications/18.12.1/khelpcenter-18.12.1.tar.xz) = de6027886bbc9792d0c4ad8bd420d0d1990e3ba754116c082055d2fd6c306e90 +SIZE (KDE/applications/18.12.1/khelpcenter-18.12.1.tar.xz) = 3843344 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 489892) +++ head/sysutils/ksystemlog/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225566 -SHA256 (KDE/applications/18.12.0/ksystemlog-18.12.0.tar.xz) = d54276839b68aa7c72c73f3cea822a0f1588a7642b37f14885cd039f601c083e -SIZE (KDE/applications/18.12.0/ksystemlog-18.12.0.tar.xz) = 1964412 +TIMESTAMP = 1546985114 +SHA256 (KDE/applications/18.12.1/ksystemlog-18.12.1.tar.xz) = accc8b7cb664c3f8e1c9e19f98d95134fdd2f4f57bc5b0483ed51a7c8c24abe8 +SIZE (KDE/applications/18.12.1/ksystemlog-18.12.1.tar.xz) = 1924228 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 489892) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225567 -SHA256 (KDE/applications/18.12.0/signon-kwallet-extension-18.12.0.tar.xz) = 1ae19fb82870c31a6077c5c39976b8abd4f37a41586709fdc391f015b6e7f547 -SIZE (KDE/applications/18.12.0/signon-kwallet-extension-18.12.0.tar.xz) = 10636 +TIMESTAMP = 1546985115 +SHA256 (KDE/applications/18.12.1/signon-kwallet-extension-18.12.1.tar.xz) = 5680d4010fcfb98b3a0152fe7a5d3bf2fd0830d9cb756d15d6eeea3cdaf71b05 +SIZE (KDE/applications/18.12.1/signon-kwallet-extension-18.12.1.tar.xz) = 10628 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 489892) +++ head/sysutils/sweeper/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225567 -SHA256 (KDE/applications/18.12.0/sweeper-18.12.0.tar.xz) = 3001d18d2599e958f5b8fbfe135ca49720d9e51e0cae86a40928bcd67f48095f -SIZE (KDE/applications/18.12.0/sweeper-18.12.0.tar.xz) = 368008 +TIMESTAMP = 1546985115 +SHA256 (KDE/applications/18.12.1/sweeper-18.12.1.tar.xz) = 642bc245d47933dc147ff68b57058194e0e42848038337f6b9c512f792afe02e +SIZE (KDE/applications/18.12.1/sweeper-18.12.1.tar.xz) = 368048 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 489892) +++ head/textproc/kompare/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/kompare-18.12.0.tar.xz) = a4dff51fedc1aead396f1017c5dd115f98998e1b1176f7fd7a708f4f99a2c409 -SIZE (KDE/applications/18.12.0/kompare-18.12.0.tar.xz) = 801596 +TIMESTAMP = 1546985141 +SHA256 (KDE/applications/18.12.1/kompare-18.12.1.tar.xz) = e95ec47fa40a45265b67a592ad973ba1b9977185630b470fa029bc336b9f2e25 +SIZE (KDE/applications/18.12.1/kompare-18.12.1.tar.xz) = 801588 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 489892) +++ head/textproc/libkomparediff2/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225597 -SHA256 (KDE/applications/18.12.0/libkomparediff2-18.12.0.tar.xz) = 3a8fba68005b77b4ad3c749da7e7870a3a62d55d0c9abcb170494cdcb9626c75 -SIZE (KDE/applications/18.12.0/libkomparediff2-18.12.0.tar.xz) = 173444 +TIMESTAMP = 1546985141 +SHA256 (KDE/applications/18.12.1/libkomparediff2-18.12.1.tar.xz) = b68377eaf5a3c4fab7342777d7c41f1ed442b78cd3fde1dd0be0deb8285b6646 +SIZE (KDE/applications/18.12.1/libkomparediff2-18.12.1.tar.xz) = 173436 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 489892) +++ head/x11/konsole/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225572 -SHA256 (KDE/applications/18.12.0/konsole-18.12.0.tar.xz) = 235ba8939cd0169c4ac35b6f50e1361f45e71e10db9af25be31283e57ea31513 -SIZE (KDE/applications/18.12.0/konsole-18.12.0.tar.xz) = 1093284 +TIMESTAMP = 1546985120 +SHA256 (KDE/applications/18.12.1/konsole-18.12.1.tar.xz) = 2fa34039e7db893e474e258a757eb6127c8ae7036e4a7cf68ed560a27f948197 +SIZE (KDE/applications/18.12.1/konsole-18.12.1.tar.xz) = 1093548 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 489892) +++ head/x11-clocks/kteatime/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225568 -SHA256 (KDE/applications/18.12.0/kteatime-18.12.0.tar.xz) = 430f7b71b91e3f9513c41feea7b59561fe15fe5f26f06a5ce2ee490dd51c8adc -SIZE (KDE/applications/18.12.0/kteatime-18.12.0.tar.xz) = 298372 +TIMESTAMP = 1546985116 +SHA256 (KDE/applications/18.12.1/kteatime-18.12.1.tar.xz) = 6fc7bd7975b91c5eb2a512568b7d0b0c130ebc285f87e2eebd629ad08269e406 +SIZE (KDE/applications/18.12.1/kteatime-18.12.1.tar.xz) = 298252 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 489892) +++ head/x11-clocks/ktimer/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225568 -SHA256 (KDE/applications/18.12.0/ktimer-18.12.0.tar.xz) = 9aa950b72f38c9956ba265424556c6a1d8f158210c2a9cbc58f64c62e62266d3 -SIZE (KDE/applications/18.12.0/ktimer-18.12.0.tar.xz) = 437312 +TIMESTAMP = 1546985116 +SHA256 (KDE/applications/18.12.1/ktimer-18.12.1.tar.xz) = 4e67915aaa03e8bb6b494c52285528b92aa42e99872961bf0c905bd6d6761373 +SIZE (KDE/applications/18.12.1/ktimer-18.12.1.tar.xz) = 376592 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 489892) +++ head/x11-fm/dolphin/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225596 -SHA256 (KDE/applications/18.12.0/dolphin-18.12.0.tar.xz) = 837f8a43f09ef0e74e634cc5c1538cd5230f63c2a55675b3ae93f412d36cbf82 -SIZE (KDE/applications/18.12.0/dolphin-18.12.0.tar.xz) = 4865672 +TIMESTAMP = 1546985141 +SHA256 (KDE/applications/18.12.1/dolphin-18.12.1.tar.xz) = 18a3ef54ef62eb40f3546baf8873c48b64e00a90960203da7d15f7cf101475b4 +SIZE (KDE/applications/18.12.1/dolphin-18.12.1.tar.xz) = 4865868 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 489892) +++ head/x11-fm/konqueror/distinfo (revision 489893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544225595 -SHA256 (KDE/applications/18.12.0/konqueror-18.12.0.tar.xz) = 99b4f3ff326708c91c57a312b7857bbef87d37b28cc57bc7e0118608226ef47b -SIZE (KDE/applications/18.12.0/konqueror-18.12.0.tar.xz) = 7756100 +TIMESTAMP = 1546985140 +SHA256 (KDE/applications/18.12.1/konqueror-18.12.1.tar.xz) = de5d788f4e2825d9079e28352507871bb6dac49d8a5df9823165c710bbe84422 +SIZE (KDE/applications/18.12.1/konqueror-18.12.1.tar.xz) = 7755864 Index: head/x11-fm/konqueror/pkg-plist =================================================================== --- head/x11-fm/konqueror/pkg-plist (revision 489892) +++ head/x11-fm/konqueror/pkg-plist (revision 489893) @@ -1,1585 +1,1597 @@ bin/fsview bin/kfmclient bin/konqueror etc/xdg/akregatorplugin.categories etc/xdg/autostart/konqy_preload.desktop etc/xdg/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/libkwebenginepartlib.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/oxygen/scalable/actions/htmlvalidator.svgz -share/icons/oxygen/scalable/actions/validators.svgz +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/oxygen/scalable/actions/google.svgz +%%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/kwebkitpart/kpartplugins/plugin_validators.desktop -share/kwebkitpart/kpartplugins/plugin_validators.rc 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/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/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/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/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